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.
我已经在使用 FPDF 的 PHP 生成的 pdf 中添加了一个图像,当我插入一个图像时会出现问题,该图像被插入到正确的位置,但它周围有一个丑陋的边框,而在实际图像中没有边框。这里需要提到的另一件重要的事情是我已经使用 FPDF Image() 方法参数重新调整了它的大小,我的代码是:
$this->Image('report_footer.jpg',10,280,190,8);
边框仅出现在图像的顶部和左侧,如下所示:
有什么想法可以摆脱我的图像周围的边框吗?
您可以尝试提供图像类型以及其他参数。您也可以尝试将图像编辑到所需的尺寸,然后试一试。如果这不起作用,您可以尝试使用带有 html 写入的 TCPDF 和带有边框 0属性的图像。