将 shinobi 图表打印成 PDF

Posted

技术标签:

【中文标题】将 shinobi 图表打印成 PDF【英文标题】:Printing shinobi chart into PDF 【发布时间】:2014-03-07 19:48:16 【问题描述】:

我的应用中有几个 shinobicharts,我想打印成 PDF 文件。其他一切,如普通视图、标签和图像都可以正常工作,甚至显示网格、图例和网格标签。唯一缺少的是系列。所以基本上我会在 PDF 文件中打印一个空图表。

我按如下方式打印 PDF:

NSMutableData * pdfData=[NSMutableData data];
PDFPage1ViewController *pdf1 = [self.storyboard instantiateViewControllerWithIdentifier:@"PDF1"];
pdf1.array1 = array1;
pdf1.array2 = array2;
pdf1.array3 = array3;
pdf1.array4 = array4;
UIGraphicsBeginPDFContextToData(pdfData, CGRectZero,nil);
CGContextRef pdfContext=UIGraphicsGetCurrentContext();
UIGraphicsBeginPDFPage();
[pdf1.view.layer renderInContext:pdfContext];
UIGraphicsEndPDFContext();

来自 PDF1PageViewController 的完全相同的代码在普通的 viewController 中绘制漂亮的图表,不会错过系列。 数组包含应显示的数据。

[编辑]

这段代码为我做了:

UIGraphicsBeginImageContextWithOptions(pdf1.view.bounds.size, NO, 0.0);
[pdf1.view drawViewHierarchyInRect:pdf1.view.bounds afterScreenUpdates:YES];
UIImage *pdf1Image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageView *pdf1ImageView = [[UIImageView alloc] initWithImage:pdf1Image];
[pdf1ImageView.layer renderInContext:pdfContext];

虽然活动轮在drawViewHierarchyInRect 之后停止旋转,并且显示当前正在呈现的页面的标签也停止更新。有谁知道如何解决这个问题?

【问题讨论】:

谢谢!你的回答也对我有用 【参考方案1】:

您遇到此问题的原因是图表的系列部分是在 openGLES 中呈现的,因此不会作为 renderInContext: 的一部分呈现。

您可以使用几个选项进行调查。首先是ios7中UIView添加了一些快照方法。如果您的应用程序只能被限制为 iOS7,那么snapshotViewAfterScreenUpdates: 将返回一个UIView,它是内容的快照。我认为以下(未经测试的)代码将起作用:

UIGraphicsBeginPDFPage();
UIView *pdfPage = [pd1.view snapshotViewAfterScreenUpdates:YES];
[pdfPage.layer renderInContext:pdfContext];
UIGraphicsEndPDFContext();

在 ShinobiControls 博客http://www.shinobicontrols.com/blog/posts/2014/02/24/taking-a-chart-snapshot-in-ios7上有更多关于这种方法的详细信息

如果不能将您的应用程序限制在 iOS7 上,那么您仍然可以实现您想要的结果,但它有点复杂。幸运的是,ShinobiControls 博客 (http://www.shinobicontrols.com/blog/posts/2012/03/26/taking-a-shinobichart-screenshot-from-your-app) 上有一篇博文描述了如何从图表创建 UIImage。这可以很容易地适应呈现到您的 PDF 上下文中,而不是在帖子中创建的图像上下文中。附有附加代码 sn-p 可在 github 上找到:https://github.com/ShinobiControls/charts-snippets/tree/master/iOS/objective-c/screenshot。

希望对你有帮助

山姆

【讨论】:

非常感谢!先生,您是我的救星;)您的代码对我不起作用,但它给了我提示。查看我编辑的问题以获取正确的代码。

以上是关于将 shinobi 图表打印成 PDF的主要内容,如果未能解决你的问题,请参考以下文章

在将剑道图表转换为 pdf 时,它会在 pdf 图表上绘制线条

Word文档如何自动更新Power BI数据和图表?

如何在 android 的 Shinobi 折线图中更新/删除/插入新的系列/数据?

如何使用laravel将chartjs图表生成为pdf?

如何在 Excel 2010 中为切片器的每个值打印图表?

将道场图表导出为 pdf 或其他一些矢量格式