Reputation: 4806
I'm writing a performance critical class in C# for image manipulation. I'm using LockBits to gain access to the actual data directly and all is working well but I'd like to get more info on the memory signature of certain PixelFormats, most notably Imaging.PixelFormat.Format32bppPArgb.
Anyone know a reliable website somewhere which lists these?
Upvotes: 1
Views: 1338
Reputation: 21
You will find neccessary information about image manipulation with using LockBits.
https://web.archive.org/web/20141229164101/http://bobpowell.net/lockingbits.aspx
Upvotes: 2