3

我试图裁剪动画 gif,在输出中我得到了相同大小的图像,但被裁剪了。

很多空白空间都被画布填满。

例如,我有 600x100 的动画 gif,但已请求 100x100 裁剪,在输出上我得到 600x100 的图像,裁剪图像和空白空间。

有人知道这个问题的解决方案吗?

$gif = new Imagick($s['src']);

foreach($gif as $frame){
  $frame->cropImage($s['params']['w'], $s['params']['h'], $s['params']['x'], $s['params']['y']);            
}   

$gif->writeImages($s['dest_path'] .'/'. $fullname,true);
4

2 回答 2

6

我遇到了和你一样的问题,我发现解决方案是使用 coalesceimages 函数。

这是一个使用 Imagick 在 php 中裁剪和调整动画 gif 的工作示例:

<?php
// $width and $height are the "big image"'s proportions
if($width > $height) {
    $x     = ceil(($width - $height) / 2 );
    $width = $height;
} elseif($height > $width) {
    $y      = ceil(($height - $width) / 2);
    $height = $width;
}

$image = new Imagick(HERE_YOU_PUT_BIG_IMAGE_PATH);
$image = $image->coalesceImages(); // the trick!
foreach ($image as $frame) {
    $frame->cropImage($width, $height, $x, $y); // You crop the big image first
    $frame->setImagePage(0, 0, 0, 0); // Remove canvas
}
$image = $image->coalesceImages(); // We do coalesceimages again because now we need to resize
foreach ($image as $frame) {
    $frame->resizeImage($newWidth, $newHeight,Imagick::FILTER_LANCZOS,1); // $newWidth and $newHeight are the proportions for the new image
}
$image->writeImages(CROPPED_AND_RESIZED_IMAGE_PATH_HERE, true);
?>

上面的代码用于生成具有相同高度和高度的缩略图。你可以按照你想要的方式改变它。

注意当使用 $frame->cropImage($width, $height, $x, $y); 你应该把你可能需要的值放在那里。

IE $frame->cropImage($s['params']['w'], $s['params']['h'], $s['params']['x'], $s['参数']['y']);

当然,如果您只想裁剪而不是裁剪和调整大小,则可以这样做:

$image = new Imagick(HERE_YOU_PUT_BIG_IMAGE_PATH);
$image = $image->coalesceImages(); // the trick!
foreach ($image as $frame) {
    $frame->cropImage($s['params']['w'], $s['params']['h'], $s['params']['x'], $s['params']['y']);
    $frame->setImagePage(0, 0, 0, 0); // Remove canvas
}

希望能帮助到你!

Ps:对不起我的英语:)

于 2010-10-21T14:50:50.610 回答
5

ImageMagick 通常有一个“页面”或工作区,类似于背景层。听起来这在裁剪图像后仍然存在(我之前用命令行工具解决了一些合成和调整大小的行为很困惑......)。

查看cropImage的 PHP 手册页,我看到了这条评论:

Christian Dehning - 2010 年 4 月 9 日 10:57
裁剪 gif 图像时(我对 jpg 和 png 图像没有任何问题),画布不会被移除。请在裁剪后的 gif 上运行以下命令,以删除空格:

$im->setImagePage(0, 0, 0, 0);
于 2010-10-17T06:47:32.930 回答