How can I "flip" an image using PHP?
- by learner
Here's what I've tried:
$image = "images/20100609124341Chrysanthemum.jpg";
$degrees = 40;
// Content type
header('Content-type: image/jpeg');
// Load
$source = imagecreatefromjpeg($filename);
// Rotate
$rotate = imagerotate($source, $degrees, 0);
// Output
imagejpeg($rotate);
...But I get no output. Can anyone tell me what's wrong with this?