Home
NOTE: I'm in the middle of upgrading the site. Most things are in place, but some things are missing and/or broken. This includes alt text for images. Please bear with me while I get things fixed.

Rotate An Image With ImageMagick

# white (or possibly black) background
magick mogrify -rotate 45 a.png

# transparent background
magick mogrify -background 'rgba(0,0,0,0)' -rotate 45 a.png

# black background
magick mogrify -background 'rgb(0,0,0)' -rotate 45 a.png
~ fin ~