library for editing photos [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this questionI 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?
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#
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.
精彩评论