PHP到fpdf方向问题

时间:2014-12-31 06:04:41

标签: php fpdf

我正在尝试将fpdf方向设置为横向模式。

function PDF($orientation='L',$unit='pt',$format='A4') 
{
    //Call parent constructor
    $this->FPDF($orientation,$unit,$format);
    //Initialization
    $this->B=0;
    $this->I=0;
    $this->U=0;
    $this->HREF='';
}

$pdf=new FPDF();
$pdf->SetTitle('HariKrishnan'); //change the title of the pdf here
$pdf->AddPage();
//Fields Name position
$Y_Fields_Name_position = 35;
//Table position, under Fields Name
$Y_Table_Position = 42;
  //To make the contents bold, use B , '' means regular font here
$ypos=0;

//Image(string file [, float x [, float y [, float w [, float h [, string type [, mixed link]]]]]])
$pdf->Image('images/logo.jpg',10,10,'42','15','JPEG','');
$pdf->Image('images/iia.jpg',10,40,'240','90','JPEG','');  

但是pdf没有以横向模式显示,只显示纵向模式。

如何让它成为风景。

请帮忙。

1 个答案:

答案 0 :(得分:1)

这可能对你有用。

class PDF extends FPDF {

    function __construct($orientation='L',$unit='pt',$format='A4') {
         parent::_construct();
    }
}

并使用如下:

$pdf = new PDF();
$pdf->SetTitle('HariKrishnan'); //change the title of the pdf here
$pdf->AddPage();

---- 
// Rest Codes