2017-02-22 10 views
0

私はFPDFを使用しています。私はMultiCell()を使用してテーブルを生成したいので、そのラッププロパティが必要です。試しましたCell()しかし、それは単語の折り返しを読み取ることができません。 MultiCell()プロパティを使用すると、すべての行がテーブルに垂直に表示されます。FPDFマルチセルセット垂直

PDF

私はmulticell()を使用している場合ので、私のPDFデータが縦に表示されます。水平に垂直にする方法を教えてください。

私はコードを試してみました:

require('../fpdf.php'); 

class PDF extends FPDF 
{ 
// Load data 
function LoadData($file) 
{ 
    // Read file lines 
    $lines = file($file); 
    $data = array(); 
    foreach($lines as $line) 
     $data[] = explode(';',trim($line)); 
    return $data; 
} 

// Simple table 
function BasicTable($header, $data, $pdf) 
{ 
    // Header 
    foreach($header as $col) 
     $this->Cell(40, 20, $col, 1, 0, 'C', false); 
    $this->Ln(); 
    // Data 
    foreach($data as $row) 
    { 
     foreach($row as $col) 
      //$word = str_word_count($col); 
      //$this->MultiCell(30, 10,$col, 0, 'J', 0, 1, '', '', true, null, true); 
      //$this->word_wrap($pdf,$col); 
      //$this->cell(40,6,$col,1); 
      $this->MultiCell(40,6,$col,1); 
     $this->Ln(); 
    } 
} 

} 

$pdf = new PDF('P','mm',array(600,600)); 
// Column headings 
$header = array('Waybill', '[email protected]', 'Consignee Name', 'Consignee Pincode', 'Consignee City', 'Weight', 'COD Amount', 'Product', 'Shipping Client', 'Seller Name', 'Seller Pincode', 'Seller City'); 
// Data loading 
$data = $pdf->LoadData('countries.txt'); 
$pdf->SetFont('Arial','',14); 
$pdf->AddPage(); 
$pdf->BasicTable($header,$data, $pdf); 
$pdf->Output(); 

またはどの単語があなたがFPDFスクリプトのページにあるPDF_MC_Tableと呼ばれるクラスを使用することができ、テキスト

答えて

0

をラップするために私を提案してくださいします。

非常に長いPDFレポートのリストにこのクラスを使用しましたが、これはテキストではうまく機能します。データは、$array[$x]ポジションごとにテーブルの1つの行を持つ2次元配列に格納する必要があります。 foreachループを使用すると、$pdf->Row()関数を使用してテーブル行を印刷できます。

ここにいくつかのコード例を示します。

$data[0]['name'] = 'Some string'; 
$data[0]['address'] = 'Address of the person'; 
$data[0]['telephone'] = 'the telephone number'; 

$data[1]['name'] = 'Other Person'; 
$data[1]['address'] = 'Address of the other person'; 
$data[1]['telephone'] = 'Another phone number'; 

$pdf->SetWidths(array(30,60,30)); 

$pdf->Row(array('Name','Address','Telephone')); //Set table header 
foreach ($data as $value) { 
    $pdf->Row(array($value['name'],$value['address'],$value['telephone'])); 
}