gpt4 book ai didi

objective-c - 在 iOS 中将 PDF 文本写入 PDFContext

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:25:28 25 4
gpt4 key购买 nike

通过以下方式绘制到 pdf 上下文非常简单:

UIGraphicsBeginPDFContextToFile(pdfFile, CGRectZero, nil);
UIGraphicsBeginPDFPageWithInfo(sheet.frame, nil);
CGContextRef ctx = UIGraphicsGetCurrentContext();

CGRect text_rect = ...
NSFont *font = ...
NSString * str = @"foo";
[str drawInRect:text_rect withFont:font];

...draw to context...

然而,文本显然是光栅化的...无论如何,是否可以将 pdf 样式的文本实际添加到 pdf 文件中?所以用户可以选择它、复制它等等。可能是通过核心图形以外的库?

最佳答案

绝对有可能。 Here's a tutorial展示了如何在 iOS 5 中生成和显示带有文本的 PDF 文档。

当我下载并运行该项目时,当我放大时,文本似乎没有被栅格化。当我在 OS X 的预览中打开生成的 PDF 时,我可以选择并复制文本。

此示例使用 Core Text 将文本绘制到 CGContext 中。如果您想尝试,应该很容易更改 +[PDFRenderer drawText] 以尝试其他方法。

例如,我将其更改为使用与您的类似的代码,并且运行良好:

CGRect text_rect = { 0, 100, 300, 50 };
UIFont *font = [UIFont systemFontOfSize:12];
NSString * str = @"Added foo bar";
[str drawInRect:text_rect withFont:font];

关于objective-c - 在 iOS 中将 PDF 文本写入 PDFContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10556719/

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