iAZ
Mitglied
Hallo
ich hab da so ein Problem: ich versuche mit php &imagick n bild zu drehen. das erste mal klappts prima aber dann will es nicht mehr. kurz:_ ich kann ein bild 1mal drehen aber nicht mehr zurück
Was muss mach ich falsch?
$path= der pfad zum bild z.B. unterordner/bild.jpg
$degree= der drehgrad (90° oder 270°)
Danke für eure hilfe
ich hab da so ein Problem: ich versuche mit php &imagick n bild zu drehen. das erste mal klappts prima aber dann will es nicht mehr. kurz:_ ich kann ein bild 1mal drehen aber nicht mehr zurück
Was muss mach ich falsch?
PHP:
function rotate($path,$degree)
{
exec("mogirfy -rotate \"+".$degree.">\" ".$path);
return true;
}
$degree= der drehgrad (90° oder 270°)
Danke für eure hilfe