Re: Manipulate graphics with Perl

2006-02-20 Thread Ryan
Truth. In an effort to be brief: I warn for the platform independant module designer. The lack of simplicity I mention is due to the fact ImageMagick isn't a pure-perl module that you can just stick in to your scripts list of dependancies. The complexity stems from image formats, core manipu

Re: Manipulate graphics with Perl

2006-02-20 Thread JupiterHost.Net
Ryan wrote: See the Perl interface of ImageMagick at: http://www.imagemagick.org/script/api.php#perl (Warning, not exactly simple) Really? I've found its quite easy as long as you follow best practices (Damian Conway) so that you can read your code later. Fiddling with images is of

Re: Manipulate graphics with Perl

2006-02-20 Thread Ryan
See the Perl interface of ImageMagick at: http://www.imagemagick.org/script/api.php#perl (Warning, not exactly simple) Scott wrote: I need to be able to take an image and break it down in to smaller blocks. This would be used to create an HTML page of smaller images together displaying the

Re: Manipulate graphics with Perl

2006-02-20 Thread JupiterHost.Net
Scott wrote: I need to be able to take an image and break it down in to smaller blocks. This would be used to create an HTML page of smaller images together displaying the large image as a whole, basically like the slice tool in Adobe. I was wondering if there was a way Perl could do this? If

Manipulate graphics with Perl

2006-02-20 Thread Scott
I need to be able to take an image and break it down in to smaller blocks. This would be used to create an HTML page of smaller images together displaying the large image as a whole, basically like the slice tool in Adobe. I was wondering if there was a way Perl could do this? If so can someone poi