Skip to main content
added 3 characters in body
Source Link
Parcly Taxel
  • 4.7k
  • 1
  • 8
  • 55

Bash/ImageMagick, 2321 bytes

mogrify -rotate "90"90 $1 

Conveniently this command overwrites the source file, and does not need the image to be of any specific dimensions.

ImageMagick, 23 bytes

mogrify -rotate "90" $1 

Conveniently this command overwrites the source file, and does not need the image to be of any specific dimensions.

Bash/ImageMagick, 21 bytes

mogrify -rotate 90 $1 

Conveniently this command overwrites the source file, and does not need the image to be of any specific dimensions.

Source Link
Parcly Taxel
  • 4.7k
  • 1
  • 8
  • 55

ImageMagick, 23 bytes

mogrify -rotate "90" $1 

Conveniently this command overwrites the source file, and does not need the image to be of any specific dimensions.