美文网首页
iOS 检测图上是否带有P3格式

iOS 检测图上是否带有P3格式

作者: Minoz_min | 来源:发表于2019-05-31 10:00 被阅读0次

    参考文档:https://blog.csdn.net/denggun12345/article/details/80236008

    1.将新工程打包 Product -> Archive 打包
    //xxx表示项目名
    2.右击show in finder -> xxx.xcarchive -> 右击显示包内容 -> Products -> Applications -> xxx

    3.终端cd 到此xxx.app

    4.终端执行 find . -name 'Assets.car' 命令

    5.终端使用 assetutil 命令找到任何包含着 16-bit or P3 的资源文件, 对每个 Assets.car 之行以下命令 :

    sudo xcrun --sdk iphoneos assetutil --info ./xxx.app/Assets.car> /Users/用户名/Desktop/Assets.json

    ./xxx.app/Assets.car 这个是执行步骤4得到的path

    5、查找含有”DisplayGamut” : “P3”, “Encoding” : “ARGB-16″

    相关文章

      网友评论

          本文标题:iOS 检测图上是否带有P3格式

          本文链接:https://www.haomeiwen.com/subject/knljpftx.html