Bitmap crashing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to generate a bitmap that is over 20k pixels in either dimension. Somewhere between 20k and 30k it stops working, but I cannot find any documentation that states what the upper limit of the format is. I am using C# with 16bppRGB555 format for writing the bmp file out. Any help would be appreciated
 
You're dealing with over 400 Mega Pixels with 2 bytes per pixel. Could it
be that you're running out of memory?

Now, why would you want a bitmap that has so many pixels?

-vJ
 
Back
Top