用于编辑照片的库

时间:2011-04-12 10:01:59

标签: c# image-processing

我想实现一种压缩BMP图像的算法。您建议使用什么库/ sdk来帮助读取图片的像素,并逐个像素地创建图像?

2 个答案:

答案 0 :(得分:0)

System.Drawing.Imaging(GDI +)http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx

可以帮助你...它具有可以使用saveoptions和编码进行保存的功能,以便进行压缩。

答案 1 :(得分:0)

试试本教程。这将帮助您使用C#:

以教程格式使用图像执行正常作业

http://www.switchonthecode.com/tutorials/csharp-tutorial-image-editing-rotate

用于处理像素级别的图像,请参阅此主题:

How to manipulate images at the pixel level in C#