1
vote
4answers
160 views
How to install GD library with Stawberry Perl
… I am attempting to install the GD library using Strawberry perl and … <a href="http://gnuwin32.sourceforge.net/packages/gd.htm" rel="nofollow">GnuWin32 … . However, when I enter "install GD" in the CPAN shell, the following message appears … I believe perl is having difficulty locating the GD library installed at C:\Program Files\GnuWin32\bi …
0
votes
3answers
300 views
How do I add text to graph in Perl’s GD::Graph?
… graph using <a href="http://search.cpan.org/dist/GD-Graph" rel="nofollow">GD::Graph …
2
votes
2answers
228 views
How do I keep GD::Graph from showing points outside of the graphing area?
… n Perl using <a href="http://search.cpan.org/dist/GD-Graph" rel="nofollow">GD::Graph …
1
vote
2answers
238 views
How can I prevent GD from running out of memory?
… s the culprit here. I am trying to instantiate a GD image from data in memory (it previously came fro … my $image = GD::Image->new($image_data);
… . The POD for GD says that the constructor will return … For clarification, the GD::Image object never gets created, so clearing out …
0
votes
4answers
126 views
How do I set up the data structure to make pie charts in GD::Graph?
… graph using <a href="http://search.cpan.org/dist/GD-Graph" rel="nofollow">GD::Graph::pie …
2
votes
4answers
414 views
Why is Perl’s GD::Graph complaining about “Invalid data set”?
… use GD::Graph::bars;
open(CHECKBOOK,"c:\\Perl\\bin\\ip_ … x_axis \n";
print "@y_axis \n";
my $mygraph = GD::Graph::bars->new(500, 300); # line 67
$mygra …
0
votes
1answer
65 views
How can I set options with variables in GD::Graph?
… GD::Graph::lines … my $mygraph = GD::Graph::lines->new($x, $y);
$mygraph->set(
…
3
votes
3answers
246 views
7
votes
15answers
1k views
1
vote
4answers
336 views
Using Perl, how can I create charts using values in a CSV file?
I am new to this and need a clue on how to do this task. I have a csv file with following sample data:
site,type,2009-01-01,2009-01-02,....
X,A,12,10,...
X,B,10,23,...
Y,A,20,33,... …
4
votes
1answer
339 views
Perl: recomended method to plot(x,y) pixels to a monochrome bitmap
… My solution, based on GD, as recomended by Brian Agnew … use strict;
use warnings;
use GD;
my $BitMap = GD::Image->new(400,400);
my $white = $BitMap-> …
1
vote
3answers
54 views
How do I add multiple Perl modules to Makefile.PL?
Looking for some insight on how to add multiple PM files to the MakeMaker script?
I see t …
9
votes
14answers
505 views
What do you keep in your Perl toolbox?
I am a Perl developer and have gravitated towards a specific suite of modules that I use for almost everything. I primarily build GIS and database oriented web applications for reporting and data …
4
votes
10answers
226 views
How do I write a Perl script to filter out digital pictures that have been doctored?
Last night before going to bed, I browsed through the Scalar Data section of Learning Perl again and came across the following sentence:
the ability to have any character in …
3
votes
5answers
340 views
What graphing packages/APIs exist for Perl?
I'm doing some research on online Graphing packages for different languages and would like to know what current up-to-date graphing packages there are for Perl which are worth investigating
…
