php使用tcpdf,通过html生成的pdf文件,合同章有错位?需要怎么解决?
html下的排版正确,如图:
html代码,如图
生成pdf后的文件,如图
$pdf->Image(),计算一下x、y的位置就好,一般能确定图片尺寸,下面这个是我最近使用的时候用上的,可以参考一下
public function createSeal($filePath,$w=20,$h=20,$padding_right=15){ $pic_x = max(0,$this->getPageWidth()-$w-$padding_right); $pic_y = max(0,$this->getY()-20); $this->Image($filePath,$pic_x,$pic_y,$w,$h); }
$pdf->Image()有试过,是可以插入图片的,但是不知道怎么把图片移动至pdf的底部靠右
X:左上角或右上角的横坐标。
Y:左上角或右上角的纵坐标。
x和y参数理解不了 = =!
不知道是什么问题,需要怎么解决?
来源地址:https://blog.csdn.net/han_cui/article/details/130268966