INI File Demo

The INI file enables the user to set default values for each parameters making the command line simpler to handle. To override one parameter simply include the new value in the command line. The INI file is used only if the switch -u is present.

bmp2gif.ini file content:

[Param]
bmpfile=demo.bmp
interlaced=false
transparent=false
transparentcolor=false
dithering=floyd
width=100
height=-1
log=false
compression=rle
colorreduction=quan
targetpath=
flist=
frames=
fdelay=
loops=


Command Line:
bmp2gif -u

Command Line:
bmp2gif -u -h:100

Command Line:
bmp2gif -u -t -c:FF0000

Command Line:
bmp2gif -u -d:nearest
More demos...