我想在C#中保存没有用户交互的图像

时间:2011-06-24 05:30:35

标签: c# windows forms

我正在以一种形式扫描图像我想在C#中保存用户交互时保存图像可以任何一个帮助..

string chktemp = @"C:\"+pic+".tif";
  Bitmap bm= new Bitmap(from file);//Here it is asking already saved file with out this i want to save just now scanned image from form
 bm.Save(chktemp);

2 个答案:

答案 0 :(得分:1)

使用IO检查当前文件是否存在,如果是,则先删除它。 请参阅:System.IO文档

File.Exists http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx

File.Delete http://msdn.microsoft.com/en-us/library/system.io.file.delete.aspx

答案 1 :(得分:0)

将图像文件加载到Stream,而不是从Stream创建位图,这将关闭源图像中的文件读取操作。