需要将mysql数据库中的图像显示到fpdf
A 将图像保存在 mysql 数据库中作为 bolb,我希望使用 php 将其显示在 fpdf 中。我在执行此操作时遇到问题,因为我对 fpdf 很陌生。我真的需要帮助。谢谢。
A have image save in mysql database as bolb and I wish to display it out in fpdf using php. I'm having problem doing this as I am very new to fpdf. I really need help. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您将需要 FPDF 的此扩展: http://www.fpdf.org/en/ script/script45.php
[更新]
You will need this extension to FPDF: http://www.fpdf.org/en/script/script45.php
[updated]
这是代码
$pdf->Image('http://www.elwebmaster.com/wp-content/uploads/2015/06/PHP-logo.png',30,278,8);
或者如果在您的根目录中$pdf->Image($_SESSION['raiz'].'imagens/tsunami.jpg',150,285,12);
您可以在您的sql 数据库,然后使用
$pdf->Image($_SESSION['raiz'].'imagens/picture.php?id=1',150 ,285,12);
其中 id 是数据库索引和 picture.php 是检索要显示的图像的文件this is the code
$pdf->Image('http://www.elwebmaster.com/wp-content/uploads/2015/06/PHP-logo.png',30,278,8);
or if in your root directory$pdf->Image($_SESSION['raiz'].'imagens/tsunami.jpg',150,285,12);
you could have blob saved images in your sql data base then use
$pdf->Image($_SESSION['raiz'].'imagens/picture.php?id=1',150,285,12);
where id is the database index and picture.php is the file thats retrieve the image that you want to show