无法在PHP中旋转图像

时间:2014-09-11 07:58:33

标签: php mysql rotation image-rotation

我正在尝试旋转图像并将其作为BLOB插入到mysql中 我的形象来自DB。我的图片数据在查询中显示为空白。

这是我的代码。

    $selectrotate = $_REQUEST['selectrotate'];// This will have values such as 0,180,270,90

    $imageData=mysql_real_escape_string($rs[0]['image_data']); // This will have the image

imagerotate函数

    $rotate_image = imagerotate($imageData, $selectrotate, 0);
    ob_start();
    imagejpeg($rotate_image, null, 100);
    $image_bin = mysql_real_escape_string(ob_get_contents());
    ob_end_clean(); 

这根本不起作用。我的控件陷入了$ rotate_image;

0 个答案:

没有答案