I want to rotate an image, but i seem to be unable to maintain the image itself.
This is what i have:
// Content type
header('Content-type: image/png');
$image = 'http://mapning.com/img/plane.png';
$file = imagecreatefrompng($image);
// Rotate
$rotate = imagerotate($file, $angle, 0);
// Output
imagepng($rotate);
What am I doing wrong?