I would really appreciate some help/tips as I’m very newbie.
I’m making a WordPress website with a product catalogue of 1500 products. The client gave me an FTP-acces where he has uploaded 15 images (sequencially numbered) per product.
Question 1:
Does anyone know if there is a possibility in WordPress to generate animated gifs or via plug-ins?
Question 2:
If no such plug-in exists, I will have to create animated gifs in Photoshop.
I tried to make a combination of script ‘load files into stack’ and then run an action, but it is still very manual work.
I’m not familiar with scripting, but maybe someone has already done similar work with a script?
Anyway, I appreciate your feedback/effort/tips/help.
Thanks,
Miriam
2
Answers
You can do this in an automated way with
ImageMagick
at the command-line without needing Photoshop.ImageMagick
is ready installed on most Linux distros and available for OSX (viahomebrew
preferably) and also Windows.Let’s say you were given the following 37 frames by your client, here all arranged into a large montage:
You can then put them all together into an animated GIF with a 10 centisecond delay between frames at the commandline like this:
to get this:
jpgYup, it’s easier with ImageMagick – The script below will work. I’ve added a second for each frame duration that can be adjusted in the optionals part of the script, right at the top.
The script also has to save out the PSD created, before using save for web to create the animated gif.
ImageMagic is your clear choice here.