PHP - ImageCopyResampled 的问题

Posted

技术标签:

【中文标题】PHP - ImageCopyResampled 的问题【英文标题】:PHP - Problem with ImageCopyResampled 【发布时间】:2010-02-16 16:08:27 【问题描述】:

这是我第一次使用 ImageCopyResampled 函数。我只是按照php manual中写的代码。运行代码时似乎没有错误。问题是我的代码基本上只是复制了原始图像,并没有遵循函数中传递的参数中定义的尺寸。以下是我的代码:

    public static function uploadFile($filename, $x_dimension, $y_dimension, $width, $height)
        $file =   DOCROOT . "uploads/temp/".$filename;
        $trgt_file = DOCROOT . "uploads/images/thumbs/".$filename; 

        if(is_file($file) AND file_exists($file)):
                $trgt_w = 198;
                $trgt_h = 130;
                if(copy($file, $trgt_file)):
                        $src_img = imageCreateFromJpeg($file);
                        $trgt_img = imageCreateTrueColor($trgt_w, $trgt_h);
                        imageCopyResampled($trgt_img, $src_img, 0, 0, $x_dimension, $y_dimension, $trgt_w, $trgt_h, $width ,$height);
                        unlink($file);  
                endif;
        endif;

这个函数只是复制源文件,并没有发生裁剪。我错过了什么?

顺便说一句,我正在使用 kohana 3。谢谢。

【问题讨论】:

建议,而不是答案,但您应该查看 ImageMagick - us2.php.net/imagick - 它为您提供了一些出色的编辑工具。 【参考方案1】:

您没有将$trgt_img 保存到文件中,因此脚本结束时裁剪的图像会丢失。

您需要使用imageJPEG()(或您要写入的任何格式)写出数据。

imageCopyResampled($trgt_img, $src_img, 0, 0, 
                   $x_dimension, $y_dimension, $trgt_w, $trgt_h, 
                   $width ,$height);

imagejpeg($trgt_img, $filename, 90);  // 90 is for quality - 75 is the default

【讨论】:

【参考方案2】:

Pekka的回答是正确的,但是保存的文件名不正确,应该是$trgt_file而不是$filename;

【讨论】:

以上是关于PHP - ImageCopyResampled 的问题的主要内容,如果未能解决你的问题,请参考以下文章

PHP GD imagecopyresampled() 并将其水平翻转

php imagecopyresampled 质量差

php imagecopyresampled - 保存后图像为空(全黑)

突破php 的imagecopyresampled 和imagecopyresized 实现图片马 JPG

在 PHP imagecopyresampled 中裁剪图像 - 挤压而不是裁剪

使用PHP的GDlib imagecopyresampled时可以保留PNG图像透明度吗?