Is this the right process to rotate an image ?

<?php 
$original = imagecreatefrompng("myimage.png"); 
$yellow =  imageColorAllocate($original,255,0,0); 
imagerotate($original,50,$yellow); 
header("content-type:image/png"); 
imagepng($rotated); 
imagedestroy($original); 
imagedestroy($rotated); 
?>
Member Avatar for diafol

have you tried it?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.