Search found 2 matches

by simone
2017-11-26T00:01:14-07:00
Forum: IMagick
Topic: Resize GIF images using imagick with php
Replies: 3
Views: 12636

Re: Resize GIF images using imagick with php

@fmw42 I've update with my code.
by simone
2017-11-23T10:05:55-07:00
Forum: IMagick
Topic: Resize GIF images using imagick with php
Replies: 3
Views: 12636

Resize GIF images using imagick with php

is it possible to resize a gif image to several sizes and save in separate folders? Below code doesn't work $imagick = new Imagick($_FILES['file']['tmp_name']); foreach ($paramVars as $var) { $imagick = $imagick->coalesceImages(); do { $imagick->scaleImage($var['cols'], $var['rows'], true); } while ...