e42758b4 by Jeff Balicki

fdf

1 parent c69a8bee
...@@ -118,9 +118,12 @@ try { ...@@ -118,9 +118,12 @@ try {
118 if ($font == 0) { 118 if ($font == 0) {
119 die("Error: " . $p->get_errmsg()); 119 die("Error: " . $p->get_errmsg());
120 } 120 }
121 $num_optlist = "fillcolor={".$fontColor." }";
122 $p->setfont($font, $fontSize); 121 $p->setfont($font, $fontSize);
123 $p->fit_textflow($textline, $textLRight, $textLUp, 190,120, $num_optlist); 122 $num_optlist = "fillcolor={".$fontColor." }";
123 $textline = $p->create_textflow($textline , $num_optlist);
124
125
126 $p->fit_textflow($textline, $textLRight, $textLUp, 190,120);
124 127
125 } else if ($row->change_type == 'img') { 128 } else if ($row->change_type == 'img') {
126 129
......