Skip to content

Instantly share code, notes, and snippets.

View omarhuss's full-sized avatar
🛠️
Building

Omar Hussein omarhuss

🛠️
Building
View GitHub Profile
@sag333ar
sag333ar / script_1x2x3x.sh
Last active July 26, 2022 12:27
Generate 1x 2x 3x images from supplied 3x assets. Following shell-script can be used for iOS Asset catalogue.
for f in *.png
do
# Process to get File Name & 2x, 3x file names
xNAME=`echo "$f" | cut -d'.' -f1`
cp "$f" "$xNAME@3x.png"
cp "$f" "$xNAME@2x.png"
# Set proper resolution to original file
sips -s dpiHeight 72.0 -s dpiWidth 72.0 "$f"