| Home
|
|
|
|
Command line BMP batch converterMS Windows Bitmap (BMP)Bitmap is a home Windows raster format, which is used practically for all possible raster data storage. The following parameters are used to adjust settings of this format.
bppBpp parameters specifies the number of bits used to transfer the color of one pixel. Its allowed values are.
The default value is: 24. Example:-convertto bmp bpp:16 rowsRows parameter specifies the order of saving rows in the resulting file. Its allowed values are:
The default value is: top_bottom. Example:-convertto bmp rows:top_bottom quantQuant parameter reduces the number of distinct colors used in an image while preserving visual image quality. Its value is any whole number from 0 to 8. The default value is: 8. Example:-convertto bmp quant:4 ditherDither is a form of noise, or 'erroneous' signal or data which is added to sample data to minimize quantization error. Dither parameter can accept two values: yes and no. The default value is: yes. Example:-convertto bmp dither:no ICPCL.exe -convertto bmp bpp:8 rows:top_bottom quant:1 dither:no -source "C:\Original files" -dest "C:\Converted files" tips
|
||