OK, so I have all the software I wanted. Gimp is awesome!
This is what I will be doing to use Gimp in modperl:
unless( fork()){
Gimp::on_net(\&do_stuff);
}else{
wait();
find_the_generated_image();
finish_responding_to_web_request();
};
Is anything going to come out and bite me?