gpt4 book ai didi

ios - drawInRect 不适用于 PDF

转载 作者:行者123 更新时间:2023-11-29 12:10:29 27 4
gpt4 key购买 nike

我正在更新一个旧应用程序,但我无法使 drawInRect 在 PDF 上下文中工作。

我将已弃用的函数 CGContextShowTextAtPoint 替换为 CGContextShowTextAtPoint(请参阅下面的代码),但它不会写入任何文本。

我哪里错了?

这是我的代码:

-(NSMutableData *) writeToPDF {

CGRect pageRect;

pageRect = CGRectMake(0.0f, 0.0f, 612, 850);

NSMutableData *pdfData = [[NSMutableData alloc] init];
CGDataConsumerRef dataConsumer = CGDataConsumerCreateWithCFData((CFMutableDataRef)pdfData);

CGContextRef pdfContext = CGPDFContextCreate(dataConsumer, &pageRect, NULL);

CGContextSetTextDrawingMode (pdfContext, kCGTextFill);

// Page 1

CGContextBeginPage(pdfContext, &pageRect);
CGContextSetRGBStrokeColor(pdfContext, 0, 0, 0, 1);

CGAffineTransform transf = CGAffineTransformMake(1, 0, 0, -1, 0, pageRect.size.height);
CGContextConcatCTM(pdfContext, transf);

// Line - OK

CGContextMoveToPoint(pdfContext,0,0);
CGContextAddLineToPoint(pdfContext,pageRect.size.width,pageRect.size.height);
CGContextDrawPath(pdfContext, kCGPathStroke);

CGContextSetTextDrawingMode (pdfContext, kCGTextFill);

CGAffineTransform myTextTransform = CGAffineTransformMake(1,0,0,-1,0,0);
CGContextSetTextMatrix(pdfContext, myTextTransform);

// Text - Old working code to replace because CGContextSelectFont and CGContextShowTextAtPoint are deprecated

CGContextSelectFont(pdfContext, "Helvetica", 20, kCGEncodingMacRoman);
CGContextShowTextAtPoint(pdfContext, 50, 50, [@"Hello" UTF8String], [@"Hello" length]);

// Text - Replacing code that doesn't work

NSDictionary *attrs = @{ NSForegroundColorAttributeName : [UIColor blackColor],
NSFontAttributeName : [UIFont systemFontOfSize:20]
};


[@"Hello2" drawInRect:CGRectMake(50, 100, 100, 100) withAttributes:attrs];

CGContextDrawPath(pdfContext, kCGPathStroke);

CGContextEndPage(pdfContext);

//

CGPDFContextClose(pdfContext);
CGContextRelease(pdfContext);

CGDataConsumerRelease(dataConsumer);

return pdfData;
}

最佳答案

与您使用的其他函数相反,drawInRect 不采用图形上下文。这意味着它使用当前的图形上下文,您必须在调用之前确保您的 PDF 上下文是最新的。

可以使用 UIGraphicsPushContext 函数使图形上下文成为当前图形上下文。只是不要忘记在完成后再次弹出图形上下文。

关于ios - drawInRect 不适用于 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33581609/

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