I want to implement an algorithm for compressing BMP images. What library/sdk would you recommend for helping with reading a picture's pixels, and creating an image pixel by pixel?
Asked
Active
Viewed 865 times
-1
-
What is it you'd want to do? Do you want to compress BMP's to lower the file size? – TJHeuvel Apr 12 '11 at 10:04
-
Are you studing a new compression algorithm? If no, you could use conversion to JPG inside C#. – Marco Apr 12 '11 at 10:06
2 Answers
0
System.Drawing.Imaging (GDI+) http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx
Could help you... It has functionality to save with saveoptions and encodings that will allow for compression.

Michiel Cornille
- 2,067
- 1
- 19
- 42
0
Try this tutorial. this will help you to do normal jobs with images in a tutorial format using C#:
http://www.switchonthecode.com/tutorials/csharp-tutorial-image-editing-rotate
for working with images in pixel level see this thread :

Community
- 1
- 1

Farzin Zaker
- 3,578
- 3
- 25
- 35