矢量图形格式比较
来自Wikipedia:Vector Formats,有几种矢量图形格式,例如:
- CGM (计算机图形图元文件)
- SVG(可缩放矢量图形)
- ODG(开放文档图形)
- EPS(封装 PostScript)
- PDF(便携式文档格式)
- SWF(小网页格式)
- WMF / EMF(Windows 图元文件/增强型图元文件)
- XPS(XML 纸张规范)
有谁在以下方面是否有以编程方式处理这些格式的经验:
- 操作
- 导出为位图或其他压缩格式(即 JPG/GIF/PNG)
- 开源库支持(特别是.NET)
- 存储
- 与处理这些格式相关的任何问题?
- 设计师同行的首选格式?
From Wikipedia:Vector Formats, there are several vector graphic format, such as:
- CGM (Computer Graphics Metafile)
- SVG (Scalable Vector Graphics)
- ODG (OpenDocument Graphics)
- EPS (Encapsulated PostScript)
- PDF (Portable Document Format)
- SWF (Small Web Format)
- WMF / EMF (Windows Metafile / Enhanced Metafile)
- XPS (XML Paper Specification)
Has anyone had any experience working with these formats programatically in terms of:
- manipulation
- exporting to bitmap or other compressed formats (i.e. JPG/GIF/PNG)
- open source library support (specifically for .NET)
- storage
- any gotchas related to handling those formats?
- preferred format from designer peers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SVG 和 EPS 是我唯一使用的两种(除了 PDF,但那是针对文档而不是矢量图形,所以无关紧要)。
如果可以的话,我更喜欢使用 SVG,因为我发现它受到最广泛的支持,但是,我在 Web 上使用矢量,而不是在 .NET 中,所以这可能不适用。
SVG and EPS are the only two I use (apart from PDF, but that's for documents not vector graphics, so irrelevant).
I prefer to use SVG if I can, as I have found it to be the most widely supported, however, I use vectors on the web, not in .NET, so this may not apply.