in reply to Re^3: PDF::ReportWriter Custom fonts
in thread PDF::ReportWriter Custom fonts

I also thought of doing the same, but I ahve only one pdf object (created from PDF::ReportWriter), so how can i access the object of PDF::API2 and use it here to modify the fonts in this report object.

Actually, my aim is to get a table in the landscape view with my custom fonts. With PDF::API2, I am able to use the custom fonts, but having issues with table in landscape view. With the page rotation, do you have any idea how can i rotate the table as well.

Replies are listed 'Best First'.
Re^5: PDF::ReportWriter Custom fonts
by Anonymous Monk on Feb 15, 2010 at 17:42 UTC

      my $rpt_writer = PDF::ReportWriter->new( ... ); my $pdf_api2 = $rpt_writer->{pdf};

      -derby