| Home
|
|
|
|
Command line JPG batch converterJoint Photographic Experts Group (JPG)Today it is the most widely spread format for image storage and web publishing. Settings of this format are adjusted with the help of the following parameters:
bppBpp parameter specifies the number of bits used to transfer the color of one pixel. Its allowed values are:
The default value is: 24. Example:-convertto jpg bpp:32 qualityQuality parameter specifies image quality. The higher is its value, the better is image quality. Its allowed values are whole numbers from 25 to 100. The default value is: 85. Example:-convertto jpg quality:73 modeMode parameter specifies the compression algorithm used to create resulting files. Its allowed values are:
The default value is: baseline. Example:-convertto jpg mode:lossless sampleSample parameter specifies channels of image compression. Today most JPEG files have YcbCr format (where Y-channel stands for brightness while Cb and Cr channels stand for color). Human eye is built in such a way that it perceives brightness change of neighboring pixels first and color change next. If we write an average true color image of photo quality into JPEG format, we can skip every second horizontal value of color channels and still have an image of nearly same quality. Each two pixels of the saved image will have two values of Y channel and one value of Cb and Cr channels. In ImageConverter Plus command line, this write mode is specified with “sample 4:2:2” parameter. Sample parameter can accept the following values:
The default value is: 111. Example:-convertto jpg sample:422 thumbnailThumbnail parameter specifies whether image thumbnails should be created. Thumbnails are used to quickly preview images in browsers and graphics viewers. Its allowed values are:
The default value is: No. Example:-convertto jpg thumbnail:Yes exifExif parameter specifies whether EXIF (information on shooting parameters of the camera used) will be saved in resulting files. Its allowed values are:
The default value is: No Example:-convertto jpg exif:Yes iptcIptc parameter specifies whether IPTC (metadata - name, copyright, category) will be saved in resulting files. Its allowed values are:
The default value is: No. Example:-convertto jpg iptc:Yes ICPCL.exe -convertto jpg bpp:32 quality:60 mode:progressive sample:211 thumbnail:Yes exif:Yes iptc:Yes -source "C:\Original files" -dest "C:\Converted files" tips
|
||