ImageMagic cheat sheet

This commit is contained in:
Yuri Slobodyanyuk
2022-07-10 20:54:51 +03:00
parent 677a5d6fdb
commit 1892f45a65

View File

@@ -1 +1,14 @@
= ImageMagick Command Line Examples
== Rotate images 90 degrees
Use `convert` tools in a bash script to rotate all .jpg images in the current folder, naming the rotated images as _current-name_-rotated.jpg
[source,bash]
----
for ii in *.jpg
do
convert ${ii} -rotate 90 ${ii}-rotated.jpg
done
----