Δημοσιεύτηκε: 18 Νοέμ 2008, 16:05
από pirobatis
το εδωσα στο τερματικο και λεει

Cairo(3pm) User Contributed Perl Documentation Cairo(3pm)

NAME
Cairo - Perl interface to the cairo library

SYNOPSIS
use Cairo;

my $surface = Cairo::ImageSurface->create ('argb32', 100, 100);
my $cr = Cairo::Context->create ($surface);

$cr->rectangle (10, 10, 40, 40);
$cr->set_source_rgb (0, 0, 0);
$cr->fill;

$cr->rectangle (50, 50, 40, 40);
$cr->set_source_rgb (1, 1, 1);
$cr->fill;

$cr->show_page;

$surface->write_to_png ('output.png');