C# 实现 BMP 格式转换为 JPG 格式

numerous2679 5 0 rar 2024-05-25 22:05:32

using System.Drawing;
using System.Drawing.Imaging;

public class ImageConverter
{
    public static void ConvertBmpToJpg(string bmpFilePath, string jpgFilePath)
    {
        // 加载 BMP 图像
        using (Bitmap bmp = new Bitmap(bmpFilePath))
        {
            // 保存为 JPG 格式
            bmp.Save(jpgFilePath, ImageFormat.Jpeg);
        }
    }
}

用户评论
请输入评论内容
评分:
暂无评论