1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
#!/usr/bin/perl -w
use strict;
use warnings;
use Carp 'verbose'; local $SIG{__DIE__} = sub { Carp::confess(@_) }; use Data::Dumper;
use PDF::Table;
# NOTE: this example isn't really valid;
# originally an attempt to use UTF-8 with corefonts!
# -------------
# -A or -B on command line to select preferred library (if available)
# then look for PDFpref file and read A or B forms
my ($PDFpref, $rcA, $rcB); # which is available?
my $prefFile = "examples/PDFpref";
my $prefDefault = "B"; # PDF::Builder default if no prefFile, or both installed
# command line selection of preferred library? A..., -A..., B..., or -B...
if (@ARGV) {
# A or -A argument: set PDFpref to A else B
if ($ARGV[0] =~ m/^-?([AB])/i) {
$PDFpref = uc($1);
$prefix = 1;
} else {
print STDERR "Unknown command line flag $ARGV[0] ignored.\n";
}
}
# environment variable selection of preferred library?
# A..., B..., PDF:[:]A..., or PDF:[:]B...
if (!defined $PDFpref) {
if (defined $ENV{'PDF_prefLib'}) {
$PDFpref = $ENV{'PDF_prefLib'};
if ($PDFpref =~ m/^A/i) {
# something starting with A, assume want PDF::API2
$PDFpref = 'A';
} elsif ($PDFpref =~ m/^B/i) {
# something starting with B, assume want PDF::Builder
$PDFpref = 'B';
} elsif ($PDFpref =~ m/^PDF:{1,2}A/i) {
# something starting with PDF:A or PDF::A, assume want PDF::API2
$PDFpref = 'A';
} elsif ($PDFpref =~ m/^PDF:{1,2}B/i) {
# something starting with PDF:B or PDF::B, assume want PDF::Builder
$PDFpref = 'B';
}
}
}
# PDF preference file selecting preferred library?
# A..., B..., PDF:[:]A..., or PDF:[:]B...
if (!defined $PDFpref) {
if (-f $prefFile && -r $prefFile) {
open my $FH, '<', $prefFile or die "error opening $prefFile: $!\n";
$PDFpref = <$FH>;
if ($PDFpref =~ m/^A/i) {
# something starting with A, assume want PDF::API2
$PDFpref = 'A';
} elsif ($PDFpref =~ m/^B/i) {
# something starting with B, assume want PDF::Builder
$PDFpref = 'B';
} elsif ($PDFpref =~ m/^PDF:{1,2}A/i) {
# something starting with PDF:A or PDF::A, assume want PDF::API2
$PDFpref = 'A';
} elsif ($PDFpref =~ m/^PDF:{1,2}B/i) {
# something starting with PDF:B or PDF::B, assume want PDF::Builder
$PDFpref = 'B';
}
close $FH;
}
}
# still no preferred library indicated? use the default
if (!defined $PDFpref) {
# no preference expressed, default to PDF::Builder
print STDERR "No library preference given, so default to ".
(($prefDefault eq 'A')? 'PDF::API2': 'PDF::Builder')." as preferred.\n";
$PDFpref = $prefDefault;
}
# try to use the preferred library, if available
foreach (1 .. 2) {
if ($PDFpref eq 'A') { # A(PI2) preferred
$rcA = eval {
require PDF::API2;
1;
};
if (!defined $rcA) { $rcA = 0; } # else is 1;
if ($rcA) { $rcB = 0; last; }
$PDFpref = 'B';
}
if ($PDFpref eq 'B') { # B(uilder) preferred
$rcB = eval {
require PDF::Builder;
1;
};
if (!defined $rcB) { $rcB = 0; } # else is 1;
if ($rcB) { $rcA = 0; last; }
$PDFpref = 'A';
}
}
if (!$rcA && !$rcB) {
die "Neither PDF::API2 nor PDF::Builder is installed!\n";
}
# -------------
our $VERSION = '1.006'; # VERSION
our $LAST_UPDATE = '1.006'; # manually update whenever code is changed
my $outfile = $0;
$outfile =~ s/\.pl$/.pdf/;
# TTF font to use. customize path per your local system.
# DejaVuSans.ttf also needs to exist in this directory
my $dir =
# '/usr/share/fonts/truetype/dejavu/';
'/Windows/Fonts/';
my ( $pdf, $page, $font, $ttfont, $text, $pdftable, $left_edge_of_table, $try );
use utf8;
$try = "
accents: á é í ó ú Á É Í Ó Ú
Spanish (tilde): ñ Ñ ¿ ¡
German (umlaut): ä ö ü ß Ö Ä Ü
Cyrillic: ѐ Ѐ Ѡ ѡ Ѣ
Greek: α β γ δ Γ Δ
Armenian: Ա Բ Գ Դ Ե
Hebrew: א ב ג ד
Arabic: ر ش س ذ
Mono: iI lL zero=0 one=1
Latin-1 Supplement: ° À Ð à ð
Latin-Extended A: Ā Đ Ġ
Latin-Extended B: ƀ Ɛ Ơ
Cyrillic Supplement: Ԃ Ԡ Ԓ
http://dejavu.sourceforge.net/samples/DejaVuSans.pdf
"; no utf8;
# https://github.com/dejavu-fonts/dejavu-fonts
# /usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf
# You can save custom fonts in the folder ~/.fonts
# $ sudo apt update && sudo apt -y install font-manager
# https://dejavu-fonts.github.io/Samples.html
make_another('010_fonts-default.pdf', '', $try , 'logo.png' );
use utf8; my $try_utf8 = $try;
make_another('010_fonts-use_utf.pdf', 'DejaVuSans', $try_utf8 , 'logo.png' );
no utf8; my $no_utf8 = $try;
make_another('010_fonts-no_utf8.pdf', 'DejaVuSans', $no_utf8 , 'logo.png' );
# make_another('010_fonts-default.pdf', 'DejaVuSans', $try , 'logo.png' );
sub make_another {
my ($file, $passed_font_name, $passed_text, $passed_image_name ) = @_ ;
print "Passed \$file = '$file', \$font_name = '$passed_font_name', \$image_name = '$passed_image_name' \n";
print "\n INLINE!
accents: á é í ó ú Á É Í Ó Ú
Spanish (tilde): ñ Ñ ¿ ¡
German (umlaut): ä ö ü ß Ö Ä Ü
Cyrillic: ѐ Ѐ Ѡ ѡ Ѣ
Greek: α β γ δ Γ Δ
Armenian: Ա Բ Գ Դ Ե
Hebrew: א ב ג ד
Arabic: ر ش س ذ
Mono: iI lL zero=0 one=1
Latin-1 Supplement: ° À Ð à ð
Latin-Extended A: Ā Đ Ġ
Latin-Extended B: ƀ Ɛ Ơ
Cyrillic Supplement: Ԃ Ԡ Ԓ
http://dejavu.sourceforge.net/samples/DejaVuSans.pdf
";
# Create a blank PDF file
# -------------
my $pdf;
if ($rcA) {
print STDERR "Using PDF::API2 library\n";
$pdf = PDF::API2->new();
} else {
print STDERR "Using PDF::Builder library\n";
$pdf = PDF::Builder->new();
}
# -------------
$pdftable = PDF::Table->new();
# Add a blank page
$page = $pdf->page();
# Set the page size
# my $page->mediabox('Letter');
# Add a built-in font to the PDF
# Add some text to the page
$text = $page->text();
$font = $pdf->corefont('Helvetica-Bold' ); # default to Latin-1 encoding
$text->font( $font, 14 ); $text->translate( 50, 700 );
$text->text("In core font: $passed_text\n");
print "$dir$passed_font_name.ttf\n";
my $ttfont;
if ($passed_font_name eq '') {
$ttfont = $pdf->ttfont($dir.'DejaVuSans'.'.ttf');
} else {
$ttfont = $pdf->ttfont($dir.$passed_font_name.'.ttf');
}
$text->font( $ttfont, 14 ); $text->translate( 50, 650 );
$text->text("In true type font: $passed_text\n");
$text->translate( 50, 600 );
$text->text("In true type font: INLINE!
accents: á é í ó ú Á É Í Ó Ú
Spanish (tilde): ñ Ñ ¿ ¡
German (umlaut): ä ö ü ß Ö Ä Ü
Cyrillic: ѐ Ѐ Ѡ ѡ Ѣ
Greek: α β γ δ Γ Δ
Armenian: Ա Բ Գ Դ Ե
Hebrew: א ב ג ד
Arabic: ر ش س ذ
Mono: iI lL zero=0 one=1
Latin-1 Supplement: ° À Ð à ð
Latin-Extended A: Ā Đ Ġ
Latin-Extended B: ƀ Ɛ Ơ
Cyrillic Supplement: Ԃ Ԡ Ԓ
http://dejavu.sourceforge.net/samples/DejaVuSans.pdf
\n");
my $some_data = [ ['core font: '. $passed_text], ];
$left_edge_of_table = 50;
# x
# w
# start_y
# start_h
# next_y
# next_h
# lead
# padding
# padding_right
# padding_left
# padding_top
# padding_bottom
# background_color
# background_color_odd
# background_color_even
# border
# border_color
# horizontal_borders
# vertical_borders
# font
# font_size
# font_underline
# font_color
# font_color_even
# font_color_odd
# background_color_odd
# background_color_even
# row_height
# new_page_func
# header_props
# column_props
# cell_props
# max_word_length
# cell_render_hook
# default_text
#
# build the table layout
$pdftable->table(
# required params
$pdf, $page, $some_data, x => $left_edge_of_table, w => 500, start_y => 500, start_h => 300,
# some optional params
font => $font ,
# next_y => 750,
# next_h => 500,
# padding => 5,
# padding_right => 10,
# background_color_odd => "gray",
# background_color_even => "lightblue", # cell background color for even rows
);
$some_data = [ ['true type font: '. $passed_text], ];
$left_edge_of_table = 50;
if ($passed_font_name) {
$pdftable->table( $pdf, $page, $some_data, x => $left_edge_of_table, w => 500, start_y => 500, start_h => 300, font => $ttfont , );
} else { # go to default font
$pdftable->table( $pdf, $page, $some_data, x => $left_edge_of_table, w => 500, start_y => 500, start_h => 300, );
}
# Save the PDF
$pdf->saveas($file);
return;
}
|