gpt4 book ai didi

c# - 修改代码保存为jpeg

转载 作者:行者123 更新时间:2023-11-30 16:14:02 26 4
gpt4 key购买 nike

<分区>

我有下面的代码,我想让它保存为 jpeg 文件格式,而不是 bmp。

Bitmap current = (Bitmap)_latestFrame.Clone();
using (SaveFileDialog sfd = new SaveFileDialog())
{
sfd.Filter = "*.bmp|*.bmp";
if (sfd.ShowDialog() == DialogResult.OK)
{
current.Save(sfd.FileName);
}
}

current.Dispose();
}

你知道我应该改变什么来实现它吗?我尝试使用 Image.Format,但没有用。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com