@theruran @ColinTheMathmo If you append a random "GET" string to the end of the image name each time (e.g. "Output.png?bob=wqeiufseuybf") then the browser should think it is a new image each time and reload it.
Notices by Andy Newsam (astroandyn@astrodon.social)
-
Embed this notice
Andy Newsam (astroandyn@astrodon.social)'s status on Tuesday, 18-Jun-2024 02:33:22 JST Andy Newsam
-
Embed this notice
Andy Newsam (astroandyn@astrodon.social)'s status on Tuesday, 18-Jun-2024 02:33:20 JST Andy Newsam
@ColinTheMathmo @theruran Sorry, I wasn't clear - I meant using JS or similar. E.g. this should work:
<html> <head>
<meta http-equiv="refresh" content="10">
</head> <body>
<script>
const outImage = new Image();
randnum = Math.floor(Math.random() * 99999999);
outImage.src = "Output.png?r="+randnum.toString();
document.body.appendChild(outImage);
</script>
</body> </html>