将 pgm 图像转换为 bmp
如何在 C# 中加载 pgm 图像以及如何将其转换为 pgm 文件?
how do I load pgm image in C# and how Im convert it to pgm file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 C# 中加载 pgm 图像以及如何将其转换为 pgm 文件?
how do I load pgm image in C# and how Im convert it to pgm file?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我找到了一篇博客文章,其中包含将 PGM 文件转换为 BMP 文件的代码。我不得不使用谷歌翻译来阅读该页面,但列出的代码是英文的,看起来不错。这是链接(使用翻译):
http://translate.google.com/translate?hl=en&sl=zh-CN&u=http://kb.cnblogs.com/a/1266417/&ei=fkbmTYqRMoe4twfq_PDeCg&am p;sa=X&oi=翻译&ct=结果&resnum=6&ved=0CFAQ7gEwBQ&prev=/search%3Fq%3Dc%2523%2Bconvert%2Bpgm%26hl%3Den%26prmd%3Divns
基本上,只需复制并粘贴此代码即可。
BitmapToBitmap()
方法是您要调用的方法。I found a blog entry that has the code to convert a PGM file to a BMP file for you. I had to use Google Translate to read the page, but the code listed is in English and it looks good. Here is the link (using translate):
http://translate.google.com/translate?hl=en&sl=zh-CN&u=http://kb.cnblogs.com/a/1266417/&ei=fkbmTYqRMoe4twfq_PDeCg&sa=X&oi=translate&ct=result&resnum=6&ved=0CFAQ7gEwBQ&prev=/search%3Fq%3Dc%2523%2Bconvert%2Bpgm%26hl%3Den%26prmd%3Divns
Basically, just copy and paste this code. The
BitmapToBitmap()
method is what you want to call.