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.
I am currently writing a system that stores meta data for around 140,000 ish images stored within a legacy image library that are being moved to cloud storage. I am using the following to get the jpg data...
System.Drawing.Image …
An easy problem, but for some reason I just can't figure this out today.
I need to resize an image to the maximum possible size that will fit in a bounding box while maintaining the aspect ratio.
Basicly I'm looking …