Search found 2 matches

by nikola
2015-07-09T08:14:17-07:00
Forum: Bugs
Topic: Different gif cropping behavior between versions 6.9.1-7 and 6.7.7-10
Replies: 3
Views: 4497

Re: Different gif cropping behavior between versions 6.9.1-7 and 6.7.7-10

Here is the PHP code responsible for cropping:
--------------------------------------------------------------------
$image = new \Imagick($file->tempName);

if($file->type=="image/gif") //determine image format
{
//if it's GIF file, resize each frame
$image = $image->coalesceImages();

if ...
by nikola
2015-07-09T08:01:22-07:00
Forum: Bugs
Topic: Different gif cropping behavior between versions 6.9.1-7 and 6.7.7-10
Replies: 3
Views: 4497

Different gif cropping behavior between versions 6.9.1-7 and 6.7.7-10

Hi,

When cropping with PHP Imagick, some gifs that are cropped correctly with ImageMagick 6.7.7-10 have errors after cropping on server with 6.9.1-7 version installed. What could be the problem?

One of gifs causing error:
Image

Thanks