C# 保存image类图片
时间: 2023-07-27 18:16:07 浏览: 400
用C#自动保存图片程序代码
5星 · 资源好评率100%
你可以使用以下代码将Image类图片保存到本地文件系统中:
```csharp
Image image = // your image object
// specify the file path and name
string filePath = "C:\\temp\\image.jpg";
// save the image to disk
image.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);
```
这将把图片保存为JPEG格式。你也可以选择其他支持的图片格式,例如PNG、BMP等,只需要将ImageFormat参数设置为相应的值即可。
阅读全文