How to manipulate images at pixel level in C#?
I need to be able to read/modify each bitmap pixel RGB values separately.
Code sample appreciated.
Thanks in advance!
|
4
|
How to manipulate images at pixel level in C#? I need to be able to read/modify each bitmap pixel RGB values separately. Code sample appreciated. Thanks in advance!
|
||
|
|
|
|
If you want speed, then LockBits. See here for a good walkthrough by Bob Powell. If you just want to edit a few, then GetPixel/SetPixel should do what you want. |
||||||
|
|
|
System.Drawing.Bitmap has a GetPixel(int x, int y) public method that returns a System.Drawing.Color structure. That struct has byte members R, G, B, and A, which you can modify directly, and then call SetPixel(Color) on your Bitmap again. |
||
|
|
|
|
A Sample code routine: (I use this for simple merge and compare functionality. It takes two images and produces a third greyscale image showing the differences between the two images as a greyscale tone level. The darker it is the more the diff.
EDIT: Marc's post above notes LockBits and using that to modify the image directly in memory. I would suggest looking at that rather than what I have posted if performance is a concern. Thanks Marc! |
|||
|
|
|
|
If performance is critical, another alternative to LockBits is managed DirectX. See the earlier StackOverflow question Rendering Graphics in C# for more information. Like Lockbits you will need to use the unsafe keyword/compiler switch, but you get high performance pixel level access. You also get higher performance screen rendering via DirectX backbuffering, when compared with using the normal Bitmap class and PictureBox control. |
||
|
|
|
|
you can use BITMAP class for this task then it'll let you manipulate your bitmap in pixel level with SetPixel and GetPixel methods (you can change properties of these pixels) and then you should save your manipulated bitmap in other place;) |
|||
|
|