我怎样才能“翻转”使用 PHP 生成图像?
可能的重复:
如何使用 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);
...但我没有得到任何输出。谁能告诉我这有什么问题吗?
Possible Duplicate:
How to resize an image using PHP?
Here's what I've tried:
$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);
...But I get no output. Can anyone tell me what's wrong with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用图像旋转功能:
http://php.net/manual/en/function.imagerotate.php
Using the image rotate function:
http://php.net/manual/en/function.imagerotate.php