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();