iOS iTunes 会自动裁剪你的图标吗?
我知道iOS应用程序图标会自动裁剪成漂亮的圆形,并且在安装到设备上时会添加反射效果。 iTunes 中的 512x512 图像是否也会自动完成相同的效果,还是我需要将其设计为正确的形状?如果我这样做,有可以使用的模板吗?
I know that iOS app icons are automatically cropped to the nice rounded shape and a reflection effect is added when installed on the device. Is this same effect also automatically done with the 512x512 image in iTunes or do I need to design it the right shape? If I do is there a template I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
无论在商店中使用什么,512 x 512 图像都将调整为正确的尺寸。 iTunes 还添加了圆形边缘以及光泽和反射。如果您想要一个“预渲染”图标(意味着不添加光泽),请将其作为条目添加到您的 .plist 文件中:
您的应用程序中还有一系列图标。以下是我在应用程序中设置的内容(这些也在您的 .plist 文件中):
供参考...
因此,Apple 在 iTunes 商店中为您做了很多工作,但您仍然需要在应用程序中做很多事情。我通常首先创建一个 512x512 的尺寸,然后从那里缩小尺寸,并根据需要对小部件进行调整。
The 512 x 512 image will be resized to the correct size wherever it is used in the store. iTunes also adds the rounded edges and the gloss and reflection as well. If you want to have a "pre-rendered" icon (meaning no gloss is added), add this as an entry to your .plist file:
There's also a series of icons in your application. Here's what I have set in my applications (these are also in your .plist file):
For reference...
So Apple does a lot for you in the iTunes store, but you still have to make a bunch for in your app. I usually start by creating a 512x512 and resize down from there and make adjustments in the little guys as needed.
是的,iTunes 会自动为商店执行此操作,就像为应用程序一样。
Yes, iTunes does it automatically for the store, just like for the app.
512图标需要在iTunes Connect中上传。至于你的应用程序,在提交给 Apple 时,你将需要以下图标大小:
如果你使用 Xcode 来验证你的项目,它会告诉你需要什么图标大小(如果你的项目缺少图标大小),这是我的最佳建议。
另外,您还应该阅读 iTunes Connect 开发者指南,特别是第 12 页。
The 512 icon needs to be uploaded in iTunes Connect. As for your app, you will need the following icon sizes when submitting to Apple:
If you use Xcode to validate your project, it will tell you what icon sizes are required if they are missing form your project, thats my best recommendation.
Also, you should read over the iTunes Connect Developer Guide, specifically page 12.
你需要有512x512的尺寸,否则苹果会拒绝它。
反思并不可怕。它会自动添加。
你可以用谷歌搜索一下模板。这是其中之一。
http://blog.cocoia.com/2010/iphone-ipad-图标-psd-模板/
You need to have the size 512x512, else apple will reject it.
Reflection is not nesscary. It will add automatically.
You can google around for the template. Here is one of them.
http://blog.cocoia.com/2010/iphone-ipad-icon-psd-template/
至于图标上的反射,可以通过在 plist 中添加选项
图标已包含光泽效果
来删除,并将其设置为TRUE
。我会在您最喜欢的图形编辑器中创建一个 512 x 512 图标,然后在我的第一个答案中保存一个缩小到相应尺寸之一的副本。
编辑图标时,您不必添加“反射”效果,如果您想要此效果,请取消选中上面的选项。
As for the reflection on your icon, this can be removed by adding the option
Icon already includes gloss effects
in your plist, set this toTRUE
.I would create a 512 x 512 icon in your favorite graphics editor, then save a copy scaling down to one of the respective sizes in my first answer.
When editing your icon, you do not have to add the "reflection" effect, if you want this, then uncheck the above option.
iOS 开发网站的额外说明:
对于 iPad 应用程序,您需要在二进制文件中包含 72 x 72 和 50 x 50 的小图标。iPhone OS 会从图稿的每一侧修剪 1 个像素并添加阴影。在设计图标时请务必考虑到这一点。
Just an extra note from the iOS dev website:
For iPad apps, you will need to include small icons in your binary that are 72 x 72 and 50 x 50. iPhone OS trims 1 pixel from each side of your artwork and adds a drop shadow. Be sure to take this into account as you design your icons.