iTunesConnect - 如何检索现有应用程序的 1024x1024 图标?

iTunesConnect - How to retrieve 1024x1024 icon of an existing app?

我注意到自 iOS 11 起,应用程序在目录中的 "App Icon" 资产必须包含 1024x1024 大小的版本才能提交到 App Store。

我知道 1024x1024 图标以前直接添加到 iTunesConnect 应用程序页面,但我似乎无法获得任何 link 或以全尺寸显示该图标以从 iTunesConnect 抓取它的方法页。

如何为已发布的应用检索现有的 1024x1024 图标?我没有原始图标的 PSD 文件。

Dear developer,

We have discovered one or more issues with your recent delivery for [App]. Your delivery was successful, but you may wish to correct the following issues in your next delivery:

Missing Marketing Icon - iOS Apps must include a 1024x1024px Marketing Icon in PNG format. Apps that do not include the Marketing Icon cannot be submitted for App Review or Beta App Review.

After you’ve corrected the issues, you can use Xcode or Application Loader to upload a new binary to iTunes Connect.

Regards,

The App Store team

编辑: 我为此制作了一个简单的工具:
https://erkanyildiz.me/lab/icon1024/


转到您应用的 iTunes 页面: https://itunes.apple.com/us/app/MyApp/id000000000

在检查源代码的页面中找到您的应用程序图标的 URL。 它应该是这样的格式:

http://isN.mzstatic.com/image/thumb/Purple128/v4/xx/yy/zz/xxyyzzaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/source/175x175bb.jpg

将最后的 175x175 部分替换为 1024x1024,将 jpg 部分替换为 png:

http://isN.mzstatic.com/image/thumb/Purple128/v4/xx/yy/zz/xxyyzzaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/source/1024x1024bb.png

现在您可以获得原始图标。

注意: 维度后的那 2 个字符用作 Image Resize Style

bb:您可以指定您想要的任何尺寸,它将 return 尺寸小于 1024x1024 的调整大小的版本。但是,如果您指定的维度大于 1024x1024,它仍然会 return 1024x1024

cc:它将return您指定的尺寸。

ff:这似乎也是一个有效的选项,但我不知道它的作用。

ss:另一个有效的选项,同样不知道。