gpt4 book ai didi

objective-c - 如何以编程方式在 iOS 中创建 PDF?

转载 作者:可可西里 更新时间:2023-11-01 03:34:44 25 4
gpt4 key购买 nike

我想在 iOS 中创建一个 PDF 文件,PDF 中应该有一个表格,由一个数组填充。我已经在谷歌上搜索过,但没有成功。感谢任何帮助

最佳答案

类似于此例程来呈现文本:

- (CFRange)renderTextRange:(CFRange)currentRange andFrameSetter:(CTFramesetterRef)frameSetter intoRect:(CGRect)frameRect {
CGMutablePathRef framePath = CGPathCreateMutable();
CGPathAddRect(framePath, NULL, frameRect);
CTFrameRef frameRef = CTFramesetterCreateFrame(frameSetter, currentRange, framePath, NULL);
CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGContextSaveGState(currentContext);
CGContextSetTextMatrix(currentContext, CGAffineTransformIdentity);
CGContextTranslateCTM(currentContext, 0, 792);
CGContextScaleCTM(currentContext, 1.0, -1.0);
CTFrameDraw(frameRef, currentContext);
CGContextRestoreGState(currentContext);
CGPathRelease(framePath);
currentRange = CTFrameGetVisibleStringRange(frameRef);
currentRange.location += currentRange.length;
currentRange.length = 0;
CFRelease(frameRef);
return currentRange;
}

下面的代码片段调用它,假设您已经创建了上下文和任何字体等,并在适当的变量中。下面的循环简单地将文本逐行构建为 NSMutableAttributedString,然后您可以渲染它:

CTFontRef splainFont = CTFontCreateWithName(CFSTR("Helvetica"), 10.0f, NULL);
CGFloat margin = 32.0f;
CGFloat sink = 8.0f;

NSMutableAttributedString *mainAttributedString = [[NSMutableAttributedString alloc] init];
NSMutableString *mainString = [[NSMutableString alloc] init];

// Ingredients is an NSArray of NSDictionaries
// But yours could be anything, or just an array of text.
for (Ingredient *ingredient in ingredients) {
NSString *ingredientText = [NSString stringWithFormat:@"%@\t%@
\n",ingredient.amount,ingredient.name];
[mainString appendString:ingredientText];
NSMutableAttributedString *ingredientAttributedText =
[[NSMutableAttributedString alloc] initWithString:ingredientText];
[ingredientAttributedText addAttribute:(NSString *)(kCTFontAttributeName)
value:(id)splainFont
range:NSMakeRange(0, [ingredientText length])];
[mainAttributedString appendAttributedString:ingredientAttributedText];
[ingredientAttributedText release];
}

现在您已经将数组用换行符写到一个 NSMutableAttributedString 中,您可以渲染它,具体取决于您的文本,您可能希望循环渲染它,直到渲染位置与您的文本长度匹配。像这样的东西:

// Render Main text.
CTFramesetterRef mainSetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)mainAttributedString);
currentRange = [KookaDIS renderTextRange:currentRange
andFrameSetter:mainSetter
intoRect:pageRect];

// If not finished create new page and loop until we are.
while (!done) {
UIGraphicsBeginPDFPageWithInfo(pageRect, nil);

currentRange = [self renderTextRange:currentRange
andFrameSetter:mainSetter
intoRect:pageRect];

if (currentRange.location >= [mainString length]) {
done = TRUE;
}
}

上面的代码将需要相当多的调整,我敢肯定,因为它是从我自己的项目中破解出来的,所以一些变量(比如框架 setter )将不存在,你需要关闭 PDF 上下文和释放变量等。注意如何使用 mainString 来确定何时呈现文本。

它应该足够清楚地指示如何循环数组或任何其他组以将任意长度的文本呈现到文档中。

对 while 循环和进入循环之前的渲染进行轻微修改,您也可以在多列中渲染文本。

关于objective-c - 如何以编程方式在 iOS 中创建 PDF?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7847616/

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