簡體   English   中英

Zend_Pdf將Verdana字體添加到PDF

[英]Zend_Pdf adding Verdana font to PDF

我正在創建magento擴展以生成pdf。 我需要使用Verdana Bold,Verdana Reg ...使用Zend_Pdf生成的pdf文件字體。 任何人都可以解釋如何使用正確的路徑來訪問TTF類型的字體。

首先,您應該將所需的字體文件上傳到目錄的最佳位置,以便在lib文件夾中上傳字體,因此在本演示中,我將使用lib文件夾中的create目錄(稱為customfonts並在那里上傳我的字體文件

現在,在所需的php文件(例如Shipment.php內)中調用它,並按如下所示使用它

$chevinFontBold = Zend_Pdf_Font::fontWithPath(Mage::getBaseDir() . '/lib/customfonts/chevin-bold.ttf');

$page->setFont($chevinFontBold, 8);

這是8的字體大小

//load font from file system

    $font = Zend_Pdf_Font::fontWithPath("/path/to/myfont.ttf");

    //add $font to page

    $page->setFont($font, $fontSize);

希望這可以幫助

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM