在 Objective-C 中创建 pdf

发布于 2024-11-16 04:55:35 字数 139 浏览 4 评论 0原文

我必须生成一个巨大的 PDF 文件,其中包含 200 个字符串和 4 个表格的数据。有什么方法可以直观地创建 PDF,然后将字符串中的数据填充到正确的位置?如果没有,最好的方法是什么?现在我尝试了drawInRect:方法。

感谢您的任何建议 拉杜

I have to generate a huge PDF file that contains data from 200 strings and 4 tables. Is there any way to visually create the PDF, and then fill the data from my strings in the right place? If not, what would be the best way to do this? For now I tried drawInRect: method.

Thanks for any suggestion
Radu

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

双马尾 2024-11-23 04:55:35

您可以看看
<一href="http://www.google.it/url?sa=t&source=web&cd=1&sqi=2&ved=0CBkQFjAA&url=http://developer.apple.com/library/mac /文档/Cocoa/Referen ce/ApplicationKit/Classes/NSPDFImageRep_Class/index.html&ei=FGX-Tca6MIzz-ga2s93bAw&usg=AFQjCNFrSYR_AsDSc0bhg9HdjJDNWcyuhw&sig2=poE1zTu6BZD4TEl8MNv7LA" rel="nofollow">NSPDFImageRep
CGPDFContext

这是一些示例代码

NSMutableData* pdfData = [NSMutableData data];

CGDataConsumerRef consumer = CGDataConsumerCreateWithCFData((CFMutableDataRef) pdfData);
CGRect mediaBox = CGRectMake( 0, 0, width, height);
CGContextRef pdfContext = CGPDFContextCreate( consumer, &mediaBox, NULL);

CGDataConsumerRelease( consumer );

NSGraphicsContext* newGC = [NSGraphicsContext graphicsContextWithGraphicsPort:pdfContext flipped:YES];
[NSGraphicsContext saveGraphicsState];
[NSGraphicsContext setCurrentContext:newGC];

然后你可以调用你的pdf页面

CGPDFContextBeginPage( pdfContext, NULL );
/* draw here */
CGPDFContextEndPage( pdfContext );

You may take a look to
NSPDFImageRep
CGPDFContext

Here's some sample code

NSMutableData* pdfData = [NSMutableData data];

CGDataConsumerRef consumer = CGDataConsumerCreateWithCFData((CFMutableDataRef) pdfData);
CGRect mediaBox = CGRectMake( 0, 0, width, height);
CGContextRef pdfContext = CGPDFContextCreate( consumer, &mediaBox, NULL);

CGDataConsumerRelease( consumer );

NSGraphicsContext* newGC = [NSGraphicsContext graphicsContextWithGraphicsPort:pdfContext flipped:YES];
[NSGraphicsContext saveGraphicsState];
[NSGraphicsContext setCurrentContext:newGC];

Then you can draw your pdf pages calling

CGPDFContextBeginPage( pdfContext, NULL );
/* draw here */
CGPDFContextEndPage( pdfContext );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文