Last active
February 7, 2021 15:29
-
-
Save ignasi/8420671 to your computer and use it in GitHub Desktop.
Android XXHDPI Resizer (Tested on OS X Mavericks)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
f=$(pwd) | |
mkdir drawable-mdpi drawable-hdpi drawable-xhdpi drawable-xxhdpi | |
# fake argv and argc in bash | |
argc=$#; argv[0]=$0 # argv[0] is a prog name | |
for foo in $( seq $argc ) | |
do | |
eval "argv[${foo}]=\$${foo}" | |
filename=${argv[$foo]} | |
width=$(sips -g pixelWidth $filename | tr -d '\n' | awk '{ print $NF }') | |
sips --resampleWidth $(($width/3)) "${f}/${filename}" --out "${f}/drawable-mdpi/${filename}" | |
sips --resampleWidth $(($width/2)) "${f}/${filename}" --out "${f}/drawable-hdpi/${filename}" | |
sips --resampleWidth $(($width/3*2)) "${f}/${filename}" --out "${f}/drawable-xhdpi/${filename}" | |
sips --resampleWidth $width "${f}/${filename}" --out "${f}/drawable-xxhdpi/${filename}" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tio, havies vist aquesta lib?
En principi arregla el teu problema no?
^_^
https://github.com/asystat/Final-Android-Resizer