使用shell脚本在iOS工程寻找xcasset中resizing的图片

背景

使用Xcode,iOS开发过程中,经常遇到大范围替换图片的场景,因为一段时间过后就会换UI风格。我们通常的做法是将所有工程中的图片以文件夹的形式拷贝给UI,UI在不改文件名称的情况下将图片替换,再将整个文件夹拷贝给app开发同学。

App开发同学会很无脑的将所有图片拖到xcasset中,但却没有意识到有些图片为了实现拉伸或者压缩效果已经添加了resizing属性,App同学很难知道哪些文件被resizing过,如果一个个找会浪费大量人力。

分析

xcasset中图片文件夹结构图下图
xcasset中图片文件夹结构图.png

图中可以看到xcasset中文件夹都是以imageset结尾的文件夹。这个文件夹下有一个Content.json文件,这个文件用于描述2x,3x图分别是哪个等信息。还有两张png图片,分别是2x和3x图片。

没有被resizing的图片Content.json文件如下

{
  "images" : [
    {
      "idiom" : "universal",
      "scale" : "1x"
    },
    {
      "idiom" : "universal",
      "filename" : "[email protected]",
      "scale" : "2x"
    },
    {
      "idiom" : "universal",
      "filename" : "[email protected]",
      "scale" : "3x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}

被resizing的图片Content.json文件如下

{
  "images" : [
    {
      "idiom" : "universal",
      "scale" : "1x"
    },
    {
      "resizing" : {
        "mode" : "9-part",
        "center" : {
          "mode" : "tile",
          "width" : 4,
          "height" : 7
        },
        "cap-insets" : {
          "bottom" : 44,
          "top" : 20,
          "right" : 30,
          "left" : 33
        }
      },
      "idiom" : "universal",
      "filename" : "[email protected]",
      "scale" : "2x"
    },
    {
      "resizing" : {
        "mode" : "9-part",
        "center" : {
          "mode" : "tile",
          "width" : 8,
          "height" : 8
        },
        "cap-insets" : {
          "bottom" : 60,
          "top" : 28,
          "right" : 45,
          "left" : 45
        }
      },
      "idiom" : "universal",
      "filename" : "[email protected]",
      "scale" : "3x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}

对比两种Content.json文件发现被resizing的文件多了以下结构

{
      "resizing" : {
        "mode" : "9-part",
        "center" : {
          "mode" : "tile",
          "width" : 4,
          "height" : 7
        },
        "cap-insets" : {
          "bottom" : 44,
          "top" : 20,
          "right" : 30,
          "left" : 33
        }
      },
      "idiom" : "universal",
      "filename" : "[email protected]",
      "scale" : "2x"
    }

思路

从以上分析得出结论:在替换前的xcasset中,找出所有的imageset文件夹中的Content.json文件,判断 Content.json中有没有"resizing"字符串,如果有"resizing"字符串,输出该Content.json路径。

shell脚本代码

#!/bin/bash
#echo -e "please drag a file or input dile name \n"
#read dirPath

content_name="Contents.json"
picture_d_suffix="imageset"

#寻找文件
function findFile() {
for file in `ls $1`
    do
        dir_or_file=$1"/"$file
        if test -d $dir_or_file
            then
                d_suffix=${file:0-8:8}
                if test "$d_suffix" = "$picture_d_suffix"
                    then
                    sub_path=$dir_or_file"/"
                    #content.json文件
                    content_path=$sub_path"Contents.json"
                    if test -f $content_path
                    then
                        if [ `grep -c "resizing" $content_path` -ge '1' ];
                        then
                        echo $content_path
                        fi
                    fi
                else
                    findFile $dir_or_file
                fi
        fi
    done
}

root_dir="$1"
findFile $root_dir

使用方式

1、建立文本文件,命名为find_resizing.sh,将上述shell脚本代码拷贝到该文件中。
2、打开终端,终端cd到find_resizing.sh所在的文件夹
3、执行 sh find_resizing.sh +你的工程路径,如下图


执行脚本命令.png

这样就可以找到所有被resizing过的图片了,运行结果如下图


屏幕快照 2019-10-26 上午1.10.42.png

图中划红线的部分就是图片名,这样就可以根据图片名重新给图片做resizing了。

结论

原理很简单,找出所有的imageset文件夹中的Content.json文件,判断 Content.json中有没有"resizing"字符串,如果有"resizing"字符串,输出该Content.json路径。

做事原则是尽量节省时间与人力,尽量使用工具,高效简单,可重复使用。

希望以上所述对大家有所帮助,谢谢观看。

你可能感兴趣的:(使用shell脚本在iOS工程寻找xcasset中resizing的图片)