如何使用 PHP “翻转”图像? [复制]
Posted
技术标签:
【中文标题】如何使用 PHP “翻转”图像? [复制]【英文标题】:How can I "flip" an image using PHP? [duplicate] 【发布时间】:2010-06-09 10:54:53 【问题描述】:可能重复:How to resize an image using php?
这是我尝试过的:
$image = "images/20100609124341Chrysanthemum.jpg";
$degrees = 40;
// Content type
header('Content-type: image/jpeg');
// Load
$source = imagecreatefromjpeg($filename);
// Rotate
$rotate = imagerotate($source, $degrees, 0);
// Output
imagejpeg($rotate);
...但我没有得到任何输出。谁能告诉我这是怎么回事?
【问题讨论】:
关于调整图像大小***.com/questions/3004971/… 的原始问题您已经得到了 6 个答案,那么到目前为止您做了什么? 对上一篇文章感到抱歉。 【参考方案1】:使用图片旋转功能: http://php.net/manual/en/function.imagerotate.php
【讨论】:
$image = "images/20100609124341Chrysanthemum.jpg"; $度= 40; // 内容类型 header('Content-type: image/jpeg'); // 加载 $source = imagecreatefromjpeg($filename); // 旋转 $rotate = imagerotate($source, $degrees, 0); // 输出图像jpeg($rotate);它没有放出任何东西,为什么? 首先使用“error_reporting(-1);”然后尝试不使用 header() 函数,看看你得到了什么错误。您必须确保先加载图像,然后再旋转和输出。以上是关于如何使用 PHP “翻转”图像? [复制]的主要内容,如果未能解决你的问题,请参考以下文章