I'm sending pictures with PHP and everything seems to work fine.
However: in IE, I right click on the "outputed" image on my site and choose SAVE-AS, and inspect the file that IE creates and notice that it's 923kb large, whereas the original on my server stands at a much smaller 436kb.
Doing this...
$dest = ImageCreateFromJPEG($img_file); # my 436kb pic
ImageJPEG($dest,"", "100");
...converts a 436kb pic to a 923kb one.
Now it might be simpler to just put <img src="pic.jpg"> but the PHP script that handles the image generation does so as per the user's requests (like 50% smaller, etc) and would be nice if it could properly handle a request for the original picture as-is as well.
Any ideas?
Jim