iPhone可以直接渲染矢量图形文件吗?支持哪些格式?
是否可以像渲染位图(png、jpeg)文件一样在 iPhone 上渲染矢量图像文件?我尝试过 eps 和 pdf 文件,这两个文件似乎都不起作用——它们在 Interface Builder 中正确显示,但在运行时不显示。
控制台输出一条消息,内容为“无法加载从带有标识符“com.yourcompany.project”的包中的笔尖引用的“image.pdf”图像”
我对此的所有搜索都提出了绘制矢量的讨论使用OpenGL等文件。这是唯一的方法吗?由于没有提到矢量文件支持,我不确定我的文件是否由于文件问题(我尝试过不同版本)而没有被加载,或者因为它们不受支持。
Is it possible to render a vector image file on the iPhone in the same way that one can render a bitmap (png, jpeg) file? I have tried eps and pdf files, neither of which seems to work – they are displayed correctly in Interface Builder but do not display when run.
The console outputs a message along the lines of 'Could not load the "image.pdf" image referenced from a nib in the bundle with identifier "com.yourcompany.project"'
All my searches on this come up with discussion of drawing a vector files using OpenGL, etc. Is this the only way? Since there is no mention of vector file support I am unsure if my files are not being loaded because of problems with the files (I have tried different versions), or because they are not supported.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
人们可以原生渲染 PDF 图像,也可以使用 Core Graphics 创建它们。像这样的东西:
当然是 SVG 的 UIWebView。
One can render PDF images natively, and create them as well, with Core Graphics. Something like this:
UIWebView of course for SVG.
没有像 PNG 和 JPEG 那样直接支持矢量图形格式。任何矢量图形渲染都将以编程方式完成,即使用 Quartz 绘图调用来描边和填充路径对象。
There is no direct support for vector graphics formats like there is for PNG and JPEG. Any vector graphics rendering would be done programmatically, i.e. stroking and filling path objects using Quartz drawing calls.
PDF 可以通过 UIWebView 加载。如果您需要更多控制,可以使用 Quartz 2D 渲染 PDF: Quartz2D
PDFs can be loaded by UIWebView. If you need more control you can use Quartz 2D to render PDFs: Quartz2D
是的,它支持 SVG。
您可以将矢量文件转换为 SVG,并使用 Raphael 等库将其转换为 javascript 进行渲染。我的基于 Raphael 的网站具有类似 Flash 的功能,并且可以在 iPhone 上完美呈现——这是网络标准的好处!
Yes, it supports SVG.
You can convert your vector files to SVG and render them by conversion to javascript using a library like Raphael. My Raphael-based web sites have flash-like functionality and they render perfectly on the iPhone--the benefit of web standards!
您可以使用类似 http://www.codeautomat.com/ 将 SVG 文件转换为 Core Graphics Objective- C代码。
You can use something like http://www.codeautomat.com/ to convert SVG files to Core Graphics Objective-C code.