Reply to Portrait getting wrong orientation

Portrait getting wrong orientation new!
by Rick, 15 years, 10 months ago
When I upload a portrait image, the image does resize correctly but only the orientation get changed. The resized image rotates 90 degrees CC.

My upload.php:
include('class.upload.php');

$foo  =  new  Upload($_FILES['afb1']);  
if  ($foo->uploaded)  {
   //  save  uploaded  image  with  a  new  name,
   //  resized  to  100px  wide
   $foo->file_new_name_body  =  'image_resized';
   $foo->image_resize  =  true;
   $foo->image_x  =  450;
   $foo->image_y  =  600;
   $foo->image_ratio  =  true;
   $foo->Process('/var/www/nl/domain/www/images/');
   if  ($foo->processed)  {
     echo  'image  resized';
     $foo->Clean();
   }  else  {
     echo  'error  :  '  .  $foo->error;
   }
}

The script works perfectly with landscape images. I really hope you can help me with this. I really like this script!Reply

Your reply

Name *
Email 
Title *
Text *
CAPTCHA image
Enter the code displayed on the image:
Click on the image to generate another one if it is hard to read it. The case is important