如何使用 php 将 VML 转换为 png
我搜索了两天,但只有一个解决方案 VectorConvetor ,它似乎不起作用。实际上我正在使用 InternetExplorer 的 excanvas 并希望将该图像保存为 png。 IE 提供 VML,但无法使用 PHP 将其转换为 png。我听说过将 VML 渲染到 IE 并使用 PHP 进行屏幕截图,但也没有找到令人满意的解决方案。
I am searching for two days but just one solution VectorConvetor and it doesn't seem to work. Actually am using excanvas for InternetExplorer and want to save that image to png. IE gives VML and am not able to convert it to a png using PHP. I have heard about rendering the VML to IE and taking a screenshot using PHP but haven't found a satisfying solution to that too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 vml2svg.xsl 及其依赖项< /a> 作为调用 transformToXML 将 VML 转换为 SVG,然后转换 使用 readImageBlob 和 imagemagick 将 SVG 转换为 PNG:
Use vml2svg.xsl and its dependencies as the imported stylesheet of an object which calls transformToXML to convert VML to SVG, then convert SVG to PNG using readImageBlob and imagemagick: