Skip to content

Instantly share code, notes, and snippets.

@Gyyyn
Created March 18, 2018 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gyyyn/82376f4d36137f0d075f5c6ffc579622 to your computer and use it in GitHub Desktop.
Save Gyyyn/82376f4d36137f0d075f5c6ffc579622 to your computer and use it in GitHub Desktop.
Automatic resizing from HD-Only osu skin elements.
SETLOCAL EnableDelayedExpansion
for /f %%a IN ('dir /b *@2x.png') do (
set a=%%a
convert "%%a" -resize 50%% "!a:~0,-7!.png"
)
echo Finished!
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment