in reply to Working with images

A good place to get inspiration could be Graphic RSS. In the page, among other things, you'll find a reference to Image::Magick, a very powerful module to work with images. I'd like to mention also GD, simpler but useful.

Replies are listed 'Best First'.
Re: Re: Working with images
by Anonymous Monk on Mar 31, 2002 at 22:49 UTC
    Image::Magick looks quite useful. I'll have to give that a try. By the way, after a cursory glance through the documentation, I didn't see how I could return the image directly to the caller, rather then saving it. Do you know how to do that?
    Gracias

      You'll want to print it to standard output. Per the docs, this would be:

      $image->Write("gif:-");

      perl -pe '"I lo*`+$^X$\"$]!$/"=~m%(.*)%s;$_=$1;y^`+*^e v^#$&V"+@( NO CARRIER'

        ¡Hey, that works great!
        ¡¡Muchas Gracias!!