Newbie user can't get started - image rotate

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
AMalsher
Posts: 2
Joined: 2013-06-06T11:01:16-07:00
Authentication code: 6789

Newbie user can't get started - image rotate

Post by AMalsher »

I'm trying to aoto-rotate an iPhone photo on Windows.
Can someone please give me the command line syntax?
User avatar
GreenKoopa
Posts: 457
Joined: 2010-11-04T17:24:08-07:00
Authentication code: 8675308

Re: Newbie user can't get started - image rotate

Post by GreenKoopa »

convert in.jpg -rotate 90 out.jpg

Also see -auto-orient
AMalsher
Posts: 2
Joined: 2013-06-06T11:01:16-07:00
Authentication code: 6789

Re: Newbie user can't get started - image rotate

Post by AMalsher »

Thanks, GreenKoopa. That got me started - actually on windows, the syntax has the switches BEFORE the input file specification.
I'm happy, but I cannot promise not to ask more dumb questions!
Thank again
User avatar
GreenKoopa
Posts: 457
Joined: 2010-11-04T17:24:08-07:00
Authentication code: 8675308

Re: Newbie user can't get started - image rotate

Post by GreenKoopa »

Some settings may appear before the input file, but operations should appear after the image(s) to be operated on are read in. Here is some reading to get you started:
http://www.imagemagick.org/Usage/basics/
Post Reply