View Single Post
Old 07-05-2010, 06:03 PM   #2 (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

Assuming our file is this

PHP Code:
 <?php 
 $image 
'myfile.jpg';
 
$degrees 90;
 
header('Content-type: image/jpeg') ;
 
$source imagecreatefromjpeg($image) ;
 
$rotate imagerotate($source$degrees0) ;
 
imagejpeg($rotate) ;
?>
__________________

Village Idiot is offline  
Reply With Quote