Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Rotate An Image With ImageMagick

bash
# 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