#!/usr/bin/perl
my @files = glob("*.bmp");
foreach $file (@files)
{
	print "Processing $file\n";
	system("mogrify -format png -pointsize 35 -fill white -draw 'text 40,450 \"http://www.globulation2.org\"' $file");
}
