Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Rotate photos using exiftool and AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Rotate photos using exiftool and AppleScript
Authored by: tedw on Dec 16, '09 11:55:30AM
just for information's sake, you can rotate images from applescript using os X's built-in Image Events app:
set theFile to choose file
tell application "Image Events"
	set thisImage to open theFile
	rotate thisImage to angle 90
	save thisImage
end tell
I don't know this is lossless for a fact, but it uses Apple's Core Image routines which are supposedly pixel-by-pixel transformations, so it should be.

[ Reply to This | # ]