Is there a resolution limit for created Bitmap images in CF1.0. When I import a small (320x240) type image, it works fine. But when I try to bring in a higher resolution photo, the Bitmap creation fails. I can take the same code, resize the embedded image to something smaller, and it works fine. I can also take the same code with the big images, run it on the desktop, and it too works fine. I check the memory on the device and there's plenty. It almost looks like the CF has some limit to the size of how big an image you can bring in.
Thanks

Is there a reolution limit on creating a bitmap in CF1.0
carpediembr
That was the answer. I forgot about when you expand the jpeg into the image, it takes up ALOT more space. (100k => 900k for one jpg, 990k => 11.9 MB for the others) That was the problem. I scaled the images, then loaded them into the application and it worked fine.
Pouyan
There's a limit on available memory. On Windows CE process is limited to 32MB of virtual RAM and usually only about 25-26 of it is normally free.
Also keep in mind these “small” 500K JPEGs are expanded in memory and even one 10MP image can take out entire free memory on device.