Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 15th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Windows Bat-file for Drag n Drop Imagefile for Imagemagick
  2. set SOURCE=%1
  3. identify -verbose %SOURCE%
  4.        
  5. set SOURCE=-verbose
  6. identify -verbose -verbose
  7.        
  8. @echo off
  9. set /p SOURCE=%1
  10. echo.
  11. echo Command: identify -verbose %SOURCE%
  12. identify -verbose %SOURCE%
  13. pause