【问题标题】:FPDF - WriteHTML in Multicell?FPDF - 多单元格中的 WriteHTML?
【发布时间】:2013-03-06 11:27:01
【问题描述】:

WriteHTML 可以放在 Multicell 中吗?怎么样?

我从数据库中检索并显示 HTML 输出,但想将其放置在第二列(比方说),所以我将它放在 Multicell 中但没有效果。

以下无效:

$pdf->Multicell(70,3.5, $pdf->WriteHTML($html));

已编辑:我找到了 WriteHTMLCell,如何使用?

有人吗?

谢谢!

【问题讨论】:

  • 一个解决方案可能是切换到功能强大的库TCPDF

标签: php html pdf fpdf


【解决方案1】:

试试这个代码:

$pdf->setXY($x_pos,$y_pos);
$pdf->Multicell(70,3.5, $pdf->WriteHTML($html));

【讨论】:

  • x_pos 和 y_pos - 是您需要开始输出文本的 X 和 Y 轴位置。
  • 我明白了,不需要像x_pos = 70那样说明位置吗?
【解决方案2】:

我修改了 WriteHTML 脚本以完成工作。

这是 fpdf.org 中为 WriteHTML 提供的脚本的修改形式

<?php
require('fpdf.php');
//function hex2dec
//returns an associative array (keys: R,G,B) from
//a hex html code (e.g. #3FE5AA)
function hex2dec($couleur = "#000000"){
    $R = substr($couleur, 1, 2);
    $rouge = hexdec($R);
    $V = substr($couleur, 3, 2);
    $vert = hexdec($V);
    $B = substr($couleur, 5, 2);
    $bleu = hexdec($B);
    $tbl_couleur = array();
    $tbl_couleur['R']=$rouge;
    $tbl_couleur['V']=$vert;
    $tbl_couleur['B']=$bleu;
    return $tbl_couleur;
}

//conversion pixel -> millimeter at 72 dpi
function px2mm($px){
    return $px*25.4/72;
}

function txtentities($html){
    $trans = get_html_translation_table(HTML_ENTITIES);
    $trans = array_flip($trans);
    return strtr($html, $trans);
}
////////////////////////////////////

class PDF_HTML extends FPDF
{
//variables of html parser
var $B;
var $I;
var $U;
var $HREF;
var $fontList;
var $issetfont;
var $issetcolor;

function PDF_HTML($orientation='P', $unit='mm', $format='A4')
{
    //Call parent constructor
    $this->FPDF($orientation,$unit,$format);
    //Initialization
    $this->B=0;
    $this->I=0;
    $this->U=0;
    $this->HREF='';
    $this->fontlist=array('arial', 'times', 'courier', 'helvetica', 'symbol');
    $this->issetfont=false;
    $this->issetcolor=false;
}

function WriteHTML($html,&$parsed)
{
    //HTML parser
    $html=strip_tags($html,"<b><u><i><a><img><p><br><strong><em><font><tr><blockquote>"); //supprime tous les tags sauf ceux reconnus
    $html=str_replace("\n",' ',$html); //remplace retour à la ligne par un espace
    $a=preg_split('/<(.*)>/U',$html,-1,PREG_SPLIT_DELIM_CAPTURE); //éclate la chaîne avec les balises
    foreach($a as $i=>$e)
    {
        if($i%2==0)
        {
            //Text
            if($this->HREF)
                $this->PutLink($this->HREF,$e);
            else
                $parsed.=stripslashes(txtentities($e));
        }
        else
        {
            //Tag
            if($e[0]=='/')
                $this->CloseTag(strtoupper(substr($e,1)));
            else
            {
                //Extract attributes
                $a2=explode(' ',$e);
                $tag=strtoupper(array_shift($a2));
                $attr=array();
                foreach($a2 as $v)
                {
                    if(preg_match('/([^=]*)=["\']?([^"\']*)/',$v,$a3))
                        $attr[strtoupper($a3[1])]=$a3[2];
                }
                $this->OpenTag($tag,$attr);
            }
        }
    }
}

function OpenTag($tag, $attr)
{
    //Opening tag
    switch($tag){
        case 'STRONG':
            $this->SetStyle('B',true);
            break;
        case 'EM':
            $this->SetStyle('I',true);
            break;
        case 'B':
        case 'I':
        case 'U':
            $this->SetStyle($tag,true);
            break;
        case 'A':
            $this->HREF=$attr['HREF'];
            break;
        case 'IMG':
            if(isset($attr['SRC']) && (isset($attr['WIDTH']) || isset($attr['HEIGHT']))) {
                if(!isset($attr['WIDTH']))
                    $attr['WIDTH'] = 0;
                if(!isset($attr['HEIGHT']))
                    $attr['HEIGHT'] = 0;
                $this->Image($attr['SRC'], $this->GetX(), $this->GetY(), px2mm($attr['WIDTH']), px2mm($attr['HEIGHT']));
            }
            break;
        case 'TR':
        case 'BLOCKQUOTE':
        case 'BR':
            $this->Ln(5);
            break;
        case 'P':
            $this->Ln(10);
            break;
        case 'FONT':
            if (isset($attr['COLOR']) && $attr['COLOR']!='') {
                $coul=hex2dec($attr['COLOR']);
                $this->SetTextColor($coul['R'],$coul['V'],$coul['B']);
                $this->issetcolor=true;
            }
            if (isset($attr['FACE']) && in_array(strtolower($attr['FACE']), $this->fontlist)) {
                $this->SetFont(strtolower($attr['FACE']));
                $this->issetfont=true;
            }
            break;
    }
}

function CloseTag($tag)
{
    //Closing tag
    if($tag=='STRONG')
        $tag='B';
    if($tag=='EM')
        $tag='I';
    if($tag=='B' || $tag=='I' || $tag=='U')
        $this->SetStyle($tag,false);
    if($tag=='A')
        $this->HREF='';
    if($tag=='FONT'){
        if ($this->issetcolor==true) {
            $this->SetTextColor(0);
        }
        if ($this->issetfont) {
            $this->SetFont('arial');
            $this->issetfont=false;
        }
    }
}

function SetStyle($tag, $enable)
{
    //Modify style and select corresponding font
    $this->$tag+=($enable ? 1 : -1);
    $style='';
    foreach(array('B','I','U') as $s)
    {
        if($this->$s>0)
            $style.=$s;
    }
    $this->SetFont('',$style);
}

function PutLink($URL, $txt)
{
    //Put a hyperlink
    $this->SetTextColor(0,0,255);
    $this->SetStyle('U',true);
    $this->Write(5,$txt,$URL);
    $this->SetStyle('U',false);
    $this->SetTextColor(0);
}

}//end of class
?>

将以下代码复制到一个文件中,例如 FILE_NAME 并使用 require("FILE_NAME") 将此文件包含到您的脚本中。 完成后,调用函数如下

$pdf->WriteHTML($html,$parsed );
$pdf->Multicell(70,3.5, $parsed );

【讨论】:

  • 我尝试实施您的解决方案,效果很好,但有一点问题。我在像“title : title value”这样的句子中放松了像“bold”这样的内联样式
  • @funtime 当我写 $this->WriteHTML("Dummy text google.com'>http://www.google.com</…); 它使字符串为google.com Dummy text
【解决方案3】:
Can WriteHTML placed in Multicell? How?

NO.. WriteHTML 将数据输出到 pdf 文件。它什么也不返回。但是 MultiCell 函数需要一个字符串。

所以你可以试试这个。 修改WriteHTML函数,停止输出数据,将数据复制到变量中。 然后使用 MultiCell 输出该变量

希望这会有所帮助。:-)

【讨论】:

    【解决方案4】:

    我发现在多单元格中使用 writeHTML 不是正确的解决方案。 Multicell 需要知道如何设置标签的样式。 WriteHTML 无法完成这项工作,因为它在解释标记实体时设置了样式信息,而在调用原始多单元格函数时,它什么也不做。

    我找到了一个有效的方法:使用https://github.com/marxjohnson/moodle-local_progressreview/blob/master/fpdf/class.multicelltag.php中的class.multicelltag.php

    注意:class.multicelltag 在 gnu 许可下获得许可,可免费用于非商业用途。如果您需要商业许可证,请参阅http://www.interpid.eu/fpdf-components

    如果您将它与另一个 fpdf 扩展名(例如 PDF_Label)一起使用,下面是一个示例:

    require_once("class.multicelltag.php"); 
    // note: you will also need class.string_tags.php for an include to class.multicelltag.php
    // note: class.multicelltag.php already includes fpdf.php
    class PDF_Label extends FPDF_MULTICELLTAG {
        ...
        // define what the tag will do with style information for the font family
        // this defines bold html tag to use current font, "B" style, current character size incremented by 1, and black for the color
        $this->SetStyle2('b',$this->_Font_Name,"B",$this->_Char_Size+1,"0,0,0");
    
        function Add_PDF_Label($texte,$align,$border,$imageFile='',$imageWidth=0,$imageHeight=0) {
            ...
            $this->ext_MultiCellTag($this->_Width, $this->_Line_Height, $texte,$border,$align,$fill);
    
        }
    }
    

    我注意到 class.multicelltag.php 函数 ApplyStyle 尝试使用不属于 fpdf 核心字体的 DejaVu 字体,因此我将其更改为使用 helvetica。

    【讨论】:

      【解决方案5】:

      将此方法添加到您的 WriteHTML 类中

      function WriteHtmlCell($cellWidth, $html){        
          $rm = $this->rMargin;
          $this->SetRightMargin($this->w - $this->GetX() - $cellWidth);
          $this->WriteHtml($html);
          $this->SetRightMargin($rm);
      }
      

      那就叫它吧

      $pdf->WriteHtmlCell(70, $html);
      

      【讨论】:

      • 在编写 html 单元格时触发自动分页时,更改右边距会导致不良行为。
      【解决方案6】:

      @Khaled 解决方案效果很好,如果您想保留左侧位置,请尝试以下操作:

      function WriteHtmlCell($cellWidth, $html){
          $rm = $this->rMargin;
          $lm = $this->lMargin;
          $this->SetRightMargin($this->w - $this->GetX() - $cellWidth);
      
          $this->SetLeftMargin($this->GetX());
      
          $this->WriteHtml($html);
          $this->SetRightMargin($rm);
          $this->SetLeftMargin($lm);
      }
      

      【讨论】:

      • 在编写 html 单元格时触发自动分页符时,更改边距会导致不良行为。
      猜你喜欢
      • 1970-01-01
      • 2012-03-17
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-05-08
      • 1970-01-01
      • 1970-01-01
      • 2018-04-27
      相关资源
      最近更新 更多