Update to defaults and re-generated some bundled profiles to make better use of modern tools

This commit is contained in:
DrSlony
2014-10-23 23:13:41 +02:00
parent f0a30b2198
commit 0af80b16d4
65 changed files with 326 additions and 574 deletions

View File

@@ -321,7 +321,7 @@ int processLineParams( int argc, char **argv )
bool skipIfNoSidecar=false;
bool useDefault=false;
unsigned int sideCarFilePos = 0;
int compression=100;
int compression=92;
int subsampling=3;
int bits=-1;
std::string outputType = "";
@@ -481,7 +481,7 @@ int processLineParams( int argc, char **argv )
std::cout << " -d Use the default raw or non-raw " << pparamsExt << " file as set in" << std::endl;
std::cout << " Preferences > Image Processing > Default Processing Profile" << std::endl;
std::cout << " -j[1-100] Specify output to be JPEG (on by default). Optionally add" << std::endl;
std::cout << " compression 1-100 (default value: 100)." << std::endl;
std::cout << " compression 1-100 (default value: 92)." << std::endl;
std::cout << " -js<1-3> Specify the JPEG subsampling parameter, where:" << std::endl;
std::cout << " 1 = Best compression: 2x2, 1x1, 1x1 (4:1:1) - default of the JPEG library" << std::endl;
std::cout << " 2 = Widely used normal ratio: 2x1, 1x1, 1x1 (4:2:2)" << std::endl;

View File

@@ -236,16 +236,16 @@ void Options::setDefaults () {
saveAsDialogHeight = 680;
savesParamsAtExit = true;
saveFormat.format = "jpg";
saveFormat.jpegQuality = 90;
saveFormat.jpegQuality = 92;
saveFormat.jpegSubSamp = 2;
saveFormat.pngCompression = 6;
saveFormat.pngBits = 8;
saveFormat.tiffBits = 8;
saveFormat.tiffBits = 16;
saveFormat.tiffUncompressed = true;
saveFormat.saveParams = true;
saveFormatBatch.format = "jpg";
saveFormatBatch.jpegQuality = 90;
saveFormatBatch.jpegQuality = 92;
saveFormatBatch.jpegSubSamp = 2;
saveFormatBatch.pngCompression = 6;
saveFormatBatch.pngBits = 8;
@@ -269,8 +269,8 @@ void Options::setDefaults () {
dirBrowserHeight = 350;
preferencesWidth = 800;
preferencesHeight = 0;
toolPanelWidth = 390;
browserToolPanelWidth = 430;
toolPanelWidth = 400;
browserToolPanelWidth = 465;
browserToolPanelHeight = 600;
browserToolPanelOpened = true;;
browserDirPanelOpened = true;