Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Create own colors with RGB values in PDF::API2

by snoopy (Curate)
on Feb 23, 2010 at 04:03 UTC ( [id://824758]=note: print w/replies, xml ) Need Help??


in reply to Create own colors with RGB values in PDF::API2

You can just use an HTML like RGB hex mask, prefixed by '#':
#!/usr/bin/perl use common::sense; use PDF::API2; my $pdf = PDF::API2->new(); my $page = $pdf->page(0); my $gfx = $page->gfx; my $red_rgb = '#ff0000'; $gfx->strokecolor($red_rgb); $gfx->rect(10,100,200,200); $gfx->stroke; $pdf->saveas('/tmp/red_box.pdf');
This'll work pretty well everywhere you can specify a color.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://824758]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-25 08:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found