Ask a Question related to PERL Miscellaneous, Design and Development.
-
MJL #1
dynamically generating graphics
Is it difficult to dynamically generate a jpg in PERL? For example,
create a pie-chart or other graphs? What about including other
images?
I would like to dynamically create jpg's or gif's for my website and I
heard that it can be done in PERL.
Thanks!
mjl
MJL Guest
-
Generating PDF from XLS
Hi, I am trying to generate PDF document from an XLS using Distiller API. In Excel, I have set the page size as A4. However, the generated PDF is... -
Managing ViewState of a dynamically created Custom Composite Server Control -(where the original is also dynamically created)
Ok here's my scenario. I have a Custom Composite Server Control (CCSC) consisting of a TextBox, Button & Panel. (And some other code - which I... -
generating GIFs
I want to write a Perl program that will auto generate GIF images. The images that I want to generate will be about 30x80. It will be a black... -
Generating graphics
Hi all, I have some datas in a file and I need to generate graphics from the datas and show on html page. Is there any idia ? Regards, Mehmet -
Dynamically generating multi-table SQL
Jesse Sheidlower wrote: Check out Tangram or Alzabo for possible solutions. -
Martien Verbruggen #2
Re: dynamically generating graphics
On 16 Sep 2003 22:23:40 -0700,
MJL <mail@affordablemedicalsoftware.com> wrote:I don't know about PERL, but with Perl you can use modules.> Is it difficult to dynamically generate a jpg in PERL?
You can use Imager, Image::Magick, or GD. Or you can use any other
package that creates some sort of bitmap and convert it to JPEG format
with Image::Magick or some such.
See your local CPAN mirror, or start at [url]http://search.cpan.org/[/url].
There are already modules available on CPAN. See abovementioned URL.> For example,
> create a pie-chart or other graphs? What about including other
> images?
GD::Graph is one that I know particularly well, but there are several
others.
It'd be better to create PNG files instead of JPEG, though. JPEG's
compression algorithm isn't very good at images with typical charts.
Most free modules at the moment don't do GIF because of the patenting> I would like to dynamically create jpg's or gif's for my website
issues involved. GIF is inferior to PNG for this sort of thing
(anything, really) anyway. JPEG is not a good file format for charts.
Please, stop saying PERL. It hurts.> and I
> heard that it can be done in PERL.
Martien
--
|
Martien Verbruggen | Unix is user friendly. It's just selective
Trading Post Australia | about its friends.
|
Martien Verbruggen Guest
-
Gregory Toomey #3
Re: dynamically generating graphics
"MJL" <mail@affordablemedicalsoftware.com> wrote in message
news:29c5bb08.0309162123.7c2f234@posting.google.co m...Its easy once you know how. Use the GD module> Is it difficult to dynamically generate a jpg in PERL? For example,
> create a pie-chart or other graphs? What about including other
> images?
[url]http://search.cpan.org/author/LDS/GD-2.07/GD.pm[/url]
Gifs are only supported up to Version 1.18 of GD (which is still available>
> I would like to dynamically create jpg's or gif's for my website and I
> heard that it can be done in PERL.
for download); the latest version of GD uses png as the graphics format.
Have at look at the stock market charts at my site [url]www.ipo-australia.com[/url] to
give you some basic ideas.
gtoomey
Gregory Toomey Guest



Reply With Quote

