From 474e5dae9bb0d56098895ed316c0800d8dc694bd Mon Sep 17 00:00:00 2001 From: Brian Manning Date: Mon, 25 Apr 2016 15:04:38 -0700 Subject: [PATCH] tfpdf_demo: set document properties; fix issue with font name --- tfpdf_demo | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tfpdf_demo b/tfpdf_demo index afaf31e..8733979 100755 --- a/tfpdf_demo +++ b/tfpdf_demo @@ -42,11 +42,18 @@ $loader->register(); $pdf = new FPDI('p', 'mm', 'Letter'); +// Set up document properties +$pdf->SetCreator('IODP Science Support Office'); +$pdf->SetAuthor('IODP Science Support Office'); +$pdf->SetTitle('Demo of TCPDF for generating IODP Proposals'); +$pdf->SetSubject('IODP Proposals'); +$pdf->SetKeywords('IODP proposal ocean drilling core expedition'); + // write out the contents of the first page $pdf->AddPage(); $topLink = $pdf->AddLink(); $pdf->SetLink($topLink); -$pdf->AddFont('DejaVu','','DejaVuSansCondensed.ttf',true); +$pdf->AddFont('DejaVu','','DejaVuSans.ttf',true); $pdf->SetFont('DejaVu', '', 20); $pdf->SetFont('', 'U'); $ssfLink = $pdf->AddLink(); -- 1.9.1