我正在为pdf生成创建magento扩展。我需要使用Verdana Bold,Verdana Reg ...字体到我使用Zend_Pdf生成的pdf文件。任何人都可以解释如何使用正确的路径来访问TTF类型的字体。
答案 0 :(得分:1)
lib
文件夹中上传字体的最佳位置,因此在本演示中,我将在名为lib
的{{1}}文件夹中使用create directory并在那里上传我的字体文件
现在在所需的php文件上调用它(例如:在Shipment.php中)并使用它,如下所示
customfonts
这里8是字体大小
答案 1 :(得分:0)
//load font from file system
$font = Zend_Pdf_Font::fontWithPath("/path/to/myfont.ttf");
//add $font to page
$page->setFont($font, $fontSize);
希望这有帮助