我是 PHP 新手,我一直在尝试使用数据库中的图像创建 PDF 文件。我看到的所有教程都只将图像放在标题中(而不是从数据库中),并且只从数据库中提取文本以放入PDF.我正在使用 FPDF 创建我的 PDF 文件。任何指导或帮助实现这一点将不胜感激。
问问题
4128 次
1 回答
1
假设您有一个名为 的表images
,其中图像 URL 存储在 列下url
。您可以使用 FPDF 和 MySQL 适配器从所有图像中构建 PDF,如下所示:
require 'fpdf/fpdf.php';
// DB parameters
$host = "localhost";
$user = "username";
$pass = "password";
$db = "db";
// Create fpdf object
$pdf = new FPDF('P', 'pt', 'Letter');
// Add a new page to the document
$pdf->addPage();
// Try to connect to DB
$r = mysql_connect($host, $user, $pass);
if (!$r) {
echo "Could not connect to server\n";
trigger_error(mysql_error(), E_USER_ERROR);
} else {
echo "Connection established\n";
}
// Try to select the database
$r2 = mysql_select_db($db);
if (!$r2) {
echo "Cannot select database\n";
trigger_error(mysql_error(), E_USER_ERROR);
} else {
echo "Database selected\n";
}
// Try to execute the query
$query = "SELECT * FROM images";
$rs = mysql_query($query);
if (!$rs) {
echo "Could not execute query: $query";
trigger_error(mysql_error(), E_USER_ERROR);
} else {
echo "Query: $query executed\n";
}
while ($row = mysql_fetch_assoc($rs)) {
// Get the image from each row
$url = $row['url'];
// Place the image in the pdf document
$pdf->Image($url);
}
// Close the db connection
mysql_close();
// Close the document and save to the filesystem with the name images.pdf
$pdf->Output('images.pdf','F');
参考
于 2013-07-24T06:40:51.230 回答