Forum Moderators: coopster
<?php
// File and rotation
$filename = '/usr/home/prescrip/www/mdsapp/pharmagroup/labels/888515678.png';
// Content type
//header('Content-type: image/png');
// Load
$source = imagecreatefrompng($filename);
// Rotate
$ro = imagerotate($source, 90,0);
imagedestroy($source);
//echo "HERE". $rotate;
// Output
imagepng($ro);
?>