Search found 3 matches
- 2018-02-04T11:07:04-07:00
- Forum: IMagick
- Topic: Imagick takes long time to resize GIFs with lot of frames
- Replies: 2
- Views: 13262
Re: Imagick takes long time to resize GIFs with lot of frames
@snibgo Im using PHP aPI , below is my current code $imagick->coalesceImages(); foreach ($imagick as $frame) { $frame->thumbnailImage($width, $height); $frame->setImagePage($width, $height, 0, 0); } $imagick = $imagick->deconstructImages(); $imagick->writeImages($filePath, true);
- 2018-02-04T10:09:52-07:00
- Forum: IMagick
- Topic: Imagick takes long time to resize GIFs with lot of frames
- Replies: 2
- Views: 13262
Imagick takes long time to resize GIFs with lot of frames
Im getting issues with some GIF images which has over 300 -400 frames when getting resized it takes longer time. Is there any way to optimizing this ?
Imagick PHP extension. pls advice
Imagick PHP extension. pls advice
- 2018-01-16T11:08:47-07:00
- Forum: IMagick
- Topic: imagick PHP failes resizing gif images larger than 2mb
- Replies: 0
- Views: 24026
imagick PHP failes resizing gif images larger than 2mb
I'm using iMagick php extension for resizing animated gif image into several sizes. But when I upload a gif image which is size of 2mb or more. it failes the process. Either not resizing at all or else resizing few images but without having same animation frame rate. Below I posted tw code smaples ...