Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
if anyone needs it, I recently found
$img = new Gmagick($file);
$image = $img->coalesceImages();
do {
$image->cropthumbnailimage(150, 150);
} while ($image->nextImage());
$image->writeImage($newFile.'.gif');
$img->destroy();
You can do this:
system("convert big.gif -coalesce coalesce.gif");
system("convert -size 200x100 coalesce.gif -resize 200x10 small.gif");
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question