views:

355

answers:

1

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?

+1  A: 

You will find neccessary information about image manipulation with using LockBits.

http://www.bobpowell.net/lockingbits.htm

Selman HIZAL