Hallo,
kaan mir jemand sagen, wie ich mit PHP ein Bild auf dem Server drehen kann. Das klappt bei mir nicht mit:
<?php
function rotate($image_source, $rotate_value, $rotate_clockwise = true) {
if($rotate_clockwise == true) {
$rotate_value = 360 - $rotate_value;
}
$image_source = imageRotate($image_source, $rotate_value, 0);
}
?>
????
DANKE