1
vote
4answers
88 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
245 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 …
1
vote
2answers
191 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
4answers
105 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 …
1
vote
4answers
346 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 …
1
vote
1answer
43 views
How can I set options with variables in GD::Graph?
… GD::Graph::lines … my $mygraph = GD::Graph::lines->new($x, $y);
$mygraph->set(
…
2
votes
3answers
225 views
1
vote
1answer
191 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 …
6
votes
15answers
1k views
2
votes
4answers
250 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
264 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-> …
4
votes
9answers
187 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 …
8
votes
14answers
476 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 …
2
votes
5answers
270 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
…
6
votes
6answers
226 views
How can I plot a time series graph with Perl?
… lso tried <a href="http://search.cpan.org/perldoc/GD%3A%3AGraph" rel="nofollow">GD::Graph … GD::Graph does not support numerical x
axis the wa …
