如何对 jpeg 文件进行编码和解码?

发布于 2024-10-19 09:16:32 字数 62 浏览 1 评论 0原文

我想用 C# 在 Windows 应用程序中编码和解码 jpg 文件。

我怎样才能做到这一点?

i want to encode and decode a jpg file in a windows app with C#.

How can I do it this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

巴黎盛开的樱花 2024-10-26 09:16:32

System.Drawing.Bitmap 将加载和保存 JPG 文件。

如果您使用的是 WPF,则可以使用 JpegBitmapEncoderJpegBitmapDecoder用于编码和解码 JPG 文件的类。

System.Drawing.Bitmap will load and save JPG files.

If you're using WPF, you can use the JpegBitmapEncoder and JpegBitmapDecoder classes to encode and decode JPG files.

寂寞花火° 2024-10-26 09:16:32

编码/解码到底是什么意思?如果您有像素,则可以使用 位图< /code>类,同时支持 BMP 和 JPEG。

请注意,您必须将对 System.Drawing 的引用添加到您的项目中才能使用 Bitmap

What exactly do you mean by encode/decode? If you have the pixels you could just use the Bitmap class, which supports both BMP and JPEG.

Note that you will have to add a reference to System.Drawing to your project to use Bitmap.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文