Skip to content

Instantly share code, notes, and snippets.

@nobita4176
Created April 21, 2016 00:38
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 nobita4176/1fb10d7f41f49262c8b918bce9243bd5 to your computer and use it in GitHub Desktop.
Save nobita4176/1fb10d7f41f49262c8b918bce9243bd5 to your computer and use it in GitHub Desktop.
@echo off
setlocal enabledelayedexpansion
for /l %%i in (0, 1, 40) do (
set x=%%i
if %%i LSS 10 (
set x=0!x!
)
"%ImageMagick%\convert.exe" -background white -fill black -size 300x300 -gravity center -pointsize 224 -font electroharmonix.ttf label:!x! !x!.png
)
endlocal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment