Last active
October 12, 2022 09:09
-
-
Save ldenoue/56c0209a4d70495554af2527fa3f9bab to your computer and use it in GitHub Desktop.
make mac os app icons (need 50 pixels padding around, see https://bootcamp.uxdesign.cc/creating-app-icons-for-macos-11-and-up-1132ccd479bc )
This file contains hidden or 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
if [ "$#" -eq 2 ] | |
then | |
mkdir $2 | |
ffmpeg -y -i $1 -vf scale=16x16 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=32x32 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=32x32 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=64x64 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=128x128 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=256x256 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=256x256 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=512x512 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=512x512 $2/[email protected] | |
ffmpeg -y -i $1 -vf scale=1024x1024 $2/[email protected] | |
else | |
echo "please pass your image filename and a directory to put results in" | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment