summaryrefslogtreecommitdiffstats
path: root/image/test/reftest/color-management
diff options
context:
space:
mode:
Diffstat (limited to 'image/test/reftest/color-management')
-rw-r--r--image/test/reftest/color-management/color-curv.pngbin0 -> 1753 bytes
-rw-r--r--image/test/reftest/color-management/color-lin.pngbin0 -> 1749 bytes
-rw-r--r--image/test/reftest/color-management/color-table.pngbin0 -> 1754 bytes
-rw-r--r--image/test/reftest/color-management/invalid-chrm-ref.pngbin0 -> 1460 bytes
-rw-r--r--image/test/reftest/color-management/invalid-chrm.pngbin0 -> 1504 bytes
-rw-r--r--image/test/reftest/color-management/invalid-whitepoint.pngbin0 -> 1504 bytes
-rw-r--r--image/test/reftest/color-management/reftest.list7
-rw-r--r--image/test/reftest/color-management/trc-type-ref.html8
-rw-r--r--image/test/reftest/color-management/trc-type.html53
9 files changed, 68 insertions, 0 deletions
diff --git a/image/test/reftest/color-management/color-curv.png b/image/test/reftest/color-management/color-curv.png
new file mode 100644
index 0000000000..994e3a38a6
--- /dev/null
+++ b/image/test/reftest/color-management/color-curv.png
Binary files differ
diff --git a/image/test/reftest/color-management/color-lin.png b/image/test/reftest/color-management/color-lin.png
new file mode 100644
index 0000000000..0ee276fca3
--- /dev/null
+++ b/image/test/reftest/color-management/color-lin.png
Binary files differ
diff --git a/image/test/reftest/color-management/color-table.png b/image/test/reftest/color-management/color-table.png
new file mode 100644
index 0000000000..355b3a2ba6
--- /dev/null
+++ b/image/test/reftest/color-management/color-table.png
Binary files differ
diff --git a/image/test/reftest/color-management/invalid-chrm-ref.png b/image/test/reftest/color-management/invalid-chrm-ref.png
new file mode 100644
index 0000000000..85f83f7834
--- /dev/null
+++ b/image/test/reftest/color-management/invalid-chrm-ref.png
Binary files differ
diff --git a/image/test/reftest/color-management/invalid-chrm.png b/image/test/reftest/color-management/invalid-chrm.png
new file mode 100644
index 0000000000..33dc9e9ce0
--- /dev/null
+++ b/image/test/reftest/color-management/invalid-chrm.png
Binary files differ
diff --git a/image/test/reftest/color-management/invalid-whitepoint.png b/image/test/reftest/color-management/invalid-whitepoint.png
new file mode 100644
index 0000000000..383a0a035f
--- /dev/null
+++ b/image/test/reftest/color-management/invalid-whitepoint.png
Binary files differ
diff --git a/image/test/reftest/color-management/reftest.list b/image/test/reftest/color-management/reftest.list
new file mode 100644
index 0000000000..a99b4d4391
--- /dev/null
+++ b/image/test/reftest/color-management/reftest.list
@@ -0,0 +1,7 @@
+# Colormangement
+
+# test for bug 489133, test for bug 460520
+== invalid-chrm.png invalid-chrm-ref.png
+== invalid-whitepoint.png invalid-chrm-ref.png
+# test for bug 488955
+== trc-type.html trc-type-ref.html # Bug 1560617
diff --git a/image/test/reftest/color-management/trc-type-ref.html b/image/test/reftest/color-management/trc-type-ref.html
new file mode 100644
index 0000000000..5140e6e6af
--- /dev/null
+++ b/image/test/reftest/color-management/trc-type-ref.html
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<html>
+<body>
+ <img src="color-lin.png">
+ <img src="color-curv.png">
+ <img src="color-table.png">
+</body>
+</html>
diff --git a/image/test/reftest/color-management/trc-type.html b/image/test/reftest/color-management/trc-type.html
new file mode 100644
index 0000000000..f13052bbf4
--- /dev/null
+++ b/image/test/reftest/color-management/trc-type.html
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html>
+<body>
+ <!-- All of these images should render the same
+ they all have icc profiles with different
+ but equivalent tone reproduction curves.
+
+ The profiles were generated with the following code and added to the images using pngcrush.
+
+ cmsHPROFILE profile = cmsCreate_sRGBProfile();
+
+ cmsAddTag(profile, icSigDeviceMfgDescTag, (LPVOID) "(lcms moz internal)");
+ cmsAddTag(profile, icSigDeviceModelDescTag, (LPVOID) "linear");
+ cmsAddTag(profile, icSigProfileDescriptionTag, (LPVOID) "linear");
+
+ GAMMATABLE linear_trc;
+ linear_trc.nEntries = 0;
+
+ cmsAddTag(profile, icSigRedTRCTag, &linear_trc);
+ cmsAddTag(profile, icSigGreenTRCTag, &linear_trc);
+ cmsAddTag(profile, icSigBlueTRCTag, &linear_trc);
+
+ _cmsSaveProfile(profile, "linear_gen.icc");
+
+ GAMMATABLE linear_curve_trc;
+ linear_curve_trc.nEntries = 1;
+ linear_curve_trc.GammaTable[0] = 0x0100;
+
+ cmsAddTag(profile, icSigRedTRCTag, &linear_curve_trc);
+ cmsAddTag(profile, icSigGreenTRCTag, &linear_curve_trc);
+ cmsAddTag(profile, icSigBlueTRCTag, &linear_curve_trc);
+
+ _cmsSaveProfile(profile, "linear_curve_gen.icc");
+
+ GAMMATABLE *linear_table_trc = malloc(sizeof(GAMMATABLE) + sizeof(short)*2);
+ linear_table_trc->nEntries = 2;
+ linear_table_trc->GammaTable[0] = 0x0;
+ linear_table_trc->GammaTable[1] = 0xffff;
+
+ cmsAddTag(profile, icSigRedTRCTag, linear_table_trc);
+ cmsAddTag(profile, icSigGreenTRCTag, linear_table_trc);
+ cmsAddTag(profile, icSigBlueTRCTag, linear_table_trc);
+
+ _cmsSaveProfile(profile, "linear_table_gen.icc");
+
+ free(linear_table_trc);
+
+ -->
+ <img src="color-curv.png">
+ <img src="color-table.png">
+ <img src="color-lin.png">
+</body>
+</html>