in reply to cgi graphics

I would like to suggest you use DBD::Chart or DBIx::Chart. Those modules leave DBI driver abstraction for rendering And is there a way in GD.pm for me to print them all directly to the browser without file writing?
#!/usr/bin/perl -w use strict; use GD; my $image = new GD::Image(468,60); . . . print "Content-type: image/png\n\n"; print $image->png;
      
--------------------------------
SV* sv_bless(SV* sv, HV* stash);

Replies are listed 'Best First'.
Re: Re: cgi graphics
by nite_man (Deacon) on May 05, 2003 at 13:47 UTC
    Note: This is update my previous post
    I'm sorry I've forgotten define lins on graphic modules:
          
    --------------------------------
    SV* sv_bless(SV* sv, HV* stash);