Count image downloads from Pro gallery

Is it possible to count or track the number of downloads for each image?

We have a Pro gallery with 7 images.
Each are available fro free download, no registration etc. needed.
How do we track the number of times each one has been downloaded?

Feels like I’m missing something obvious here…

Get the information of the item that was clicked

$w("#myGallery").onItemClicked( (event) => {
2  let itemDescription = event.item.description; // "Description"
3  let itemIndex = event.itemIndex;              // 3
4} );

Thanks - that only tells us if an item was clicked. We specifically need to track downloads, how do we capture the click on the download overlay button on the gallery?