0

我正在 Windows 8 中创建图像处理应用程序。

由于正在玩图像,我想知道 Windows 8 应用程序是否有内存限制?

根据这一点,我可以在将图像保存到内存之前减小图像的大小,它最多可以占用多少内存才能正常工作?

请提供任何信息。

4

1 回答 1

4

I'm not aware of a hard limit outside of typical process limits, however two things to note:

  1. Your app if consuming a larger amount of resources, may be terminated and unloaded while it is suspended, so it's important to implement a proper resume strategy that doesn't take too much time, or your app will fail because of the wait time.

  2. Your app can run on a lower powered device. When you submit your app to the Windows Store, on the 'Selling Details' page there is a section at the bottom. If your app consumes a large amount of RAM then I recommend setting this.

Minimum System Ram

于 2013-05-23T19:00:57.740 回答