grizzlebees, you'll wish you had less fun.
all of my photos are processed using open source software.
jHead is used for some of my exif manipulation
ImageMagick + perl are used for my post-processing.
This is my post processing script:
#!/usr/bin/perl
use Image::Magick;
my ($image, $x, @files, $file);
my $fontname = "DejaVuLGCSerif.ttf";
my $annotation = "Brian Redbeard";
$file = $ARGV[0];
$image = Image::Magick->new();
$x = $image->Read($file);
$x = $image->Border(geometry => '31', fill => "White");
$x = $image->Border(width => '31', height => '100', fill => "Black");
$x = $image->Chop(geometry => '0x70+0+0');
$x = $image->Annotate(font=>$fontname,
geometry=>'+250+10',
pointsize=>80,
fill=>'White',
gravity=>'SouthWest',
antialias=>"True",
text=>$annotation);
$x = $image->Write("$file");
warn "$x" if "$x";
undef $image;
oh yeah, this is what i look like:
- JoinedAugust 2005
- Occupationcomputer guy
- Current citylos angeles, ca
- CountryUS
- Websitehttp://www.brianredbeard.com
Most popular photos
Testimonials
Nothing to show.