Assets.car can't contain 16-bit or P3 assets if the app supports iOS 8 or earlier?

前端 未结 14 566
执念已碎
执念已碎 2020-12-04 12:52

Has anyone come across this error when uploading to iTunesConnect. Upload precess gets to \"Verifying assets with iTunes store\" the I get the following error:

14条回答
  •  没有蜡笔的小新
    2020-12-04 13:10

    I've found the offending images with the @fancy steps but I couldn't change the color profile of my images with the above solutions.

    I've tried with ColorSync, Preview, and I was unable to change the color profile of the offending images.

    Finally I could change the color profile using convert command.

    convert my_image.png -profile /path/to/AdobeRGB1998.icc -profile /path/to/sRGB_v4_ICC_preference_displayclass.icc my_image.png
    

    After this, the appropiated color profile (sRGB...) was shown on Finder > File > Get Info and finally I was able to upload my app using Application Loader.

    If you want to try this method:

    1) Download ImageMagick using brew:

    brew update
    brew install imagemagick --with-little-cms --with-little-cms2
    

    2) Download the color profiles:

    • AdobeRGB1998 > https://www.adobe.com/digitalimag/adobergb.html
    • sRGB_v4_ICC_preference_displayclass.icc > http://www.color.org/srgbprofiles.xalter

    3) Execute the following command:

    convert input_image_name.ext -profile /path/to/AdobeRGB1998.icc -profile /path/to/sRGB_v4_ICC_preference_displayclass.icc output_image_name.ext
    

提交回复
热议问题