如何对 jpeg 文件进行编码和解码?
我想用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
System.Drawing.Bitmap 将加载和保存 JPG 文件。
如果您使用的是 WPF,则可以使用 JpegBitmapEncoder 和 JpegBitmapDecoder用于编码和解码 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.
使用
System.Drawing.Bitmap
< /a> 类。它可以读取和写入 JPEG、PNG 和 BMP 文件。Use the
System.Drawing.Bitmap
class. It can read and write JPEG, PNG and BMP files.编码/解码到底是什么意思?如果您有像素,则可以使用
位图< /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 useBitmap
.