图像和图标调整大小为谷歌播放控制台

时间:2018-06-17 19:01:21

标签: image google-play icons

我想将图片上传到Google Play商店,并按照此步骤重新调整图片的大小:工具=>调整尺寸=>和图像尺寸符合谷歌游戏商店的要求。但是,我收到此错误消息:

    Realm.Configuration.defaultConfiguration = Realm.Configuration(
        schemaVersion: 6,
        migrationBlock: { migration, oldSchemaVersion in
            if (oldSchemaVersion < 6) {
                migration.enumerateObjects(ofType: TestResult.className()) { oldObject, newObject in
                    //changed
                    let phoneInfo = oldObject!["phoneInfo"] as! PhoneInfo
                    newObject!["phoneInfo"] = "\(PhoneInfo().BaseOS)"
                }
            }
    })
    let r = try! Realm()


并为特色图形:

You need to resize your high-res icon. The required dimensions are 512 x 512


任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

看起来你没有正确调整图标大小。但是如果没有关于图像的更多细节以及您所使用的操作系统,则很难提供更多帮助。

如果您使用的是Linux,则this superuser question会告诉您如何显示尺寸:

  • 对于PNG file foo.png
  • 对于JPG identify -format "%wx%h" photo.jpg,身份来自ImageMagick程序

如果你在窗户are detailed instructions here。基本上突出显示资源管理器中的文件

无论你做什么,请截取结果(对于Windows)或文本输出(对于linux)的屏幕截图并编辑您的问题以包含它,然后人们可以检查您是否已正确调整大小。