FPDF:使用 MultiCell 时,在存在分页符时插入行无法正常工作
FPDF: When using MultiCell, inserting a Row does not work correctly when there's a page break
我有一个 PHP 代码,它使用 FPDF 生成 PDF 格式的发票。我正在尝试使用 FOR
循环在详细信息中插入 100 行。由于我使用的是 MultiCell
我需要知道在插入行之前是否有分页符。
这是我的代码:
//Detalle de Factura
$pdf->Cell(20,5,utf8_decode('Código'),0,0,'L',0);
$pdf->Cell(60,5,utf8_decode('Descripción'),0,0,'L',0);
$pdf->Cell(20,5,utf8_decode('Cantidad'),0,0,'L',0);
$pdf->Cell(30,5,utf8_decode('Precio Unidad'),0,0,'L',0);
$pdf->Cell(20,5,utf8_decode('Porc. IV'),0,0,'L',0);
$pdf->Cell(30,5,utf8_decode('Impuesto'),0,0,'L',0);
$pdf->Cell(30,5,utf8_decode('Total'),0,0,'L',0);
$pdf->Ln();
$pdf->SetFont('Arial','',8);
for($i=0; $i<=100; $i++)
{
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(20,5,utf8_decode('Codigo 123467890'),0);//Celda con varias lineas
$pdf->SetXY($x + 20, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(60,5,utf8_decode('ddddddddddddddddddddddddddddddddddddddd'),0);//Celda con varias lineas
$pdf->SetXY($x + 60, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(20,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->SetXY($x + 20, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(30,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->SetXY($x + 30, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(20,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->SetXY($x + 20, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(30,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->SetXY($x + 30, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(30,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->Ln();
}
因为我使用的是 MultiCell
,所以我需要在插入新行之前检查是否有分页符,如果有,则在下一页插入该行。我找到了搜索互联网的解决方案。这是帮助我的link:
来源
require('fpdf.php');
class PDF_MC_Table extends FPDF
{
var $widths;
var $aligns;
function SetWidths($w)
{
//Set the array of column widths
$this->widths=$w;
}
function SetAligns($a)
{
//Set the array of column alignments
$this->aligns=$a;
}
function Row($data)
{
//Calculate the height of the row
$nb=0;
for($i=0;$i<count($data);$i++)
$nb=max($nb,$this->NbLines($this->widths[$i],$data[$i]));
$h=5*$nb;
//Issue a page break first if needed
$this->CheckPageBreak($h);
//Draw the cells of the row
for($i=0;$i<count($data);$i++)
{
$w=$this->widths[$i];
$a=isset($this->aligns[$i]) ? $this->aligns[$i] : 'L';
//Save the current position
$x=$this->GetX();
$y=$this->GetY();
//Draw the border
$this->Rect($x,$y,$w,$h);
//Print the text
$this->MultiCell($w,5,$data[$i],0,$a);
//Put the position to the right of the cell
$this->SetXY($x+$w,$y);
}
//Go to the next line
$this->Ln($h);
}
function CheckPageBreak($h)
{
//If the height h would cause an overflow, add a new page immediately
if($this->GetY()+$h>$this->PageBreakTrigger)
$this->AddPage($this->CurOrientation);
}
function NbLines($w,$txt)
{
//Computes the number of lines a MultiCell of width w will take
$cw=&$this->CurrentFont['cw'];
if($w==0)
$w=$this->w-$this->rMargin-$this->x;
$wmax=($w-2*$this->cMargin)*1000/$this->FontSize;
$s=str_replace("\r",'',$txt);
$nb=strlen($s);
if($nb>0 and $s[$nb-1]=="\n")
$nb--;
$sep=-1;
$i=0;
$j=0;
$l=0;
$nl=1;
while($i<$nb)
{
$c=$s[$i];
if($c=="\n")
{
$i++;
$sep=-1;
$j=$i;
$l=0;
$nl++;
continue;
}
if($c==' ')
$sep=$i;
$l+=$cw[$c];
if($l>$wmax)
{
if($sep==-1)
{
if($i==$j)
$i++;
}
else
$i=$sep+1;
$sep=-1;
$j=$i;
$l=0;
$nl++;
}
else
$i++;
}
return $nl;
}
}
例子
require('mc_table.php');
function GenerateWord()
{
//Get a random word
$nb=rand(3,10);
$w='';
for($i=1;$i<=$nb;$i++)
$w.=chr(rand(ord('a'),ord('z')));
return $w;
}
function GenerateSentence()
{
//Get a random sentence
$nb=rand(1,10);
$s='';
for($i=1;$i<=$nb;$i++)
$s.=GenerateWord().' ';
return substr($s,0,-1);
}
$pdf=new PDF_MC_Table();
$pdf->AddPage();
$pdf->SetFont('Arial','',14);
//Table with 20 rows and 4 columns
$pdf->SetWidths(array(30,50,30,40));
for($i=0;$i<20;$i++)
$pdf->Row(array(GenerateSentence(),GenerateSentence(),GenerateSentence(),GenerateSentence()));
$pdf->Output();
我有一个 PHP 代码,它使用 FPDF 生成 PDF 格式的发票。我正在尝试使用 FOR
循环在详细信息中插入 100 行。由于我使用的是 MultiCell
我需要知道在插入行之前是否有分页符。
这是我的代码:
//Detalle de Factura
$pdf->Cell(20,5,utf8_decode('Código'),0,0,'L',0);
$pdf->Cell(60,5,utf8_decode('Descripción'),0,0,'L',0);
$pdf->Cell(20,5,utf8_decode('Cantidad'),0,0,'L',0);
$pdf->Cell(30,5,utf8_decode('Precio Unidad'),0,0,'L',0);
$pdf->Cell(20,5,utf8_decode('Porc. IV'),0,0,'L',0);
$pdf->Cell(30,5,utf8_decode('Impuesto'),0,0,'L',0);
$pdf->Cell(30,5,utf8_decode('Total'),0,0,'L',0);
$pdf->Ln();
$pdf->SetFont('Arial','',8);
for($i=0; $i<=100; $i++)
{
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(20,5,utf8_decode('Codigo 123467890'),0);//Celda con varias lineas
$pdf->SetXY($x + 20, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(60,5,utf8_decode('ddddddddddddddddddddddddddddddddddddddd'),0);//Celda con varias lineas
$pdf->SetXY($x + 60, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(20,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->SetXY($x + 20, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(30,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->SetXY($x + 30, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(20,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->SetXY($x + 20, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(30,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->SetXY($x + 30, $y);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->MultiCell(30,5,utf8_decode('5000000000'),0);//Celda con varias lineas
$pdf->Ln();
}
因为我使用的是 MultiCell
,所以我需要在插入新行之前检查是否有分页符,如果有,则在下一页插入该行。我找到了搜索互联网的解决方案。这是帮助我的link:
来源
require('fpdf.php');
class PDF_MC_Table extends FPDF
{
var $widths;
var $aligns;
function SetWidths($w)
{
//Set the array of column widths
$this->widths=$w;
}
function SetAligns($a)
{
//Set the array of column alignments
$this->aligns=$a;
}
function Row($data)
{
//Calculate the height of the row
$nb=0;
for($i=0;$i<count($data);$i++)
$nb=max($nb,$this->NbLines($this->widths[$i],$data[$i]));
$h=5*$nb;
//Issue a page break first if needed
$this->CheckPageBreak($h);
//Draw the cells of the row
for($i=0;$i<count($data);$i++)
{
$w=$this->widths[$i];
$a=isset($this->aligns[$i]) ? $this->aligns[$i] : 'L';
//Save the current position
$x=$this->GetX();
$y=$this->GetY();
//Draw the border
$this->Rect($x,$y,$w,$h);
//Print the text
$this->MultiCell($w,5,$data[$i],0,$a);
//Put the position to the right of the cell
$this->SetXY($x+$w,$y);
}
//Go to the next line
$this->Ln($h);
}
function CheckPageBreak($h)
{
//If the height h would cause an overflow, add a new page immediately
if($this->GetY()+$h>$this->PageBreakTrigger)
$this->AddPage($this->CurOrientation);
}
function NbLines($w,$txt)
{
//Computes the number of lines a MultiCell of width w will take
$cw=&$this->CurrentFont['cw'];
if($w==0)
$w=$this->w-$this->rMargin-$this->x;
$wmax=($w-2*$this->cMargin)*1000/$this->FontSize;
$s=str_replace("\r",'',$txt);
$nb=strlen($s);
if($nb>0 and $s[$nb-1]=="\n")
$nb--;
$sep=-1;
$i=0;
$j=0;
$l=0;
$nl=1;
while($i<$nb)
{
$c=$s[$i];
if($c=="\n")
{
$i++;
$sep=-1;
$j=$i;
$l=0;
$nl++;
continue;
}
if($c==' ')
$sep=$i;
$l+=$cw[$c];
if($l>$wmax)
{
if($sep==-1)
{
if($i==$j)
$i++;
}
else
$i=$sep+1;
$sep=-1;
$j=$i;
$l=0;
$nl++;
}
else
$i++;
}
return $nl;
}
}
例子
require('mc_table.php');
function GenerateWord()
{
//Get a random word
$nb=rand(3,10);
$w='';
for($i=1;$i<=$nb;$i++)
$w.=chr(rand(ord('a'),ord('z')));
return $w;
}
function GenerateSentence()
{
//Get a random sentence
$nb=rand(1,10);
$s='';
for($i=1;$i<=$nb;$i++)
$s.=GenerateWord().' ';
return substr($s,0,-1);
}
$pdf=new PDF_MC_Table();
$pdf->AddPage();
$pdf->SetFont('Arial','',14);
//Table with 20 rows and 4 columns
$pdf->SetWidths(array(30,50,30,40));
for($i=0;$i<20;$i++)
$pdf->Row(array(GenerateSentence(),GenerateSentence(),GenerateSentence(),GenerateSentence()));
$pdf->Output();