View Single Post
Old 05-31-2012, 01:29 AM   #3
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,582
Karma: 22735033
Join Date: Dec 2010
Device: Kindle PW2
Since you didn't mention the file name convention that you used, it'd hard to make suggestions for separating odd and even pages, but since you mentioned that you could copy the odd pages to a separate folder, I'm assuming that you already figured this part out and describe only the conversion part.

You could easily rotate all images in one folder with ImageMagick and a batch file. Simply install ImageMagic, put all odd images in one folder, save the following command line as batch file with the extension .bat or .cmd in the same folder and execute it:

Code:
FOR %%f IN ("*.jpg") DO (mogrify -rotate 90  "%%f")
Note that this will overwrite the original files.
Doitsu is offline   Reply With Quote