![]() |
|
Animated gif - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Animated gif (/thread-8502.html) |
Animated gif - illspirit - 2011-04-16 How can I make an animated gifs animated in image view? Animated gif - acrylian - 2011-04-16 You have to modify your theme to show the full iamge directly. All other images are processed via the GDlib which "kills" animated gifs somehow. If your server supports you may try Imagemagick instead (although I don't know if it preseverses animated gifs). Animated gif - illspirit - 2011-04-16 I am using Imagemagcik. Do I have ta change something here in image.php? ` Animated gif - illspirit - 2011-04-17 Is there I way I can replace with ? Or something similar? Also I'd really want this to only work for GIF files... all other files can use default size... Any help is appreciated. Thanks! Animated gif - acrylian - 2011-04-17 Yes, please read the theming tutorial and visit the functions documentation. Animated gif - illspirit - 2011-04-17 I got something working... if anyone needs support for animated gif this is one work around. In the template-functions.php I added: Animated gif - ayutheos - 2013-12-17 I'm also interested in displaying animated gifs. How do I modify the above code to display full animated gifs when tagged with 'animated' in image.php? I was thinking of putting the code in the gallery codeblocks. Currently only colorbox slideshow shows the animated gifs. I would like to have the image page itself showing the original gif image. Animated gif - sbillard - 2013-12-17 The GD library does not process animated GIFs, so you have to have available and enabled the Imagick library and handler. If you have not option for selecting Imagick then your server does not have support for it. Your other option is to load the images in the exact size that would be cached for the image page. Then the image will be copied rather than resized. |