我查看了不同的问题(例如this或this)和php documentation。我检查了我的Imagick版本,并且imagick :: getVerison()函数返回
{"versionNumber":1641,"versionString":"ImageMagick 6.6.9-7 2014-03-06 Q16 http:\/\/www.imagemagick.org"}
所以我没有使用问题和文档中提到的bugged版本(或者至少我不认为我是这样)。我使用以下代码尝试调整gif的大小。
public function resizeGif($path, $x, $y, $maintainRation = true) {
$imageObject = new Imagick($path);
$format = $imageObject->getImageFormat();
if ($format != "GIF") {
return false;
}
$imageObject = $imageObject->coalesceImages();
$y = $this->getAspectRation($imageObject->getImageWidth(),
$imageObject->getImageHeight(),
$x);
foreach ($imageObject as $frame) {
$frame->thumbnailImage($x, $y);
$frame->setImagePage($x, $y, 0, 0);
}
$newImageDir = 'img' . rand();
$imageObject = $imageObject->deconstructImages();
$imageObject->writeImages($newImageDir, true);
$md5 = md5_file($newImageDir);
return $md5;
}
但是当我运行该函数时,会创建并调整gif的大小,但是没有动画。 this is the image I'm testing with
答案 0 :(得分:0)
对我来说很好。您可能正在使用具有this bug
的旧版Imagick如果是这样,您可以升级或解决它:
file_put_contents('img' . rand().".gif", $imageObject->getImagesBlob());
btw ImageMagick的6.6.9-7版将于今年4月份推出4年 - 也可能值得升级。