Forum Moderators: coopster
Fatal error: Call to undefined function: scaleimage() in /usr/home/prescrip/public_html/mdsapp/pharmagroup/labelbuffer.php on line 8
<?php
// File and rotation
$filename = '/usr/home/prescrip/www/mdsapp/pharmagroup/labels/456326589.png';
// Content type
//header('Content-type: image/png');
// Load
//$source = imagecreatefrompng($filename);
$source = scaleImage(550,400,$filename, $quality=50);
// Rotate
$ro = imagerotate($source, 90,0);
imagedestroy($source);
//$source = scaleImage (550,400,$filename, $quality=50);
//$ro = imagerotate($source, 2,0);
//imagepng($ro);
//echo "HERE". $rotate;
// Output
imagepng($ro);
?>