我想在CodeIgniter中使用DOMPDF工具生成PDF。

我有一个图像,当我尝试执行以下操作时,我想在完整的DIN A4 PDF页面中显示它:

body{
  background-image: url('http://blogs.ucl.ac.uk/quantum/files/2013/12/artwork-fullsize.jpg'); background-position: bottom right; background-repeat: no-repeat;
  background-size: 100%;
  width:100%;
  height:100%;
  padding: 0px;
  margin: 0px;
}


我有一个PDF,但它出现了空白(或填充)。我想要没有边距或填充,而只是完整的100%图像背景。

谢谢,

最佳答案

dompdf尚不支持background-size声明。最简单的解决方法是绝对定位图像并将尺寸设置为页面尺寸(百分比计算似乎仍然有些偏差)。您必须考虑页边距,因此也应进行设置。

<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <style>
     @page { margin: .5in; }
     .bg { top: -.5in; right: -.5in; bottom: -.5in; left: -.5in; position: absolute; z-index: -1000; min-width: 8.5in; min-height: 11in; }
  </style>
</head>
<body>
  <img class="bg" src="http://eclecticgeek.com/images/macro/ants.jpg">
</body>
</html>

关于php - 生成带有背景图像且无边距的PDF,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32792412/

10-09 08:53