Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
When I view 'test.pdf' on my computer, I have the two lines of text correctly displayed as expected.use PDF::API2; my $pdf = PDF::API2->new(); my $page = $pdf->page(); my $text = $page->text(); my $font = $pdf->corefont('Helvetica-Roman'); $text->font($font, 16); $text->translate(50, 620); $text->text('Print some text'); $text->rect(50, 560, 400, 18); $text->fillcolor('#000000'); $text->fill(); $text->fillcolor('#ffffff'); $text->translate(62, 565); $text->text('Print text in rect'); $pdf->saveas('test.pdf');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: PDF API2 rect fill not displayed in android pdf viewer
by vr (Curate) on Apr 09, 2018 at 13:00 UTC | |
by Anonymous Monk on Apr 09, 2018 at 16:10 UTC | |
|
Re: PDF API2 rect fill not displayed in android pdf viewer
by Anonymous Monk on Apr 09, 2018 at 12:33 UTC |