|
|
Off-browser Image, Animation and Movie processing in a web framework
toucheatout 2006-03-26 17:24 Web
Favicon generationSimple with ImageMagick, the convert utility makes it in one simple step:
The '!' isn't mandatory if your image already is square. If it is not, this '!' prevents convert to preserve the original height/width ratio (geometry specified is interpreted as maximum size in each axis by default). Note: You can use the php system() function to invoke convert if allowed and imagemagick configured on the webserver. The other possibility is to edit an image with The Gimp or another image processing software that knows about this image format. Animated gif using gimpCreate an image with the first frame, then loop over:
Finally, save as gif and select "Save as an animation". Do not forget to specify the desired delay between frames. |
|