9 lines
286 B
PHP
9 lines
286 B
PHP
<?php
|
|
// vim: expandtab sw=4 ts=4 sts=4:
|
|
for ($i=0;$i<=255;$i++)
|
|
$fpdf_charwidths['courier'][chr($i)]=600;
|
|
$fpdf_charwidths['courierB']=$fpdf_charwidths['courier'];
|
|
$fpdf_charwidths['courierI']=$fpdf_charwidths['courier'];
|
|
$fpdf_charwidths['courierBI']=$fpdf_charwidths['courier'];
|
|
?>
|