Commit 3c0f907a9caec5dd9af931cb93265dc4a82b0992

Authored by Brian Manning
1 parent b3cc9cadc9

table_demo: added new relative font path to GNU FreeFonts

Showing 1 changed file with 18 additions and 14 deletions Side-by-side Diff

... ... @@ -37,6 +37,11 @@
37 37 // set up some PDFlib options
38 38 $pdf->set_option("errorpolicy=return");
39 39 $pdf->set_option("stringformat=utf8");
  40 + // all paths in 'searchpath' need to be inside curly braces
  41 + // multiple curly-braced paths in $searchpath need to be separated with
  42 + // space characters
  43 + $searchpath = '{/usr/share/fonts/dejavu/}{' . __DIR__ . '/fonts}';
  44 + $pdf->set_option("searchpath={" . $searchpath . "}");
40 45  
41 46 if ($pdf->begin_document($outfile, "") == 0)
42 47 throw new Exception("Error: " . $pdf->get_errmsg());
... ... @@ -48,7 +53,7 @@
48 53 $pdf->set_info('Subject', 'IODP Proposals');
49 54 $pdf->set_info('Keywords', 'IODP proposal ocean drilling core expedition');
50 55  
51   - $textOpts = "fontname={Helvetica} embedding fontsize=20 "
  56 + $textOpts = "fontname={FreeSans} embedding fontsize=20 "
52 57 . "encoding=unicode ";
53 58  
54 59 // START PAGE 1
... ... @@ -63,7 +68,6 @@
63 68 // bookmark
64 69 $pdf->create_bookmark("Page 2", " action={activate= " . $action . "}");
65 70  
66   -
67 71 // text/image
68 72 $pdf->fit_textline("Jump to SSF for SHACK-10A", 20, 750,
69 73 $textOpts . " underline=true matchbox={name=to_second_page}");
... ... @@ -98,6 +102,9 @@
98 102 $pdf->close_pdi_document($ssfPDF);
99 103  
100 104 // write some text on to the page
  105 + // for landscape mode...
  106 + //$pdf->fit_textline("Back to Top", 20, 570,
  107 + //$linkOpts = linkAttribs(1, 750);
101 108 $action = $pdf->create_action("GoTo", "destination={page=1}");
102 109 $pdf->fit_textline("Back to Top", 20, $ssfHeight - 30,
103 110 $textOpts . " underline=true matchbox={name=to_first_page}");
104 111  
105 112  
... ... @@ -110,21 +117,18 @@
110 117 // END PAGE 2
111 118 $pdf->end_page_ext('');
112 119  
113   - // START PAGE 3
114   - $pdf->begin_page_ext(612, 792, '');
115   -
116   - // END PAGE 3
117   - $pdf->end_page_ext('');
118   -
119 120 // close the document
120 121 $pdf->end_document('');
  122 +}
121 123  
122   -} catch (PDFlibException $e) {
123   - die("PDFlib exception occurred\n"
124   - . "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": "
125   - . $e->get_errmsg() . "\n");
126   -} catch (Exception $e) {
127   - die($e);
  124 +catch (PDFlibException $e) {
  125 + die("PDFlib exception occurred in sample:\n" .
  126 + "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": " .
  127 + $e->get_errmsg() . "\n");
  128 +}
  129 +
  130 +catch (Exception $e) {
  131 + die($e);
128 132 }
129 133  
130 134 // vim: expandtab filetype=php shiftwidth=3 tabstop=3