苹果发布了新版iTunes Connect &当我试图在iTunes Connect上为我的应用程序设置截图时,我收到了一个错误消息。
"Images can't contain alpha channels or transparencies."
苹果发布了新版iTunes Connect &当我试图在iTunes Connect上为我的应用程序设置截图时,我收到了一个错误消息。
"Images can't contain alpha channels or transparencies."
当前回答
如果安装了imagemagick,那么可以将以下别名放入.bash_profile中。它会将目录中的每个png转换为jpg,这将自动删除alpha。您可以使用生成的jpg文件作为屏幕截图。
alias pngToJpg='for i in *.png; do convert $i ${i/.png/}.jpg; done'
其他回答
同样的问题,尝试使用JPG格式!!
如果安装了imagemagick,那么可以将以下别名放入.bash_profile中。它会将目录中的每个png转换为jpg,这将自动删除alpha。您可以使用生成的jpg文件作为屏幕截图。
alias pngToJpg='for i in *.png; do convert $i ${i/.png/}.jpg; done'
这很简单……
在预览应用程序中打开图像,单击文件->导出和 取消α
你可以简单地创建一个新的Photoshop文档,并将其默认背景设置为白色而不是透明。然后,复制并粘贴图像到新创建的文档并保存它。
为了解决这个问题,我使用烟花批量转换我的png32文件到png24,以便快速简单地上传。Jpeg也可以,但它是有损的。