-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
  • 97,316
  • 47
  • 222
  • 267
Ryan
  • 5,304
  • 25
  • 68
  • 120

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,037
  • 1
  • 19
  • 40
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,548
  • 3
  • 24
  • 35