Mchl,
Thank you for your reply.
$aRow = $this->getPicture($sPicId);
.
$src = @imagecreatefromstring ($aRow["Bin Data"]);
$image = imagecreatetruecolor (...);
imagecopyresampled (...);
.
.
$rotate = imagerotate($image, $degrees, 0) ;
imagejpeg($rotate, $imagename2) ;
now I have the rotated pic in '$imagename2' in the server root
Up to now could not manage to store the rotated image back into mysql.
Tried a few things, honestly I don't have a glue, e.g. stored the $rotate, $imagename2 in the blob ["Bin Data"] field... etc...
Thank you
Jack