|
||||
|
While the changes to the image are difficult to identify from the images posted, I love the idea of automating the basics. I have something similar to convert my raw images to jpg but haven't spent the time to add watermarking etc.
It sounds like you're using the same tools that I am and I'd very much be interested to see your script and how you've automated the tweaking. |
|
||||
|
Here's the script, as it currently sits. It requires ImageMagick and it's certainly not foolproof (if you don't have ~/images/Working\ Directory/ created, it'll just explode... and I've set it up to ONLY process .png images stored in that folder. I'm not a fan of JPG images, typically)
Code:
#!/bin/bash # Authored by Jesse O'Brien # http://uptimefirm.com if [ ! -d ~/images/Working\ Directory/processed_images ]; then mkdir ~/images/Working\ Directory/processed_images; fi; #cleanup temp file, in case last process was interrupted mkdir ~/images/Working\ Directory/.temp photos='~/images/Working\ Directory/*.png' for f in $photos; do echo "Beginning processing $f" convert -monitor -filter box -background black -noise 1 -sigmoidal-contrast 4x45% -unsharp 4x0.5+1+0.05 -vignette 500x200-150-150 $f ~/images/Working\ Directory/.temp/$f echo "Creating PRINT source for $f" convert -monitor -filter box -background black -noise 1 -sigmoidal-contrast 4x45% -unsharp 4x0.5+1+0.05 -vignette 1000x200-150-150 ./$f ~/images/Working\ Directory/processed_images/$f echo "watermarking $f" composite -dissolve 75 -gravity south '~/images/Working\ Directory/Watermarks/drivendaily.png' '~/images/Working\ Directory/.temp/$f' ./processed_images/drivendaily_$f composite -dissolve 75 -gravity south ~/images/Working\ Directory/Watermarks/photopalooza.png ~/images/Working\ Directory/.temp/$f ./processed_images/photopalooza_$f echo "removing original $f" rm $f echo "***** Processing complete for $f *****" done echo 'Core processing complete, cleanup in progress.' #cleanup temp file rm -r ./.temp echo "Finished cleanup. Enjoy your processed photos!" Last edited by drummingpariah; 10-19-2011 at 02:31 PM. |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Each day we send out a quick email to thousands of DPS readers to notify them of updates. This email is just short excerpt of the first few lines of our latest post with a link if you want to read it all. You can unsubscribe from this this service at any time.
This service is provided by a third party (Feedburner) and you can subscribe to it by leaving your email address in the following field and confirming your subscription when you get an email asking you to do so.
Enter your email address for
Daily Updates:
For those wanting a weekly summary of what happens on this site this free email newsletter is probably your best option. It includes a summary of the tips posted to the site each week. This newsletter is subscribed to by over 25000 readers (many who also subscribe to the other options above) - come join the community!
To subscribe to this weekly newsletter simply add your email address to the following field and then follow the confirmation prompts. You will be able to unsubscribe at any time.
Enter your email address for
Free Weekly Newsletter: