我试图向App Store提交一个新应用程序,但现在苹果要求4.7英寸和5.5英寸的iphone提供截图。有人知道这些截图规格(尺寸)吗?
我试过:
640 x 1136(纵向) 640 x 1096(纵向) 1136 x640(景观) 1136 x600(景观)
我也尝试过使用iPad大小的截图,但也没有效果。我没有从苹果公司收到任何关于这方面的建议或电子邮件,我也没有看到iTunes Connect有任何帮助。
我试图向App Store提交一个新应用程序,但现在苹果要求4.7英寸和5.5英寸的iphone提供截图。有人知道这些截图规格(尺寸)吗?
我试过:
640 x 1136(纵向) 640 x 1096(纵向) 1136 x640(景观) 1136 x600(景观)
我也尝试过使用iPad大小的截图,但也没有效果。我没有从苹果公司收到任何关于这方面的建议或电子邮件,我也没有看到iTunes Connect有任何帮助。
当前回答
这些细节由日志给出…
iPhone 6 Plus
Screen bounds: {{0, 0}, {414, 736}}, Screen resolution: <UIScreen: 0x7f97fad330b0; bounds = {{0, 0}, {414, 736}};
mode = <UIScreenMode: 0x7f97fae1ce00; size = 1242.000000 x 2208.000000>>, scale: 3.000000, nativeScale: 3.000000
iPhone 6
Screen bounds: {{0, 0}, {375, 667}}, Screen resolution: <UIScreen: 0x7fa01b5182d0; bounds = {{0, 0}, {375, 667}};
mode = <UIScreenMode: 0x7fa01b711760; size = 750.000000 x 1334.000000>>, scale: 2.000000, nativeScale: 2.000000
其他回答
我把这个页面收藏起来,经常回头看,但没有人提到更新的11英寸iPad pro的尺寸。1668 x2388。
下面是一个bash脚本,它将通用屏幕截图调整为适当的尺寸。到2020年,我还不能让iPhone 4模拟器在最新的xcode中运行,所以这对我来说是必要的。
#!/usr/bin/env bash
HERE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
declare -A sizes
sizes["6-5-inch-iphone-xs-max"]="1242x2688"
sizes["5-8-inch-iphone-x"]="1125x2436"
sizes["5-5-inch-iphone-6"]="1242x2208"
sizes["4-7-inch-iphone-6"]="750x1334"
sizes["4-inch-iphone-6"]="640x1096"
sizes["3-5-inch-iphone-4s"]="640x920"
sizes["12-9-inch-ipad-pro-@3"]="2048x2732"
sizes["12-9-inch-ipad-pro-@2"]="2048x2732"
sizes["11-inch-ipad-pro"]="1668x2388"
sizes["10-5-inch-ipad-pro"]="1668x2224"
sizes["9-7-inch-ipad"]="1536x2008"
for i in "${!sizes[@]}"; do
if [[ "$i" == *"ipad"* ]]; then
[ -d "$HERE/ipad" ] || continue
mkdir -p "$HERE/$i"
cd "$HERE/ipad"
for file in *.jpg; do
[ -e "$file" ] || continue
convert "$file" -resize "${sizes[$i]}"\! "$HERE/$i/$file"
echo "scaled $file"
done
else
[ -d "$HERE/iphone" ] || continue
mkdir -p "$HERE/$i"
cd "$HERE/iphone"
for file in *.jpg; do
[ -e "$file" ] || continue
convert "$file" -resize "${sizes[$i]}"\! "$HERE/$i/$file"
echo "scaled $file"
done
fi
done
要使用它,将它放在一个新目录中,并在它旁边创建一个/iphone和/ipad目录。把你的ipad和iphone截图放在这些文件夹里。运行该脚本,它将生成所有大小的命名文件夹。
ios_screenshots/
├── run.sh
├── iphone/
│ ├── screenshot_1.jpg
│ ├── screenshot_2.jpg
│ ├── screenshot_3.jpg
├── ipad/
│ ├── screenshot_1.jpg
│ ├── screenshot_2.jpg
│ ├── screenshot_3.jpg
通过各自设备的模拟器,我们可以方便地使用cmd+S命令进行截图。这为我们模拟的设备提供了精确的分辨率。审查小组本应提及这一点,但从未提及。:)
在Xcode 9中,除了将窗口比例设置为100%(⌘1)外,现在还需要在调试菜单中取消选择窗口比例的优化呈现,以便获得适当分辨率的截图。
要截取应用商店中使用的适当大小的截图:
1)。在模拟器中运行应用程序 2)。设置刻度(⌘1) 3)。取消选中优化渲染窗口缩放调试菜单 4)。使用⌘S进行截图
我知道有很多精心设计的答案。我从苹果网站上找到了一个正确的文档,他们已经指定了截图要求的规范。下面是链接 https://help.apple.com/app-store-connect/#/devd274dd925
这个答案是更新的Xcode 13。
App Store Connect目前要求以下类别的图像:
iPhone 6.7”显示屏
这是1290 x 2796像素。您可以使用以下模拟器来创建这些截图:
iPhone 14 Pro Max
iPhone 6.5”显示屏
这是1242 x 2688像素。您可以使用以下模拟器来创建这些截图:
iPhone 13 Pro Max iPhone 12 Pro Max iPhone 11 Pro Max iPhone XS Max iPhone XR
iPhone 5.5”显示屏
这是1242 x 2208像素。您可以使用以下模拟器来创建这些截图:
iPhone 8 Plus iPhone 7 Plus iPhone 6s Plus
iPad Pro(第三代)12.9英寸显示屏
这是2048 x 2732像素。您可以使用iPad Pro(12.9英寸)(第五代)模拟器创建此大小的图像。
iPad Pro(第二代)12.9英寸显示屏
这是2048 x 2732像素。这是与iPad Pro(12.9英寸)(第五代)完全相同的尺寸,所以大多数人可以在这里使用相同的截图。但是看看这个。
笔记
Data source: Official Screenshot specifications page on the Apple site. Thanks to this answer for the link. Not all of the devices listed above produce the exact pixel dimensions listed, but Apple seems to accept the proportions. Use File > New Screen Shot (Command+S) in the simulator to save a screenshot to the desktop. On a real device press Sleep/Wake+Home on the iPhone/iPad (images available in Photo app) The pixel dimensions above are the full screen portrait orientation sizes. You shouldn't include the status bar, so you can either paste background color over the status bar text and icons or crop them out and scale the image back up.