Skip to content

Instantly share code, notes, and snippets.

@colettesnow
Created August 1, 2018 05:52
Show Gist options
  • Save colettesnow/e4513b8874703b7a6a6d922d27074959 to your computer and use it in GitHub Desktop.
Save colettesnow/e4513b8874703b7a6a6d922d27074959 to your computer and use it in GitHub Desktop.
Batch file to make thumbnails of websites from a CSV file (for use with pyWinContext)
for /F "eol=; tokens=1,2* delims=," %%i in (%~1) do wkhtmltoimage --crop-h 1080 --crop-w 1440 -f png %%i %%j.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment