Skip to content

Commit

Permalink
Merge pull request #19 from joenio/characters-rendered-wrong
Browse files Browse the repository at this point in the history
Characters rendered wrong
  • Loading branch information
kamenov committed Oct 8, 2015
2 parents 7e1504c + f93ed16 commit f3303df
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit f3303df

Please sign in to comment.