如何使图像在标题中居中(TCPDF)
我有下面的代码,我通过眼睛猜测页面的中心是什么。我如何以正确的方式使图像居中?
class MYPDF extends TCPDF {
//Page header
public function Header() {
// Logo
$image_file = K_PATH_IMAGES.'logo.png';
$this->Image($image_file, 90, 5, 40, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
$style = array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(39, 137, 199));
$this->Line($this->getPageWidth()-PDF_MARGIN_RIGHT, 25, PDF_MARGIN_LEFT, 25, $style);
}
}
谢谢
I have the code below and I am guessing what is the center of the page by eye. How would I center the image the proper way?
class MYPDF extends TCPDF {
//Page header
public function Header() {
// Logo
$image_file = K_PATH_IMAGES.'logo.png';
$this->Image($image_file, 90, 5, 40, '', 'PNG', '', 'T', false, 300, '', false, false, 0, false, false, false);
$style = array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(39, 137, 199));
$this->Line($this->getPageWidth()-PDF_MARGIN_RIGHT, 25, PDF_MARGIN_LEFT, 25, $style);
}
}
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您在
Image 中有一个参数
$palign
()图像:
You have a param
$palign
inImage()
With your image :
这应该可行:
您可以在 API 中找到更多信息:http://www. tcpdf.org/doc/code/classTCPDF.html#a714c2bee7d6b39d4d6d304540c761352
This should work:
You can find more information in the API: http://www.tcpdf.org/doc/code/classTCPDF.html#a714c2bee7d6b39d4d6d304540c761352
在 TCPDF 中,您可以使用 HTML 标签 + 样式来使文本/图像居中。
In TCPDF, you can use a HTML tag + Style in order to center a text/image.
您可以尝试使用TCPDF中的HTML功能。非常简单:您像往常一样创建 HTML,然后将其转换为 PDF。
You can try to use the HTML function in TCPDF. It’s very simple: you create HTML like usual, and convert it into PDF.