/usr/share/doc/perl-GD/demos
NameSizeModeActions
brushes.pl9230755editdlrm
copies.pl10910755editdlrm
draw_colors.pl9440755editdlrm
fills.pl5900755editdlrm
fonttest9360755editdlrm
font_list.png220780644editdlrm
gd_example.cgi6830755editdlrm
png2jpeg.pl5630644editdlrm
polyline.pl88480644editdlrm
polys.pl7850755editdlrm
shapes.pl12930755editdlrm
tile.png2800644editdlrm
transform.pl10130755editdlrm
truetype_test8640755editdlrm
ttf.pl7360755editdlrm
Edit: /usr/share/doc/perl-GD/demos/gd_example.cgi (683B)
#!/usr/bin/perl use GD; print "Content-type: image/png\n\n"; # create a new image $im = new GD::Image(100,100); # allocate some colors $white = $im->colorAllocate(255,255,255); $black = $im->colorAllocate(0,0,0); $red = $im->colorAllocate(255,0,0); $blue = $im->colorAllocate(0,0,255); # make the background transparent and interlaced $im->transparent($white); $im->interlaced('true'); # Put a black frame around the picture $im->rectangle(0,0,99,99,$black); # Draw a blue oval $im->arc(50,50,95,75,0,360,$blue); # And fill it with red $im->fill(50,50,$red); binmode STDOUT; # Convert the image to PNG and print it on standard output print $im->png;