Jump to content

output of imagejpeg() function


kestas

Recommended Posts

Hi!
Need help with imagejpeg() function. It should be outputting image to a file or a browser. Outputting to a file works fine, but when trying to output an image to the browser image is shown as a text(bunch of symbols with header in front). Is there anything that I don`t understand about it? Thanks in advance! Will include my code:

<? session_start();
$maindir="C:\web\docs\\\thumbs";
$mydir = opendir($maindir);
$exclude = array("index.php", "convert.php", "..", ".", "thumbs", "nuotr", "Thumbs.db") ;
while($fn = readdir($mydir)) {
if ($fn == $exclude[0] || $fn == $exclude[1]|| $fn == $exclude[2]||
$fn == $exclude[3]|| $fn == $exclude[4]|| $fn == $exclude[5]|| $fn == $exclude[6]) continue;
$myimage="$fn";
echo"$fn<br>";
$photo = ImageCreateFromJPEG("C:\web\docs\\thumbs\\$fn");
ImageJPEG($photo);
}
closedir($mydir);
?>
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.