I've tried reading pdf::table documentation.
But there's not any mention to vertical alignment
My example code is:
#!/usr/bin/perl
use strict;
use PDF::API2;
use PDF::Table;
my $pdftable = new PDF::Table;
my $pdf = new PDF::API2(-file => "pdf_table.pdf");
my $page = $pdf->page();
$pdf->mediabox('A4');
my $col_props = [
{
justify => 'right',
font => $pdf->corefont("Helvetica", -encoding => "utf8"),
+
font_size => 12,
min_w => 100,
max_w => 100,
},
{
justify => 'left',
min_w => 100,
max_w => 100,
}
];
my $data = [
['title0', "content 0" ],
['title1', "first line\nsecond line\nthird line"],
['title2', "content 2"],
['title3', "content 3"],
['title4', "content 4"],
['title5', "content 5"],
['title6', "content 6"]
] ;
# build the table layout
my ($end_page, $pages_spanned, $table_bot_y) = $pdftable->table(
$pdf,
$page,
$data,
x => 40,
w => 200,
start_y => 500,
next_y => 700,
start_h => 300,
next_h => 500,
padding => 5,
padding_right => 10,
column_props => $col_props,
);
$pdf->saveas();
The cell of second row and second column takes three lines. Than I want to align vertically centered the content of all other columns of that row. I could'nt find any indication in the documentaion. Thank's</>
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.