C# 画图 保存,读取bmp图像
我在窗口上画图,然后调用savefile窗口DialogResultresult;stringfilename;SaveFileDialogsave=newSaveFil...
我在窗口上画图,然后调用savefile窗口
DialogResult result;
string filename;
SaveFileDialog save = new SaveFileDialog();
save.CheckFileExists = false;
save.Filter = " bmp files(*.bmp)|*.bmp|All files(*.*)|*.*";
result = save.ShowDialog();
filename = save.FileName;
if (result == DialogResult.OK)
{
if (filename == string.Empty)
{
MessageBox.Show("Invaild file name", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
//大括号里怎么写可以保存为位图?
}
}
然后就是读取是不是也是一样的? 展开
DialogResult result;
string filename;
SaveFileDialog save = new SaveFileDialog();
save.CheckFileExists = false;
save.Filter = " bmp files(*.bmp)|*.bmp|All files(*.*)|*.*";
result = save.ShowDialog();
filename = save.FileName;
if (result == DialogResult.OK)
{
if (filename == string.Empty)
{
MessageBox.Show("Invaild file name", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
//大括号里怎么写可以保存为位图?
}
}
然后就是读取是不是也是一样的? 展开
1个回答
展开全部
用pictureBox读取和保存位图吧先读取再保存
先读取的代码为:
private void buttonRead_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "BMP图片|*.bmp";
ofd.InitialDirectory=@"C:\Documents and Settings\Administrator\My Documents\My Pictures";//读取的文件目录,我从C盘下我的文档的MyPictures文件夹下读取,看你的电脑哪个盘有图片了,自己改改就好了。
if (ofd.ShowDialog()==DialogResult.OK)
{
this.pictureBox1.Image = Image.FromFile(ofd.FileName);//读取图片放在pictuBox1
}
}
后保存的代码为:
private void buttonSave_Click(object sender, EventArgs e)
{
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "BMP图片|*.bmp";
sfd.InitialDirectory =Application.StartupPath;//保存的目录在启动项下,可以自己设计保存在哪个盘下
if (sfd.ShowDialog() == DialogResult.OK)
{
string path = sfd.FileName;
this.pictureBox1.Image.Save(path);//保存pictuBox1的图片到指定目录
}
}
其实不仅pictureBox控件可以读取和保存图片了。button,label控件也可以。这些控件的image属性可以读取和保存图片。
先读取的代码为:
private void buttonRead_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "BMP图片|*.bmp";
ofd.InitialDirectory=@"C:\Documents and Settings\Administrator\My Documents\My Pictures";//读取的文件目录,我从C盘下我的文档的MyPictures文件夹下读取,看你的电脑哪个盘有图片了,自己改改就好了。
if (ofd.ShowDialog()==DialogResult.OK)
{
this.pictureBox1.Image = Image.FromFile(ofd.FileName);//读取图片放在pictuBox1
}
}
后保存的代码为:
private void buttonSave_Click(object sender, EventArgs e)
{
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "BMP图片|*.bmp";
sfd.InitialDirectory =Application.StartupPath;//保存的目录在启动项下,可以自己设计保存在哪个盘下
if (sfd.ShowDialog() == DialogResult.OK)
{
string path = sfd.FileName;
this.pictureBox1.Image.Save(path);//保存pictuBox1的图片到指定目录
}
}
其实不仅pictureBox控件可以读取和保存图片了。button,label控件也可以。这些控件的image属性可以读取和保存图片。
更多追问追答
追问
panel可以不?
追答
我查了下panel控件好像panel没有image这个属性呀 所以panel就不能保存图片了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询