I was struggling to create a JavaScript app to generate checksums on remote images (using URLs)
My program is using checksums to detect when my images on the remote server are changing (though their names do not change : for example , image0 remains image0 even though the image itself has changed) and then inform the client user.
I succeeded in coding a Python script that saves the checksums in a text file, now I would like to compare these 'old' checksums with newer ones using JavaScript on the HTML webpage of the client.
Here is a very interesting link that sums up what I would like to achieve https://codepen.io/dlanuara/pen/mLRLpL - ideally I would like to automatise the process and execute the checksum generator without the user input (use something different from the
function uploadFile(file) {}
(Javascript is relatively new to me so I couldn't figure out how to change the code there, but I'm sure there are possibilities)
Here is a question IDENTICAL to mine, which did not help me solve my problem ;/// How can I get an MD5 checksum of an image at a specific URL in Javascript?
Many thanks for your help !