test-cropping.bat 417 B

12345678910
  1. @ECHO off
  2. ECHO.
  3. ECHO Test: Original size
  4. "../../bin/wkhtmltoimage" http://google.com/ out/google-crop-orig.png
  5. ECHO Test: 200x200 from origin
  6. "../../bin/wkhtmltoimage" --crop-w 500 --crop-h 300 http://google.com/ out/google-crop-500x300.png
  7. ECHO Test: 200x200 from 100x100
  8. "../../bin/wkhtmltoimage" --crop-x 150 --crop-y 100 --crop-w 500 --crop-h 300 http://google.com/ out/google-crop-150x100x500x300.png
  9. ECHO.
  10. PAUSE