0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-25 05:16:55 +01:00

Create convertSvgToAssetCatalog.sh (#503)

This adds a bash script which can convert a list of SVG files from the input to a Xcode asset catalog containing PDF's. PDF's is iOS's standard vector format. This is very handy when you're an iOS developer and need to create e.g. a country picker.
This commit is contained in:
Stefan Herold 2019-01-07 13:00:24 +01:00 committed by Lipis
parent eb106d01f2
commit 62210c7cf7

View File

@ -0,0 +1,35 @@
#!/bin/bash
usage() {
echo "$1"
echo "Usage: $0 <input_folder> <output_folder>"
echo "Quit..."
}
INPUT_FOLDER=$1
OUTPUT_FOLDER=$2
if [ -z "$INPUT_FOLDER" ]; then usage "Input Folder missing!"; exit 1; fi
if [ -z "$OUTPUT_FOLDER" ]; then usage "Output Folder missing!"; exit 1; fi
command -v rsvg-convert >/dev/null 2>&1 || {
echo >&2 usage "RsvgConvert missing - Install using \"brew install librsvg\"."; exit 1;
}
SVG_LIST=($(ls $INPUT_FOLDER/*.svg))
JSON="{\"images\":[{\"idiom\":\"universal\",\"filename\":\"##FILE_NAME##\"}],\"info\":{\"version\":1,\"author\":\"xcode\"},\"properties\":{\"preserves-vector-representation\":true}}"
ASSET_FOLDER="/tmp/Assets.xcassets"
rm -rf $ASSET_FOLDER
for SVG in "${SVG_LIST[@]}"; do
ID=$(echo $(basename $SVG) | cut -d. -f1)
IMAGESET="$ASSET_FOLDER/$ID.imageset"
mkdir -p $IMAGESET
rsvg-convert -f pdf -o $IMAGESET/$ID.pdf $SVG
echo ${JSON/"##FILE_NAME##"/"$ID.pdf"} > "$IMAGESET/Contents.json"
done
mv $ASSET_FOLDER $OUTPUT_FOLDER