wmz 文件转为 gif 或 jpg
如何在 C# 中将“wmz”文件转换为“gif”或“jpg”文件?
How can i convert the "wmz" file to "gif" or "jpg" file in c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 C# 中将“wmz”文件转换为“gif”或“jpg”文件?
How can i convert the "wmz" file to "gif" or "jpg" file in c#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
WMZ
是一个压缩的 Windows 图元文件,您可以先解压,然后再解压转换为所需格式(不要忘记处置所有那些Image
实例(MSDN 示例中未完成)。WMZ
is a compressed Windows Metafile which you could first decompress and then convert to the desired format (don't forget to dispose all thoseImage
instances which is not done in the MSDN example).感谢您的帮助。我可以解压缩“wmz”文件并将其转换为 wmf 文件。代码是
Thanks for the help. I could decompress the "wmz" file and convert it to a wmf file. The code is
将 WMZ 转换为 GIF/PNG/JPG/等:
Convert WMZ to GIF/PNG/JPG/etc: