How do I use large bitmaps in .NET?

后端 未结 7 1734
心在旅途
心在旅途 2020-12-05 11:38

I\'m trying to write a light-weight image viewing application. However, there are system memory limitations with .NET.

When trying to load large bitmaps (900

相关标签:
7条回答
  • 2020-12-05 12:31

    So you're saying that it is not the loading of the bitmap but the rendering that causes an out of memory?

    If so, can you use Bitmap.LockBits to get ahold of the pixels and write a basic image resizer yourself?

    0 讨论(0)
提交回复
热议问题