Photo
Nifty Things to Do with GIMP
2009/12/26
Nifty Things to Do with GIMP Some of us are probably addicted to capturing moments in pictures. I can understand why. It’s one of those things that help us go back to the good old days, so to speak. …
Photo Resizing
2009/11/04
for i in * do mogrify $i -resize 640×480 i done
Adding dates to your photos.
2009/10/12
#!/usr/bin/perl if ($#ARGV < 0 ) { print ”$#ARGV \n”; print ”Usage $ARGV[0] filename/dir\n”; exit -1; } @files = `find ”$ARGV[0]” -iname …
Add border to images from command line using montage.
2008/11/20
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 …