gpt4 book ai didi

php - 使用 FPDF 自动调整单元格宽度和文本宽度

转载 作者:行者123 更新时间:2023-11-29 03:22:17 26 4
gpt4 key购买 nike

我开始使用 FPDF 从 Mysql 导出 pdf。现在我可以导出 pdf 了。我引用了 this linkthis link , 但我仍然无法更改单元格宽度和文本宽度。谁能提供任何建议?非常感谢。

<?php
require('mysql_table.php');

class PDF extends PDF_MySQL_Table
{
function Header()
{
//Title
$this->SetFont('Arial','',18);
$this->Cell(0,6,'Test',0,1,'C');
$this->Ln(10);
//Ensure table header is output
parent::Header();
}
}

mysql_connect('localhost','root','');
mysql_select_db('test');
$query = "SELECT * FROM test";
$result = mysql_query($query) or die(mysql_error());
$rowCount = 2;
while($row = mysql_fetch_array($result)){
$thisid = $row['ID'];
$fileName =$row['name'];
$filepath = $row['path'];
$date = $row['date'];
$rowCount++;
}
$pdf=new PDF('P','mm',array(1000,1500));
$pdf->AddPage();
$pdf->Table('select * from test');
$pdf->AddPage();
$pdf->SetFont('Arial','',14);
$pdf->Cell('','',$thisid,1);
$pdf->Cell('','',$fileName,1);
$pdf->Cell('','','','','','',false,$filepath);
$pdf->Cell('','',$date);
$pdf->Output();
?>

最佳答案

检查下面的答案来设置单元格宽度 Inserting an image with PHP and FPDF, failed to load big image

根据您的问题,您可能需要像下面那样将宽度和高度传递给 cell() 函数

$pdf->cell(1000,1000,'',$pdf->Image($image,10,10,235,$height*18/100),'PNG');

这是调整单元格的大小并加载 img 到同一个

关于php - 使用 FPDF 自动调整单元格宽度和文本宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42254935/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com