What is PngCrush in iOS?

后端 未结 3 1311
忘了有多久
忘了有多久 2020-12-06 03:38

i know that Pngcrush is an image optimisation technique in iOS , but my doubt is does X-code will perform this internally during each build or before deploying our app to iT

3条回答
  •  抹茶落季
    2020-12-06 04:12

    The PNG crushing is done using the pngcrush tool which you can access manually with this command:

    xcrun -sdk iphoneos pngcrush -iphone ...
    

    Xcode will do this automatically for any files added to your target with the "PNG" file type:

    enter image description here

    If you include resources using a directory reference, the PNG crushing will not be performed by Xcode and you will have to do this manually.

    You can crush all the PNGs in a directory manually using this little bash snippet:

    find /path/to/directory -name "*.png" | while read filename; do
        xcrun -sdk iphoneos pngcrush -iphone "$filename" "${filename}_crushed"
        mv "${filename}_crushed" "${filename}"
    done
    

提交回复
热议问题