for i in * do mogrify $i -resize 640×480 i done Technorati Tags: Linux, Photo
Adding dates to your photos.
Add date in the photograph with a perl script. #!/usr/bin/perl if ($#ARGV < 0 ) { print \”$#ARGV \\n\”; print \”Usage $ARGV[0] filename/dir\\n\”; exit -1; } @files = `find \”$ARGV[0]\” -iname \”*jpg\” -print`; if ($#ARGV > 3 ) { $cmd = 1;} $count = 1; foreach $file (@files) { chomp ($file); @details = `exif1 \’$file\’`; [...]
Add border to images from command line using montage.
Adding a border to the images from command line is quite simple. But if you have couple of images in a directory that you want to add border to then it may become quite painful So what is the solution. You can simply use a one liner to do the job for you. for i [...]










