我想在PDF页面上插入文字。我累了这个
NSString *str = @"יככעימבבגיננימ"; //hebrew characters
const char *cstr = [str UTF8String];
//在pdf页面上绘制文字
CGContextShowTextAtPoint(PDFPagecontext, 100, 100), cstr,strlen(cstr));
但是在Pdf页面上它看起来像是其他东西而不是我试图插入的东西。如果特定文本包含任何希伯来文本,任何人都可以告诉我插入文本的正确方法。
谢谢,
loganathan
答案 0 :(得分:0)
尝试使用NSString Additions
CGContextSetTextDrawingMode (ctx, kCGTextFill); //ctx is CGContextRef
UIGraphicsPushContext(ctx);
[str drawAtPoint:CGPointMake(100,100) withFont:[UIFont fontWithName:@"Times New Roman" size:10]]
UIGraphicsPopContext();
它对我有用。