Google Play保存游戏 - 封面图片大小

时间:2016-12-13 22:20:33

标签: android google-play-services google-play-games

是否有人知道cover image snapshot的{​​{1}}需要哪些维度?

documentation我只找到了有关大小(不大于800KB)的信息,但没有找到图像应具有的分辨率。

1 个答案:

答案 0 :(得分:0)

我也不会看到有关图片应具有的确切分辨率的文档或文章。我想你是指定coverImage.heightcoverImage.width的人,只要它不超过800 KB的大小限制。您可以参考此sample JSON template for a snapshot object。这里还有来自GitHub的样本code

public interface CoverImage {
    int WIDTH = 600;
    int HEIGHT = 338;

    float RATIO = (WIDTH * 1.0f) / HEIGHT;
}

希望这有帮助!