本文介绍了将图像从图片框以二进制格式保存到硬盘的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想用二进制格式(1bpp)将图像保存在图片框中,但VB.net不支持这个。我该怎么办?请帮我编码。

I want to save an image in picturebox with binary format(1bpp) but VB.net doesn''t support this. What do I do? Please help me in coding this.

If SaveFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then
    ptr2.Image.Save(SaveFileDialog1.FileName)
    mnuclose.Enabled = True
End If

推荐答案


这篇关于将图像从图片框以二进制格式保存到硬盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 23:30