2

我有以下代码:

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

4

2 回答 2

3

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

2.将编码后的文件放到html2pdf或tcpdf或fpdf代码中的fonts目录下进行pdf转换

  1. $html2pdf = new HTML2PDF('P', 'A4', 'fr');

$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文件

于 2014-08-26T11:10:45.103 回答
2

看看这个。可能有帮助。

为 HTML2PDF 制作字体

于 2012-09-26T14:35:16.797 回答