Image type gif – how to save
Notice: This thread is very old.
- Filip Procházka
- Moderator | 4668
Nette\Image has direct support for gifs, so it might work, but I've never tried it.
- voda
- Member | 561
ImageMagick (convert
command) has no problem resizing animated
gifs. If the layers aren't the same size, then it is best to use percents as
units for the resize command. Another alternative I use is
convert input.gif -coalesce -resize 100x100 -layers Optimize output.gif
.
The coalesce
option is the important one.
- Abigail111
- Member | 1
Of course,you can follow the demo method:
public static void SaveImageFile(REImage image, string filePath);
public static void SaveImage image, string filePath, BaseEncoder enc);
http://www.rasteredge.com/…ng-printing/
Last edited by Abigail111 (2013-08-29 04:41)