-1

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?

Blorgbeard
  • 101,031
  • 48
  • 228
  • 272
Ryan
  • 5,456
  • 25
  • 71
  • 129

2 Answers2

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 :

How to manipulate images at the pixel level in C#

Community
  • 1
  • 1
Farzin Zaker
  • 3,578
  • 3
  • 25
  • 35