I've been creating 24-bit images ( 8 bits per pixel ) from raw data, which works fine using the Bitmap class.
But now I need to create a 48-bit image. The problem is that apparantly only 8 bits per color are actually being used when creating it, so I'm losing a great bit of detail in each pixel. When I go to use "SetPixel", it gives the message, "the value is limited to 8 bits". I need all 16 bits.
Anyone have any idea of what I can do?
But now I need to create a 48-bit image. The problem is that apparantly only 8 bits per color are actually being used when creating it, so I'm losing a great bit of detail in each pixel. When I go to use "SetPixel", it gives the message, "the value is limited to 8 bits". I need all 16 bits.
Anyone have any idea of what I can do?
Comment