c# picturebox 图片保存问题
我想用picturebox读取图片修改后覆盖原文件.但存到其他文件都可以,就是无法覆盖picturebox正在读取的文件是什么东西把正在读取的文件卡住了?注:是WIN窗体...
我想用picturebox读取图片修改后覆盖原文件.
但存到其他文件都可以,就是无法覆盖picturebox正在读取的文件
是什么东西把正在读取的文件卡住了?
注:是WIN窗体程序
//======原代码===
...
Bitmap aaa = new Bitmap(pictureBox1.Image);
aaa = changeBitsize(aaa, pictureBox1.Width, pictureBox1.Height);
aaa.Save(listBox1.Text, ImageFormat.Bmp);
...
/// <summary>
/// Resize图片
/// </summary>
/// <param name="bmp">原始Bitmap</param>
/// <param name="newW">新的宽度</param>
/// <param name="newH">新的高度</param>
/// <returns>处理以后的Bitmap</returns>
public static Bitmap changeBitsize(Bitmap bmp, int newW, int newH)
{
try
{
Bitmap b = new Bitmap(newW, newH);
Graphics g = Graphics.FromImage(b);
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.DrawImage(bmp, new Rectangle(0, 0, newW, newH), new Rectangle(0, 0, bmp.Width, bmp.Height), GraphicsUnit.Pixel);
g.Dispose();
return b;
}
catch
{
return null;
}
}
修改后还是不行====
...
pictureBox1.Image = null;
aaa.Save(listBox1.Text, ImageFormat.Bmp); pictureBox1.Image = aaa;
...
我进行了测试,并不是上面代码的问题.
是什么控件把picture读取的文件保护住了.
我的程序是这样的用listbox获得一堆文件目录
再用picture读其中选中的目录
下面如果我在资源管理器中找到那listbox上的文件删不掉!
clear()也不行~怎么办啊 展开
但存到其他文件都可以,就是无法覆盖picturebox正在读取的文件
是什么东西把正在读取的文件卡住了?
注:是WIN窗体程序
//======原代码===
...
Bitmap aaa = new Bitmap(pictureBox1.Image);
aaa = changeBitsize(aaa, pictureBox1.Width, pictureBox1.Height);
aaa.Save(listBox1.Text, ImageFormat.Bmp);
...
/// <summary>
/// Resize图片
/// </summary>
/// <param name="bmp">原始Bitmap</param>
/// <param name="newW">新的宽度</param>
/// <param name="newH">新的高度</param>
/// <returns>处理以后的Bitmap</returns>
public static Bitmap changeBitsize(Bitmap bmp, int newW, int newH)
{
try
{
Bitmap b = new Bitmap(newW, newH);
Graphics g = Graphics.FromImage(b);
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.DrawImage(bmp, new Rectangle(0, 0, newW, newH), new Rectangle(0, 0, bmp.Width, bmp.Height), GraphicsUnit.Pixel);
g.Dispose();
return b;
}
catch
{
return null;
}
}
修改后还是不行====
...
pictureBox1.Image = null;
aaa.Save(listBox1.Text, ImageFormat.Bmp); pictureBox1.Image = aaa;
...
我进行了测试,并不是上面代码的问题.
是什么控件把picture读取的文件保护住了.
我的程序是这样的用listbox获得一堆文件目录
再用picture读其中选中的目录
下面如果我在资源管理器中找到那listbox上的文件删不掉!
clear()也不行~怎么办啊 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询