I have made a new rotation function which is working on my server.
It's not using GD anymore because GD cannot handle images larger then 1024 x 768.
I'm not sure if this will work on every server. but i'm hoping somebody is willing to try out.
You have to change 2 files.
admin/controllers/FileController.php
and
include/ivImage.class.php
In
include/ivImage.class.php change the following
$this->imageData = imagerotate($this->imageData, $angle, 0xFFFFFF);
to
passthru("/usr/local/bin/convert -rotate $angle $this->imagepath $this->imagepath");
and in
admin/controllers/FileController.php add a comment to line number 149 like this
I hope to hear from you guys and thanks for testing.
Feel free to you use it and adjust to your needs.
greetz,
Eissap