tags:

views:

108

answers:

4

I am looking for the pure Perl module for creation of the image file. I went through internet and found some modules GD, Imager, Prima-1.28 but these are all contains 'C' (.c) file and (.h) files.

+1  A: 

Maybe PerlMagick (ImageMagick) is what you are looking for?

Bevor
ImageMagick has a large XS component (i.e. C files). However the OP has not explained why this is a valid constraint.
Ether
+1  A: 

I don't know about a pure Perl module for image handling but by installing ImageMagick you'll be able to use PerlMagick which will allow you to do everything you ever wanted.

zaf
+6  A: 

I'm not aware of any such module and I doubt that there's much demand for a pure-Perl image lib, given that a) C image libs are widely available and b) image manipulation requires you to do a lot of low-level bit twiddling of just the sort that Perl really isn't all that good at, so it would be much slower than any of the standard C image libs.

Dave Sherohman
+2  A: 

Have a look at PostScript::Simple. But I think you really want one of the XS modules.

tsee