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.
views:
108answers:
4ImageMagick has a large XS component (i.e. C files). However the OP has not explained why this is a valid constraint.
Ether
2010-05-01 17:09:44
+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
2010-05-01 09:52:23
+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
2010-05-01 10:14:57
+2
A:
Have a look at PostScript::Simple. But I think you really want one of the XS modules.
tsee
2010-05-02 07:12:49