C#如何保存图片框内的图片?

 我来答
wangqianglife
2012-05-20 · 超过29用户采纳过TA的回答
知道答主
回答量:107
采纳率:0%
帮助的人:45万
展开全部
//保存
private void btnSave_Click(object sender, EventArgs e)
{
FileInfo fi = new FileInfo(strFileName);
if (fi.Exists)
{
fi.Delete();
this.pictureBox1.Image.Save(strFileName);
}
else
{
this.pictureBox1.Image.Save(strFileName);
}
}
//另存为
private void button1_Click(object sender, EventArgs e)
{
SaveFileDialog saveFileDialog1 = new SaveFileDialog();
saveFileDialog1.Filter = "jpg图片(*.jpg)|*.jpg";
saveFileDialog1.FilterIndex = 2;
saveFileDialog1.RestoreDirectory = true;

if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{

this.pictureBox1.Image.Save(saveFileDialog1.FileName, System.Drawing.Imaging.ImageFormat.Jpeg);

}

}
更多追问追答
追问
什么原因啊?
追答
我的怎么没有问题啊!!!!!!!!
yanfei_nn
2012-05-19 · TA获得超过162个赞
知道小有建树答主
回答量:177
采纳率:100%
帮助的人:98.3万
展开全部
SaveFileDialog sdf = new SaveFileDialog();
if (sdf.ShowDialog() == DialogResult.OK)
{
Image img = pictureBox1.Image;
img.Save(sdf.FileName);
}
更多追问追答
追问
你看下吧,什么原因啊?
追答
我的合适呀、怎么会不合适、发你邮箱,我邮给你
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式