I'm building a pdf with libharu, with UTF-8 encoding.

HPDF_UseUTFEncodings(pdf);

NSString *path = [[NSBundle mainBundle] pathForResource: @"DejaVuSans" ofType: @"ttf"]; 
const char *fontname = HPDF_LoadTTFontFromFile(pdf, [path UTF8String], HPDF_TRUE); 

HPDF_Font fontEnUTF  = HPDF_GetFont(pdf, fontname, "UTF-8");

And here's how I write text:

HPDF_Page_SetFontAndSize(page3, fontEnUTF, 10.0);

const char* cString = [[itemsArray objectAtIndex:i] cStringUsingEncoding:NSUTF8StringEncoding];

HPDF_UINT charCount = 0;
HPDF_Page_TextRect(page3, 50.0, K_PORTRAIT_HEIGHT, HPDF_Page_GetWidth(page3)-52, 52.0, cString, HPDF_TALIGN_LEFT, &charCount);

Everything is fine, except that it wrongly encode \n char. See here output: Output

I've tried with different type of Fonts, but the same. If I use normal encoding, no problem, but with UTF-8 encoding, this silly bug is here. Can anybody help me please?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.