Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用mPDF生成带有图像的 PDF。
问题是,当我渲染图像时,它周围有一个轻微的边框。
有没有办法删除这个?
谢谢
$mpdf=new mPDF('c'); $mpdf->SetDisplayMode('fullpage'); $content = '<img src="/image.png" style="width:100%;border:0;" />'; $mpdf->writeHTML($content); $mpdf->Output('test.pdf', 'F');
不是要死去的帖子,但这是谷歌上第一个也是唯一一个出现的东西。
将您的图像转换为 CMYK。那应该可以解决您的问题。
我有同样的问题,应该使用 Imagick。我做了两件事:
$signature = new \Imagick(); $signature->borderImage('white',1,1);
<img src="...">
div
那行得通。