View Single Post
Old 07-05-2010, 06:10 PM   #4 (permalink)
Village Idiot
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

Whoops, I'll fix that

Here we go:
Assuming our file is this

PHP Code:
  <?php 
 $image 
'myfile.jpg';
 
$degrees intval('90');
 
header('Content-type: image/jpeg') ;
 
$source imagecreatefromjpeg($image) ;
 
$rotate imagerotate($source$degrees0) ;
 
imagejpeg($rotate) ;
?>
ps. If you think that is a cheap way, my next alternitave would be to add 9 int typecast trues together.
__________________

Village Idiot is offline  
Reply With Quote