This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use PDF::Haru; | |
| use strict; | |
| use warnings; | |
| # create new document | |
| my $pdf = PDF::Haru::New(); | |
| #$pdf->LoadTTFontFromFile("/usr/share/fonts/truetype/msttcorefonts/arial.ttf", HPDF_TRUE); | |
| # add page | |
| my $page = $pdf->AddPage(); | |
| # set page size and orientation |