借助 PHP - Image Magick 转换 .SVG 图像
需要转换 .svg 文件并将其保存为 .svg 或 jpeg 格式。 ImageMagick 的问题是它在白色背景上保存转换后的文件,而我非常需要它在透明背景上。
对其他工具或清晰的 php 有什么建议吗?真的很感激。
There's a need to transform .svg files and save em either in .svg or jpeg format. The problems with ImageMagick is that it saves transformed files on white background and I deadly need it on transparent.
Any suggestions with other tools or clear php? Would really appreciate it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正确的 ImageMagick 命令应该是:
您应该使用 PNG 或 GIF 作为文件格式,因为 JPEG 不支持透明度。
要在 PHP 中使用它:
The right ImageMagick command should be:
You should use PNG or GIF as file format, because JPEG doesn't support transparency.
To use it in PHP:
我怀疑你能否在 php 中轻松转换 SVG 文件。 SVG 文件基本上是 XML 文件,并且标准是公开的,因此任何人都可以制作转换器...
我会选择外部工具,它比在脚本语言中进行处理更容易、更快,而且当作者编写时更安全脚本的实际不知道如何找到应用程序的命令行开关,并且 JPEG 文件不支持透明度:)
转到
convert -background none somefile.svg somefile.png
作为延斯说……I doubt you can transform SVG files easily from within php. SVG files are basically XML files, and the standard is public, so anyone can make a converter...
I'd go for the external tool, it's easier and faster than processing from within a scripted language, and a lot safer when the author of the script dosen't actually know how to find out the command line switches for an application, and that JPEG files does not support transparency:)
go for
convert -background none somefile.svg somefile.png
as Jens said...您无法使用 JPEG 实现透明度,但以下是如何将 SVG 保存为具有透明背景的 PNG...
You can't do transparency with JPEG, but here's how to save an SVG as a PNG with a transparent background...