summaryrefslogtreecommitdiff
path: root/profile/profout.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 05:38:49 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 05:38:49 +0100
commit9491825ddff7a294d1f49061bae7044e426aeb2e (patch)
tree06e651099f87140ec534ae47fb8ce1ac6ec7976d /profile/profout.c
parentfa756339d4204bff7f2820067f58214d32780d17 (diff)
Imported Upstream version 1.8.3
Diffstat (limited to 'profile/profout.c')
-rwxr-xr-x[-rw-r--r--]profile/profout.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/profile/profout.c b/profile/profout.c
index 1a6f4ae..4ad62aa 100644..100755
--- a/profile/profout.c
+++ b/profile/profout.c
@@ -2276,22 +2276,22 @@ make_output_icc(
printf("Creating Gamut Mapping\n");
/* Gamut mapping will extend given grid res to encompas */
- /* source gamut by a margin. */
- if (oquality == 3) { /* Ultra High */
- gres = 8.0;
- mapres = 41;
+ /* source gamut by a margin of 1.20. */
+ if (oquality == 3) { /* Ultra High */
+ gres = 7.0;
+ mapres = 49;
} else if (oquality == 2) { /* High */
gres = 8.0;
- mapres = 33;
+ mapres = 39;
} else if (oquality == 1) { /* Medium */
gres = 10.0;
- mapres = 25;
+ mapres = 29;
} else if (oquality == 0) { /* Low quality */
gres = 12.0;
- mapres = 17;
+ mapres = 19;
} else { /* Extremely low */
gres = 14.0;
- mapres = 9;
+ mapres = 11;
}
/* We could lift this restriction by allowing for separate */