我在PoDoFo库中编码波兰字符时遇到问题。
此代码生成单词'Łódź'
的无效编码#include <podofo/podofo.h>
using namespace PoDoFo;
int main(int argc, char *argv[], char *env[]) {
PdfStreamedDocument document("polish.pdf");
PdfPainter painter;
PdfPage* pPage;
pPage = document.CreatePage( PdfPage::CreateStandardPageSize( ePdfPageSize_A4 ) );
painter.SetPage( pPage );
PdfFont* pFont = document.CreateFont("Helvetica");
// PdfFont* pFont = document.CreateFont("Helvetica", new PdfIdentityEncoding(0, 0xffff, true) );
PdfString pString("Polish word: Łódź");
// PdfString pString(reinterpret_cast<const pdf_utf8*>("Polish word: Łódź"));
painter.SetFont( pFont );
painter.DrawText( 100.0, pPage->GetPageSize().GetHeight()-100.0, pString );
painter.FinishPage();
document.Close();
return 0;
}
在输出pdf中有
波兰语单词:ņÃ3dÅo
我尝试更改源字符串的编码(使用示例代码中的注释行),但都失败了。
有人可以解释一下如何使用PoDoFo库创建包含非ascii字符的PDF文档吗?
答案 0 :(得分:1)
#include <podofo/podofo.h>
using namespace PoDoFo;
int main(int argc, char *argv[], char *env[]) {
PdfStreamedDocument document("polish.pdf");
PdfPainter painter;
PdfPage* pPage;
pPage = document.CreatePage( PdfPage::CreateStandardPageSize( ePdfPageSize_A4 ) );
painter.SetPage( pPage );
const PdfEncoding* pEncoding = new PdfIdentityEncoding(); // required for UTF8 characters
PdfFont *pFont = document.CreateFont("LiberationSerif", false, false, pEncoding ); // LiberationSerif has polish characters
PdfString pString(reinterpret_cast<const pdf_utf8*>("Polish word: Łódź")); // Need to cast input string into pdf_utf8
painter.SetFont( pFont );
painter.DrawText( 100.0, pPage->GetPageSize().GetHeight()-100.0, pString );
painter.FinishPage();
document.Close();
return 0;
}
这段代码对我有用。
答案 1 :(得分:0)
使用PdfIdentityEncoding
可以修复波兰语字符的显示,但是使用这种编码字符间距是错误的。
答案 2 :(得分:0)
在我看来,与西班牙波浪号一起使用时:
PdfFont * pFont = document.CreateFont(“ Arial”); PdfString pString(reinterpret_cast(“mámamía”); ...
否则,特殊字符可能会打印错误。