IOS PDF不打印文本

时间:2016-04-01 16:19:47

标签: ios objective-c pdf text draw

伙计我有一个非常奇怪的人

我使用以下代码在我的文档目录中创建一个pdf它有一行文本和一个图像

NSString *documentsDirectory =     NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *filename = @"test.pdf";
NSURL *fileURL = [NSURL fileURLWithPathComponents:[NSArray arrayWithObjects:documentsDirectory, filename, nil]];

// Create PDF context
CGContextRef pdfContext = CGPDFContextCreateWithURL((CFURLRef)fileURL, NULL, NULL);
CGPDFContextBeginPage(pdfContext, NULL);
UIGraphicsPushContext(pdfContext);

// Flip coordinate system
CGRect bounds = CGContextGetClipBoundingBox(pdfContext);
CGContextScaleCTM(pdfContext, 1.0, -1.0);
CGContextTranslateCTM(pdfContext, 0.0, -bounds.size.height);

// Drawing commands
[@"Hello World!" drawAtPoint:CGPointMake(100, 100) withFont:[UIFont boldSystemFontOfSize:72.0f]];


// DRAW IMAGE
UIImage *anImage1 = [UIImage imageNamed:@"sdxlogo.png"];
[self myImage:anImage1 :400 :50 :125 :41];

// Clean up
UIGraphicsPopContext();
CGPDFContextEndPage(pdfContext);
CGPDFContextClose(pdfContext);

Pdf创建很好,当我在我的Mac上查看它看起来很完美但是当我去打印pdf(来自预览)时,打印机预览出现并显示带有文本和图形的页面但是当我按下打印时在纸上打印的是图形而不是文本

我尝试了不同的绘制文字的方法,但它仍然无法实际打印

任何想法?

非常感谢您的帮助

标记

1 个答案:

答案 0 :(得分:1)

Word to the wise check your printer before asking questions that make you look an idiot

SORRY

Mark