Automator-filter: Help me redact!
September 13, 2007 4:47 PM
Subscribe
How do I automate image redaction with Automator?
I looked high and low for an automator action to put a white box over a certain part of a TIFF file. I have over 500 images that need to be redacted in the same place. All the image actions I find involve applying filters and other specific menu actions, but I want to draw a box over text in the lower left corner of an image.
If there is a free way to do this otherwise with Windows, Linux or Mac, I am open to suggestions.
posted by rabbitsnake to computers & internet (5 comments total)
for file (*.TIFF)
do
convert -fill white -stroke white -draw "rectangle 50,50 100,100" ${file}
done
(or so)
posted by kcm at 5:01 PM on September 13, 2007