转换为pdf时出现html2pdf错误

时间:2012-09-26 14:25:03

标签: php pdf font-face html2pdf

我有以下代码:

<?php session_start();
ob_start(); 
// on vérifie toujours qu'il s'agit d'un membre qui est connecté
if (!isset($_SESSION['login'])) { 
   // si ce n'est pas le cas, on le redirige vers l'accueil
   header ('Location: ../index.php'); 
   exit();  
}  
require_once('Connections/localhost.php'); 
mysql_select_db( $database_localhost ); ?>
 <page backtop="50mm"  backbottom="30mm" > 
    <page_header> <font face="arial">
<?php $sql="SELECT `entete`, `pieddepage` FROM `entete` INNER JOIN `courrier` ON `entete`.`id` = `courrier`.`code_entete` WHERE `courrier`.`code_lettre`='".mysql_real_escape_string($_POST['courrier'])."'" ;
 $msg= $_POST['msg'];
$result= mysql_query($sql);
$donnees=mysql_fetch_assoc($result) ;
echo $donnees['entete'] ;  ?>       </font>       
    </page_header> 
    <page_footer> <font face="arial">
<?php echo $donnees['pieddepage'] ;  ?>     
</font>   
    </page_footer> 
    <font face="arial">
    <?php echo '<font face="Arial">'.$_POST['editor1'].'</font>' ; ?></font>
 </page> 
<?php $content=ob_get_contents();
    ob_end_clean();
   require_once('html2pdf.class.php');
   $html2pdf = new HTML2PDF('P','A4','fr');
   $html2pdf->WriteHTML($content);
$path= 'courriers';
if(file_exists($path)) 
{ 
mkdir($path.'/'.$_GET['n_doss']); 
}
else
{
mkdir($path);
mkdir($path.'/'.$_GET['n_doss']); 
}
  $html2pdf->Output($path.'/'.$_GET['n_doss'].'/'.$_POST['nom_courrier'].'-'.date('d-m-Y').'.pdf', 'F');
  $url=$path.'/'.$_GET['n_doss'].'/'.$_POST['nom_courrier'].'-'.date('d-m-Y').'.pdf';
$sql="INSERT INTO `courrier-envoye` SET
qui = '".$_SESSION['login']."',
quoi = '".$_POST['nom_courrier']."',
quand = '".date('Y-m-d')."',
n_doss= '".$_GET['n_doss']."',
url= '".$url."'";
$req=mysql_query($sql) or die(__LINE__.mysql_error().$sql); 


 header('Location: '.$url);

?>

事实上它告诉我:

TCPDF错误:无法包含字体定义文件:verdana

但问题是我从未在代码中放置过某个地方 像<font face='verdana'>

这样的东西

所以我真的不知道这个麻烦来自哪里。

接受我最大的尊重。

亲切的问候。

SP

2 个答案:

答案 0 :(得分:3)

1.将任何verdana.ttf字体文件转换为http://www.fpdf.org/makefont/中的cp-1252编码

2.将编码文件放入html2pdf或tcpdf或fpdf中的fonts目录中 pdf转换代码

  1. $html2pdf = new HTML2PDF('P', 'A4', 'fr');
  2. $ root_directory =“/您的根目录到pdf转换包,如tcpdf,html2pdf,fpdf /”;

    $html2pdf->addFont('verdana', '', ''.$root_directory.'/fonts/source-sans-pro.light.php');
    
    //use your font-family:verdana into the html tag in $content 
    
    $content="<b style='font-family:verdana'>hello</b>";
    
    $html2pdf->writeHTML($content);
    
    $html2pdf->Output();
    

    检查你的pdf文件

答案 1 :(得分:2)

看看这一个。可能有帮助。

Make font for HTML2PDF