我在使用 Zend_Pdf 将 UTF-8 字符输出到 pdf 文件时遇到问题。这是我的代码:

// Load Zend_Pdf class
include 'Zend/Pdf.php';

// Create new PDF
$pdf = new Zend_Pdf();

// Set font
$page->setFont(Zend_Pdf_Font::fontWithPath('fonts/times.ttf'), 12);

// Draw text
$page->drawText('Janko Hraško', 200, 643, 'UTF-8');

字体 I§m 加载支持 UTF-8 字符。但我收到此错误”

最佳答案

使用 Helvetica 字体,您的代码可以正常工作!

关于zend-framework - Zend_Pdf UTF-8 字符?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3068370/

10-16 06:42