Changeset 186 for trunk/phpbms/fpdf/font/makefont/makefont.php
- Timestamp:
- 02/16/07 11:59:50 (5 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/fpdf/font/makefont/makefont.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/fpdf/font/makefont/makefont.php
r1 r186 122 122 if(!isset($widths[$map[$i]])) 123 123 { 124 echo '<B>Warning:</B> character '.$map[$i].' is missing< BR>';124 echo '<B>Warning:</B> character '.$map[$i].' is missing<br />'; 125 125 $widths[$i]=$widths['.notdef']; 126 126 } … … 390 390 SaveToFile($cmp,gzcompress($file),'b'); 391 391 $s.='$file=\''.$cmp."';\n"; 392 echo 'Font file compressed ('.$cmp.')< BR>';392 echo 'Font file compressed ('.$cmp.')<br />'; 393 393 } 394 394 else 395 395 { 396 396 $s.='$file=\''.basename($fontfile)."';\n"; 397 echo '<B>Notice:</B> font file could not be compressed (zlib extension not available)< BR>';397 echo '<B>Notice:</B> font file could not be compressed (zlib extension not available)<br />'; 398 398 } 399 399 if($type=='Type1') … … 412 412 $s.="?>\n"; 413 413 SaveToFile($basename.'.php',$s); 414 echo 'Font definition file generated ('.$basename.'.php'.')< BR>';414 echo 'Font definition file generated ('.$basename.'.php'.')<br />'; 415 415 } 416 416 ?>