将分层 SVG 矢量图形转换为分层 EPS 矢量图形
是否可以将分层矢量 .SVG 文件转换为分层 .EPS 文件?
我正在尝试以编程方式将一系列 .SVG 编译为一个大型 .SVG,然后将其导入 Photoshop 中,以便 Adobe Illustrator 可以轻松打开它。
真的可以使用任何建议/指导!似乎没有任何有关 Adobe 分层 .EPS 文件如何组合在一起的文档。
Is it possible to convert a layered vector .SVG file into a layered .EPS file?
I'm trying to programmatically compile a series of .SVG's into one large .SVG, then import it into Photoshop so that can be easily opened by Adobe Illustrator.
Could really use any advice/guidance! There doesn't appear to be any documentation on how Adobe's layered .EPS files are put together.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Adobe Illustrator 应该能够直接打开 SVG,而不需要将其转换为 EPS。
您可以使用 Inkscape 将 SVG 文件转换为 EPS:
如果您尝试在 PHP 中执行此操作,您可以
exec
命令。但 SVG 中没有原生“图层”,因此您只会得到一个普通的 EPS 文件。
如果您确实需要将某些组转换为图层,那么您必须编写自己的转换器,该转换器知道某些组应该是图层。
Adobe Illustrator should be able to open the SVG directly, without the need to convert it to EPS.
You can use Inkscape to convert an SVG file to EPS:
If you're trying to do that in PHP, you can just
exec
the command.But there are no native "layers" in SVG, so you'll just get a plain EPS file.
If you really need to convert some groups into layers, then you'll have to write your own converter which knows that some groups should be layers.
您可以直接使用 Illustrator 打开 SVG 文件,然后将每个图像拖放到 Photoshop 中以创建多层 PSD。
You can open the SVG files directly with Illustrator and drag and drop each image into photoshop to create a multi-layered PSD.