Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any pure Perl module to create images and to place text in the image?

Tags:

image

perl

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.

like image 365
user330284 Avatar asked May 01 '10 09:05

user330284


1 Answers

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.

like image 145
Dave Sherohman Avatar answered Oct 03 '22 23:10

Dave Sherohman