I realise this might be posted somewhere, but I wasn't able to find it. I'm trying to add blur to the bottom section of 50,000 images. So far I've been able to achieve this for a single image (800 x 600) using the following code:
Code: Select all
convert -size 800x525 xc:black -size 100x75 xc:white -append blur_mask.jpg
convert /Users/Desktop/testFolder/image1.jpg blur_mask.jpg \
-compose blur -define compose:args=3 -composite \
blur.jpg
Sample image can be downloaded here: https://dl.dropboxusercontent.com/u/290 ... image1.jpg
I'm very new to IM. I use a Macbook Pro running IM 7.0.1
I'd appreciate any assistance. Thanks in advance!
PS - I forgot to mention that I need the keep the existing filename for each modified image.