vimwiki/tech/imagemagick.wiki

17 lines
332 B
Plaintext
Raw Normal View History

2021-10-11 03:22:53 +00:00
= 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]]