blob: ae0df8703892efc1d5cf8f07b3b81e8fbdcd4445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
// File and rotation
$filename = 'OverlayStart50.png';
$degrees = $_GET['r'] * 90;
//$degrees = 180;
// Content type
header('Content-type: image/jpeg');
// Load
$source = imagecreatefrompng($filename);
// Rotate
$rotate = imagerotate($source, $degrees, 0);
// Output
imagepng($rotate);
?>
|