用php生成pdf檔案

2021-07-10 06:52:23 字數 1411 閱讀 8041

1、使用php生成pdf檔案

require_once('tcpdf.php'); 

//例項化

$pdf = new tcpdf('p', 'mm', 'a4', true, 'utf-8', false); 

// 設定文件資訊

$pdf->setcreator('helloweba'); 

$pdf->setauthor('yueguangguang'); 

$pdf->settitle('welcome to helloweba.com!'); 

$pdf->setsubject('tcpdf tutorial'); 

$pdf->setkeywords('tcpdf, pdf, php'); 

// 設定頁首和頁尾資訊

$pdf->setheaderdata('logo.png', 30, 'helloweba.com', '致力於web前端技術在中國的應用',  

array(0,64,255), array(0,64,128)); 

$pdf->setfooterdata(array(0,64,0), array(0,64,128)); 

// 設定頁首和頁尾字型

$pdf->setheaderfont(array('stsongstdlight', '', '10')); 

$pdf->setfooterfont(array('helvetica', '', '8')); 

// 設定預設等寬字型

$pdf->setdefaultmonospacedfont('courier'); 

// 設定間距

$pdf->setmargins(15, 27, 15); 

$pdf->setheadermargin(5); 

$pdf->setfootermargin(10); 

// 設定分頁

$pdf->setautopagebreak(true, 25); 

// set image scale factor

$pdf->setimagescale(1.25); 

// set default font subsetting mode

$pdf->setfontsubsetting(true); 

//設定字型

$pdf->setfont('stsongstdlight', '', 14); 

$pdf->addpage(); 

$str1 = '歡迎來到helloweba.com'; 

$pdf->write(0,$

str1,'', 0, 'l', true, 0, false, false, 0); 

//輸出pdf

$pdf->output('t.pdf', 'i');

2、中文手冊:

用PHP生成PDF檔案及Label

最近在做的drupal平台的volunteer management system有個需求,是生成volunteer的named label,來列印成生日卡片。因為使用者在named label上面顯示的資訊不確定,所以最好利用現有的元件 如圖 根據搜尋結果來生成卡片。最初有想過直接生成網頁,並且有...

用asp生成PDF檔案

首先必須在定義欄位的工作站 不是伺服器 上安裝有adobe完全版。這個是乙個指向adobe forms acrobat toolkit的鏈結,由此開始一切就容易了。http partners.adobe.asn developer acrosdk forms.html 並把它解壓縮到指定目錄。當你進...

用asp生成PDF檔案

adobe pdf格式已經變成很多機構和公司進行跨平台製表的通用 格式。儘管我不是這個產品的狂熱痴迷者,卻不得不接受這樣乙個事實 用這個格式產生乙個協定可能會比用word還要好。我試了各種辦法,但是看來都有乙個很大的限制 如果我能快速產生它,它就只能是乙個html形式的衍生物,在列印時就會變得面目全...