UWP 应用程序的图标大小(通用 Windows 平台、AppX)

Icon sizes for UWP apps (Universal Windows Platform, AppX)

我想了解 UWP 应用程序 (AppX) 的必要 iconlogo 大小。

根据文档,有几张图片https://docs.microsoft.com/en-us/windows/uwp/design/style/app-icons-and-logos

在UWP中,会生成各种不同大小的图标,以适应不同的使用环境。

在Visual Studio的Package.appxmanifest中,有你说的图片类型尺寸的定义。 (详情见Package.appxmanifest/Visual Assets

这里有一个例子:

SmallTile(5个尺寸,单位为像素)

  • 284x284(推荐)
  • 142x142(推荐)
  • 71x71(推荐)
  • 107x107
  • 89x89

LargeTile

  • 1240x1240(推荐)
  • 620x620(推荐)
  • 310x310(推荐)
  • 465x465
  • 388x388

图片名称中带有{number}x{number}的图片表示像素,{scale-number}表示缩放比例。

谢谢。

UWP 图像的最大尺寸:

  • StoreLogo.png — 200x200(原始:50x50)

  • Square150x150Logo.png — 600x600(原始:150x150)

  • Square44x44Logo.png — 256x256(原始:44x44 more info

  • Wide310x150Logo.png — 1240x600(原始:310x150)

  • SmallTile.png (Square71x71Logo) — 284x284 (原来: 71x71)

  • LargeTile.png (Square310x310Logo) — 1240x1240 (原图: 310x310)

  • 启动画面 — 2480x1200(原始:620x300 more info


文档: