如何以编程方式在 iOS 中创建 PDF?
Posted
技术标签:
【中文标题】如何以编程方式在 iOS 中创建 PDF?【英文标题】:How to create a PDF in iOS programmatically? 【发布时间】:2011-12-12 10:54:09 【问题描述】:我想在 ios 中创建一个 PDF 文件,PDF 中应该有一个表格,它是从一个数组中填充的。我已经在谷歌上搜索过,但没有成功。任何帮助表示赞赏
【问题讨论】:
这个问题挺热门的,随便搜一下:iOS SDK - Programmatically generate a PDF file,pdf file text reading and searching @berylium : 我已经在 View 中搜索并成功生成了 PDF 文件。但我想在 PDF 文件中显示 Our Array 数据。 【参考方案1】:类似于这个例程来呈现文本:
- (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;
下面的代码 sn-p 调用它,假设您创建了上下文和任何字体等并在适当的变量中。下面的循环只是将文本逐行构建成一个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;
上面的代码需要相当多的调整我敢肯定,因为它是从我自己的项目中破解出来的,所以一些变量(如框架设置器)将不存在,您需要关闭 PDF 上下文并释放变量等。注意 mainString 是如何用于确定文本何时被渲染出来的。
它应该足够清楚地表明如何循环数组或任何其他组以将任意长度的文本呈现到文档中。
对 while 循环稍加修改,在进入它之前进行一次渲染,您也可以在多列中渲染文本。
【讨论】:
以上是关于如何以编程方式在 iOS 中创建 PDF?的主要内容,如果未能解决你的问题,请参考以下文章