vimwiki/tech/imagemagick.wiki

17 lines
332 B
Plaintext

= Imagemagick =
Tools for conveting images on the command line
This is just a list of random stuff you can do using it
== Make a gif ==
{{{
#make a gif out of images
convert IMG.png IMG2.png ... -delay DELAY -loop 0 out.gif
#make a gif that quickly changes images
convert IMG.png IMT2.png ... -loop 1 out.gif
}}}
[[index]]