gpt4 book ai didi

IOS PDF 不打印文本

转载 作者:行者123 更新时间:2023-11-29 01:05:59 25 4
gpt4 key购买 nike

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

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

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(从预览)打印机预览出现并显示带有文本和图形的页面但是当我按下打印所有这些印在纸上的是图形不是文字

我尝试了不同的方式来绘制文本,但它仍然无法打印出来

有什么想法吗?

非常感谢您的帮助

标记

最佳答案

明智的做法是在提出让你看起来像个白痴的问题之前检查你的打印机

对不起

标记

关于IOS PDF 不打印文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36361160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com