|
Commandline Support
The Deluxe Edition of ImageBadger supports commandline calls.
For a list of all the parameters and what they do, see the Parameters page.
Examples:
Convert single image to PNG using default PNG options:
ImageBadger.exe /convert PNG /file c:\image.bmp /usesf
Convert all images in one folder to GIF using default GIF options:
ImageBadger.exe /convert GIF /file c:\Images\ /usesf
Convert all GIF images in a folder to JPG using default JPG options:
ImageBadger.exe /convert JPG /file c:\Images\*.gif /usesf
Convert single image to PNG using custom PNG options and output to appended path:
ImageBadger.exe /convert PNG 0 org 0 0 /file c:\image.bmp /output NewImages\
Load a list of images and open ImageBadger:
ImageBadger.exe /open /list c:\imagelist.txt
Show the shell context options window:
ImageBadger.exe /shelloptions
Force scanning for images in subfolders in a folder and convert to PNG using default PNG options and force save single-page images of all frames in multi-page images:
ImageBadger.exe /convert PNG /mpo 1 /subfolders 1 /file c:\Images\ /usesf
Convert single image to TIF using default TIF options to an absolute path and load a filter profile:
ImageBadger.exe /convert TIF /profile Make Thumbnails /file c:\image.bmp /output c:\Images\
Convert all images in one folder to GIF using default GIF options and set up how the filenames should look:
ImageBadger.exe /convert GIF /file c:\Images\ /usesf /fni NEW- /fna -NEW /fnn -%n /fnmp -#%n
Filter Parameter Examples:
Convert single image to PNG using default PNG options, and apply resize filter:
ImageBadger.exe /convert PNG /file c:\image.bmp /usesf /filter resize 4 0 320 240 1 1
Convert single image to PNG using default PNG options, and apply resize filter, then apply rotate filter:
ImageBadger.exe /convert PNG /file c:\image.bmp /usesf /filter resize 4 0 320 240 1 1 /filter rotate 4500 0 0
Convert single image to PNG using default PNG options, and apply invert filter, then apply mirror filter, then apply rotate filter:
ImageBadger.exe /convert PNG /file c:\image.bmp /usesf /filter invert /filter mirror /filter rotate 4500 0 0
|