I'm trying to display an image using php:
header("Content-type: image/jpeg");
header("Content-Transfer-Encoding: binary");
header('Content-length: '.filesize($IMAGE));
readfile($IMAGE);
Bu the image is not showing up on a WAMP server if the .php file which contains this block of code is saved as utf-8 (otherwise it works). I tested it on a LAMP server and it works.
My question is: how can I make this work on windows without changing the charset of the file?
Thanks