3

WriteHTML をマルチセルに配置できますか? どのように?

データベースからHTML出力を取得して表示しましたが、それを2列目に配置したいので(たとえば)、マルチセルに配置しましたが、効果はありません。

以下では動作しません:

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

EDITED:私はWriteHTMLCellを見つけました、使い方は?

誰?

ありがとう!

4

6 に答える 6

4

@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);
}
于 2015-03-26T22:11:02.067 に答える
1

作業を完了するために、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 );
于 2013-03-18T07:55:20.723 に答える
0

マルチセルで 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 を使用するように変更しました。

于 2014-11-08T23:23:46.157 に答える
0
Can WriteHTML placed in Multicell? How?

いいえ.. WriteHTML はデータを pdf ファイルに出力します。何も返しません。ただし、MultiCell 関数には文字列が必要です。

だから、これを試すことができます。WriteHTML 関数を変更して、データの出力を停止し、データを変数にコピーします。次に、MultiCell を使用してその変数を出力します

これが役立つことを願っています.:-)

于 2013-03-18T08:32:17.617 に答える
-2

このコードを試してください:

$pdf->setXY($x_pos,$y_pos);
$pdf->Multicell(70,3.5, $pdf->WriteHTML($html));
于 2013-03-18T07:22:33.833 に答える