0
我能夠單頁.tif圖像成功加載到使用ZendFramework一個PDF,這裏是代碼:負荷多頁.tif文件轉換成PDF使用Zend Framework
$pdf = new Zend_Pdf();
$page = new Zend_Pdf_Page(Zend_Pdf_Page::SIZE_LETTER);
$image = Zend_Pdf_Image::imageWithPath('/tmp/test.tif');
$pageHeight = $page->getHeight();
$pageWidth = $page->getWidth();
$page->drawImage($image, 0, 0, $pageWidth, $pageHeight);
$pdf->pages[] = page;
我多頁.tif文件,是否有一種方法可以只使用ZendFramework庫將多頁文件加載到單個PDF中?
謝謝。
謝謝!利比提夫伎倆,感謝幫助。 – IFimbres 2011-05-05 19:36:18