Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Characters rendered wrong #19

Merged
merged 2 commits into from Oct 8, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion issue_scripts/issue_15.pl
Expand Up @@ -2,15 +2,16 @@
use warnings;
use strict;
use diagnostics;
use utf8;

use lib('../lib/');
use PDF::API2;
use PDF::Table;

#Please use TABSTOP=4 for best view
my $pdftable = new PDF::Table;
my $pdf = new PDF::API2( -file => "issue_15.pdf" );
my $page = $pdf->page();
my $pdftable = new PDF::Table($pdf,$page);
$pdf->mediabox('A4');

# A4 as defined by PDF::API2 is h=842 w=545 for portrait
Expand Down