dongmei8071 2012-09-26 06:25
浏览 168
已采纳

转换为pdf时出现html2pdf错误

I have the following code:

<?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);

?>

In fact it says to me:

TCPDF ERROR: Could not include font definition file: verdana

But the thing is that I never put somewhere in my code something like <font face='verdana'>

So I really do not know where does this trouble come from.

Receive all my Utmost Respect.

Kind Regards.

SP

展开全部

  • 写回答

2条回答 默认 最新

  • dpwdsmbvm496180204 2012-09-26 06:35
    关注

    Look at this one. may be it helps.

    Make font for HTML2PDF

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 爱快路由器端口更改错误导致无法访问
  • ¥20 安装catkin时遇到了如下问题请问该如何解决呢
  • ¥15 VAE模型如何输出结果
  • ¥15 编译python程序为pyd文件报错:{"source code string cannot contain null bytes"
  • ¥20 关于#r语言#的问题:广义加行模型拟合曲线后如何求拐点
  • ¥15 fluent设置了自动保存后,会有几个时间点不保存
  • ¥20 激光照射到四象线探测器,通过液晶屏显示X、Y值
  • ¥15 这怎么做,怎么在我的思路下改下我这写的不对
  • ¥50 数据库开发问题求解答
  • ¥15 安装anaconda时报错
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部