Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Sossity

macrumors 65816
Original poster
May 12, 2010
1,360
32
Is there a free app that can do this with alot of .tiff files? I have scanned quite a few cd album art covers but want to convert them to an optimal square size for my ipod & other mp3 players? what size would be best?

I would also like to be able to batch convert for websites, & add watermarks if needed as well.
 
Gimp is free, but from what I Googled, the batch convert is done through command line instructions.

You could browse through the Automator actions to see if there's a step in there that lets you convert image sizes, as well.

As for watermarks, in Gimp you could add a layer on top of the image for transparent text or whatever you wanted as your watermark and then export it as a image file.
 
Here's a quick AppleScript to do it. Just save it as an application in the AppleScript Editor (/Utilities/AppleScript Editor) and drop any TIFF onto it. I tried it out myself, so it should work.

Code:
on open droppedImages
	tell application "Finder"
		repeat with eachImage in droppedImages
			set imageName to name of eachImage
			if name extension of eachImage is "tiff" then

				tell application "Image Events"
					launch
					set openedImage to open (eachImage as text)
					scale openedImage to size 600
					save openedImage in (path to desktop folder as text) as JPEG with compression level high
					-- insert actions here
					close openedImage
				end tell

			end if
		end repeat
	end tell
end open
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.