C#图片save时GDI错误


C#图片读出来 处理完成后 save时提示GDI一般性错误 是为什么 ?
权限是够了的 也做了非索引映像。。。
第一次 读取 处理时没有问题 。。但是第二次 处理完保存 就出这个提示了 ~


 Bitmap bmp1 =new Bitmap(Image.FromFile(path[i]));
Bitmap bmp = new Bitmap(768,1024);
Bitmap toBmp = new Bitmap(768,1024);
Graphics draw = Graphics.FromImage(bmp);
Graphics toDraw = Graphics.FromImage(toBmp);
draw.DrawImage(bmp1,0,0);
toDraw.DrawImage(bmp,0,0);
bmp1.Dispose();
draw.Dispose();
toDraw.Dispose();
//处理完成后
toBmp.Dispose();
bmp.Save(path[i]);//提示:GDI+ 中发生一般性错误。
bmp.Dispose();

winform 软件 .net c#

sign情 10 years, 3 months ago
dragoon answered 10 years, 3 months ago

Your Answer