DOMPDF 对 PNG 文件的渲染存在一些严重的令人费解的问题。
根据他们的 Github 页面,在 Windows IIS 服务器上使用最新版本的 DOMPDF。
我有两个问题:
- 无论图像的颜色如何,PNG 图像都以黑色背景和白色前景显示
- 如果我使用多个 PNG 图像,页面上的所有图像都显示为第一个图像,被压缩成不同的大小比例
这是一个屏幕截图来解释:
现在,如果我用 JPEG 文件替换其中一张图像,它可以工作:
如果我更改要渲染的第一个 PNG 图像,它会显示如下:
我使用的 HTML 如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>test</title>
<style type="text/css">
*{
color:'.$font.';
font-family:Helvetica, Arial, Serif;
}
.i{font-style: italic;}
.b{font-weight:bold;}
h1, h2, h3, h4, h5, h6{display:inline;}
h1{font-size:350%;}
h3{font-size:275%;}
h6{font-size:150%;}
span{font-size:125%;}
div{background-color:'.$bg.';}
</style>
</head>
<body>
<div align="center" style="margin-left:10px;margin-right:10px;padding:0px;">
<br />
<br />
<br />
<br />
<img src="img/banner/'.$type.'/top.png" />
<br />
<br />
<h1 class="b" style="color:'.$font.';">'.$type.' Certificate</h1>
<br />
<br />
<h3 class="i" style="color:'.$font.';">'.$name.'</h3>
<br />
<br />
<h6 style="color:'.$font.';">This certificate has been awarded to you for earning over '.$points.' points on the LEAP System.</h6>
<br />
<br />
<img src="img/barry.png" />
<br /><br />
<img src="img/badge.png" />
<br />
<h6 class="i">' . 'Date Awarded: '.date("d-m-Y").'</h6>
<br />
<br />
<span>Awarded by: '.$school.'</span>
<br />
<br />
<img src="img/banner/'.$type.'/bottom.png" />
<br />
<br />
<br />
<br />
</div>
</body>
</html>
我用来生成 PDF 的 PHP 代码如下:
public function save($data, $size, $orientation, $name, $type){
$dompdf = new DOMPDF();
$dompdf->set_paper($size, $orientation);
$dompdf->load_html($data);
$dompdf->render();
$data = $dompdf->output();
$filename = 'data/'.$type.'/'.$name.' - '.date("d-m-Y").'.pdf';
return file_put_contents($filename, $data);
}
生成证书后,我得到以下登录信息dompdf\lib\fonts\log.htm
:
52 7936.00 KB 1073.05 ms OFF
[__construct img/banner/Bronze/top.png][__construct img/barry.png][__construct img/badge.png][__construct img/banner/Bronze/bottom.png]get_min_max_width() auto auto;758.85850393701pt auto;773.85850393701pt auto;1010 121|757.5 90.75;get_min_max_width() auto auto;758.85850393701pt auto;773.85850393701pt auto;115 100|86.25 75;get_min_max_width() auto auto;758.85850393701pt auto;773.85850393701pt auto;187 60|140.25 45;[image:C:\Inetpub\wwwroot\frog\certificate_generator/img/banner/Bronze/top.png|1010|121|3]!!!png!!![addImagePng .png]
Warning: unlink(.png) [function.unlink]: No such file or directory in C:\Inetpub\wwwroot\frog\certificate_generator\dompdf\lib\class.pdf.php on line 4046
[image:C:\Inetpub\wwwroot\frog\certificate_generator/img/barry.png|115|100|3]!!!png!!!
Warning: unlink(.png) [function.unlink]: No such file or directory in C:\Inetpub\wwwroot\frog\certificate_generator\dompdf\lib\class.pdf.php on line 4046
[image:C:\Inetpub\wwwroot\frog\certificate_generator/img/badge.png|187|60|3]!!!png!!!
Warning: unlink(.png) [function.unlink]: No such file or directory in C:\Inetpub\wwwroot\frog\certificate_generator\dompdf\lib\class.pdf.php on line 4046
get_min_max_width() auto auto;758.85850393701pt auto;773.85850393701pt auto;1010 121|757.5 90.75;[image:C:\Inetpub\wwwroot\frog\certificate_generator/img/banner/Bronze/bottom.png|1010|121|3]!!!png!!!
Warning: unlink(.png) [function.unlink]: No such file or directory in C:\Inetpub\wwwroot\frog\certificate_generator\dompdf\lib\class.pdf.php on line 4046
有谁知道是什么导致了这些看似奇怪的问题?