in reply to Re: Re: Preventing an image from caching
in thread Preventing an image from caching

Call the file with this script.
#!/bin/perl $image = `cat imagenameandpath`; print "Content-type: image/png\n\n"; print $image;
It's the simplest way i know.

BTW- image/png is for png file format, substitute gif, jpeg, for others.