我不知道为什么这会给我一个错误,我打开图片然后我在流中播放它然后我用另一个名字保存流图片,非常简单
string pic = openFileDialog1.FileName;
string filePath;
filePath = pic;
Bitmap bmp = null;
// Create from a stream so we don't keep a lock on the file.
using (var stream = File.OpenRead(filePath))
{
bmp = (Bitmap)Bitmap.FromStream(stream);
}
bmp.Save(pic + "sdf.jpg");
答案 0 :(得分:0)
您可以按照以下方式修改代码,
{{1}}
希望这些帮助。