AppStore (iTunes Connect) 的 512x512 图像,Apple 会像在手机上那样进行圆角处理吗?
将 iPhone 应用程序提交到 iTunes Connect 进行 AppStore 分发后,他们会要求提供 512x512 像素的图像。以下是提交位置旁边的内容:
“将在 App Store 上使用的应用程序图标的大版本。它必须至少为 72 DPI,最小为 512x512 像素(无法放大) 它必须是没有圆角的平面艺术品。”
那么他们是否会像其他地方那样将角圆化? iOS 人机界面指南表明不是:“。此版本的应用程序图标中没有添加任何视觉效果”
但是我在 iTunes 应用商店中看到的所有图像都是圆角的。 iTunes 的网页版也显示圆形图标,实际上是 175、175 方形,带有圆角的图像蒙版: http://a1.phobos.apple.com/us/r1000/050/Purple/49/68/e3/mzi。 wijnmlbw.175x175-75.jpg 和 http ://ax.phobos.apple.com.edgesuite.net/htmlResources/2CBF/images/mask175.png。
Upon submission of an iPhone app to iTunes Connect for AppStore distribution, they ask for a 512x512 pixel image. Here is what it says next to the place to submit it:
"A large version of your app icon that will be used on the App Store. It must be at least 72 DPI and a minimum of 512x512 pixels (it cannot be scaled up). It must be flat artwork without rounded corners."
So are they going to round the corners like they do elsewhere or not?? The iOS Human Interface Guidelines indicate NOT: "There are no visual effects added to this version of your application icon"
Yet all the images I see on iTunes app store are rounded. Also web version of iTunes show rounded icons, and infact are 175, 175 square with an image mask that has rounded corners: http://a1.phobos.apple.com/us/r1000/050/Purple/49/68/e3/mzi.wijnmlbw.175x175-75.jpg and http://ax.phobos.apple.com.edgesuite.net/htmlResources/2CBF/images/mask175.png.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的直觉是正确的 - Apple 会在 iTunes Store 中自动应用光泽度和圆角,因此只需上传平面方形版本即可。
如果 iTunes Connect 中的渲染效果看起来很糟糕,请不要担心 - 一旦它在商店中就会消失。
iOS 指南似乎不正确。
Your intuition is correct - Apple applies the glossiness and rounded corners automatically in the iTunes Store, so just upload a flat square version.
Don't worry if the rendering looks terrible in iTunes Connect - it will be fine once it's on the store.
The iOS Guidelines appear to be incorrect.
苹果确实会对上传到 iTunes Connect 的平面艺术品进行圆角处理。它还会自动添加光泽。因此,您可以只上传方形扁平版本,但已经圆形的版本也可以正常工作。
如果您的图标已经包含光泽,您可以将
UIPrerenderedIcon
键添加到Info.plist
中。如果您使用Xcode的build in plist编辑器,则该键的全名是Icon已经包含光泽效果
,并且必须将其设置为YES
。 iTunes Connect 将遵循该文件中的设置,并在您上传二进制文件后更新您上传的艺术作品的预览。重要提示:请确保
UIPrerenderedIcon
键位于Info.plist
的根目录中,否则上传到 iTunes Connect 的图标仍将使用默认光泽度,因为它无法识别这个键。Apple will indeed round the corners of the flat artwork uploaded to iTunes Connect. It will also add a gloss automatically. So you can upload just the square flat version, but an already rounded version will also work just fine.
If your icon already includes gloss, you can add the
UIPrerenderedIcon
key to yourInfo.plist
. If you use the build in plist editor of Xcode, the full name of the key isIcon already includes gloss effects
and you must set it toYES
. iTunes Connect will honour the settings in that file and will update the preview of your uploaded artwork after you upload your binary.Important: Make sure the
UIPrerenderedIcon
key is in the root of yourInfo.plist
, otherwise the icon uploaded to iTunes Connect will still use the default gloss, because it will not recognize this key.