php中的图像裁剪

时间:2012-08-12 05:47:02

标签: php crop

所以我正在尝试编写一个小脚本来裁剪用户图像。我会向脚本发送一些信息(宽度,高度,对齐属性和图像URL),它应该返回图像裁剪。然而,它不起作用......只是一个“未找到图像”的符号:/这是我的剧本,有什么想法吗?

<?php
session_start();
header('Content-type: image/jpeg');
$w=$_GET['w'];
$h=$_GET['h'];
$x=$_GET['x'];
$y=$_GET['y'];
$filename="http://www.domain.com/".$_GET['src'];
$file_ext = substr($filename, strrpos($filename, ".") + 1);
$ext='';

if($file_ext=='jpg')
{
    $image = imagecreatefromjpeg($filename); 
}
else if ($file_ext=='gif')
{
    $image = imagecreatefromgif($filename); 
}
else if ($file_ext=='png')
{
    $image = imagecreatefrompng($filename); 
} 

$crop = imagecreatetruecolor($w,$h);
imagecopy($crop, $image, 0, 0, $x, $y, $w, $h);
imagejpeg($crop);
?>

编辑:看起来这是错误:致命错误:在第24行的domainpath / crop.php中调用未定义的函数imagecreatetruecolor()我是否需要执行任何操作才能加载此函数?

3 个答案:

答案 0 :(得分:2)

根据你对错误的评论,imagecreatetruecolor()确实是一个函数,但只有你加载了GD库。

确保您的PHP安装可以访问GD的兼容版本,如果刚刚添加,请不要忘记重新启动Web服务器。

答案 1 :(得分:1)

使用 ImageMagick ,试试这个;

<?php
function resize_image($file, $w, $h, $crop=FALSE) {
    $img = new Imagick($file);
    if ($crop) {
        $img->cropThumbnailImage($w, $h);
    } else {
        $img->thumbnailImage($w, $h, TRUE);
    }

    return $img;
}
resize_image(‘/path/to/some/image.jpg’, 150, 150);

答案 2 :(得分:0)

我建议您使用imagemagick而不是GD / GD2 lib。如果你在寻找质量,那么imagemagick就太好了。有这个链接也给出了相同的比较 http://www.rubblewebs.co.uk/imagemagick/compair.php