blob: c060c98a2ec58569813d98431d68519253b65b99 [file] [log] [blame]
/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifdef _MSC_VER
#define _CRT_SECURE_NO_WARNINGS
#endif
#include "skcms.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#define expect(cond) \
if (!(cond)) (fprintf(stderr, "expect(" #cond ") failed at %s:%d\n",__FILE__,__LINE__),exit(1))
// Compilers can be a little nervous about exact float equality comparisons.
#define expect_eq(a, b) expect((a) <= (b) && (b) <= (a))
static void test_ICCProfile() {
// Nothing works yet. :)
skcms_ICCProfile profile;
const uint8_t buf[] = { 0x42 };
expect(!skcms_ICCProfile_parse(&profile, buf, sizeof(buf)));
skcms_Matrix3x3 toXYZD50;
expect(!skcms_ICCProfile_toXYZD50(&profile, &toXYZD50));
skcms_TransferFunction transferFunction;
expect(!skcms_ICCProfile_getTransferFunction(&profile, &transferFunction));
}
static void test_Transform() {
// Nothing works yet. :)
skcms_ICCProfile src, dst;
uint8_t buf[16];
for (skcms_PixelFormat fmt = skcms_PixelFormat_RGB_565;
fmt <= skcms_PixelFormat_BGRA_ffff; fmt++) {
expect(!skcms_Transform(buf,fmt,&dst,
buf,fmt,&src, 1));
}
}
static void test_FormatConversions() {
// If we use a single skcms_ICCProfile, we should be able to use skcms_Transform()
// to do skcms_PixelFormat conversions.
skcms_ICCProfile profile;
// We can interpret src as 85 RGB_888 pixels or 64 RGB_8888 pixels.
uint8_t src[256],
dst[85*4];
for (int i = 0; i < 256; i++) {
src[i] = (uint8_t)i;
}
// This should basically be a really complicated memcpy().
expect(skcms_Transform(dst, skcms_PixelFormat_RGBA_8888, &profile,
src, skcms_PixelFormat_RGBA_8888, &profile, 64));
for (int i = 0; i < 256; i++) {
expect(dst[i] == i);
}
// We can do RGBA -> BGRA swaps two ways:
expect(skcms_Transform(dst, skcms_PixelFormat_BGRA_8888, &profile,
src, skcms_PixelFormat_RGBA_8888, &profile, 64));
for (int i = 0; i < 64; i++) {
expect(dst[4*i+0] == 4*i+2);
expect(dst[4*i+1] == 4*i+1);
expect(dst[4*i+2] == 4*i+0);
expect(dst[4*i+3] == 4*i+3);
}
expect(skcms_Transform(dst, skcms_PixelFormat_RGBA_8888, &profile,
src, skcms_PixelFormat_BGRA_8888, &profile, 64));
for (int i = 0; i < 64; i++) {
expect(dst[4*i+0] == 4*i+2);
expect(dst[4*i+1] == 4*i+1);
expect(dst[4*i+2] == 4*i+0);
expect(dst[4*i+3] == 4*i+3);
}
// Let's convert RGB_888 to RGBA_8888...
expect(skcms_Transform(dst, skcms_PixelFormat_RGBA_8888, &profile,
src, skcms_PixelFormat_RGB_888 , &profile, 85));
for (int i = 0; i < 85; i++) {
expect(dst[4*i+0] == 3*i+0);
expect(dst[4*i+1] == 3*i+1);
expect(dst[4*i+2] == 3*i+2);
expect(dst[4*i+3] == 255);
}
// ... and now all the variants of R-B swaps.
expect(skcms_Transform(dst, skcms_PixelFormat_BGRA_8888, &profile,
src, skcms_PixelFormat_BGR_888 , &profile, 85));
for (int i = 0; i < 85; i++) {
expect(dst[4*i+0] == 3*i+0);
expect(dst[4*i+1] == 3*i+1);
expect(dst[4*i+2] == 3*i+2);
expect(dst[4*i+3] == 255);
}
expect(skcms_Transform(dst, skcms_PixelFormat_RGBA_8888, &profile,
src, skcms_PixelFormat_BGR_888 , &profile, 85));
for (int i = 0; i < 85; i++) {
expect(dst[4*i+0] == 3*i+2);
expect(dst[4*i+1] == 3*i+1);
expect(dst[4*i+2] == 3*i+0);
expect(dst[4*i+3] == 255);
}
expect(skcms_Transform(dst, skcms_PixelFormat_BGRA_8888, &profile,
src, skcms_PixelFormat_RGB_888 , &profile, 85));
for (int i = 0; i < 85; i++) {
expect(dst[4*i+0] == 3*i+2);
expect(dst[4*i+1] == 3*i+1);
expect(dst[4*i+2] == 3*i+0);
expect(dst[4*i+3] == 255);
}
// Let's test in-place transforms.
// RGBA_8888 and RGB_888 aren't the same size, so we shouldn't allow this call.
expect(!skcms_Transform(src, skcms_PixelFormat_RGBA_8888, &profile,
src, skcms_PixelFormat_RGB_888, &profile, 85));
// These two should work fine.
expect(skcms_Transform(src, skcms_PixelFormat_RGBA_8888, &profile,
src, skcms_PixelFormat_BGRA_8888, &profile, 64));
for (int i = 0; i < 64; i++) {
expect(src[4*i+0] == 4*i+2);
expect(src[4*i+1] == 4*i+1);
expect(src[4*i+2] == 4*i+0);
expect(src[4*i+3] == 4*i+3);
}
expect(skcms_Transform(src, skcms_PixelFormat_BGRA_8888, &profile,
src, skcms_PixelFormat_RGBA_8888, &profile, 64));
for (int i = 0; i < 64; i++) {
expect(src[4*i+0] == 4*i+0);
expect(src[4*i+1] == 4*i+1);
expect(src[4*i+2] == 4*i+2);
expect(src[4*i+3] == 4*i+3);
}
}
static void test_FormatConversions_565() {
// If we use a single skcms_ICCProfile, we should be able to use skcms_Transform()
// to do skcms_PixelFormat conversions.
skcms_ICCProfile profile;
// This should hit all the unique values of each lane of 565.
uint16_t src[64];
for (int i = 0; i < 64; i++) {
src[i] = (uint16_t)( (i/2) << 0 )
| (uint16_t)( (i/1) << 5 )
| (uint16_t)( (i/2) << 11 );
}
expect(src[ 0] == 0x0000);
expect(src[63] == 0xffff);
uint32_t dst[64];
expect(skcms_Transform(dst, skcms_PixelFormat_RGBA_8888, &profile,
src, skcms_PixelFormat_RGB_565, &profile, 64));
// We'll just spot check these results a bit.
for (int i = 0; i < 64; i++) {
expect((dst[i] >> 24) == 255); // All opaque.
}
expect(dst[ 0] == 0xff000000); // 0 -> 0
expect(dst[20] == 0xff525152); // (10/31) ≈ (82/255) and (20/63) ≈ (81/255)
expect(dst[62] == 0xfffffbff); // (31/31) == (255/255) and (62/63) ≈ (251/255)
expect(dst[63] == 0xffffffff); // 1 -> 1
}
static void test_FormatConversions_16161616() {
skcms_ICCProfile profile;
// We want to hit each 16-bit value, 4 per each of 16384 pixels.
uint64_t* src = malloc(8 * 16384);
for (int i = 0; i < 16384; i++) {
src[i] = (uint64_t)(4*i + 0) << 0
| (uint64_t)(4*i + 1) << 16
| (uint64_t)(4*i + 2) << 32
| (uint64_t)(4*i + 3) << 48;
}
expect(src[ 0] == 0x0003000200010000);
expect(src[ 8127] == 0x7eff7efe7efd7efc); // This should demonstrate interesting rounding.
expect(src[16383] == 0xfffffffefffdfffc);
uint32_t* dst = malloc(4 * 16384);
expect(skcms_Transform(dst, skcms_PixelFormat_RGBA_8888 , &profile,
src, skcms_PixelFormat_RGBA_16161616, &profile, 16384));
// skcms_Transform() will treat src as holding big-endian 16-bit values,
// so the low lanes are actually the most significant byte, and the high least.
expect(dst[ 0] == 0x03020100);
expect(dst[ 8127] == 0xfefefdfc); // 0x7eff rounds down to 0xfe, 0x7efe rounds up to 0xfe.
expect(dst[16383] == 0xfffefdfc);
free(src);
free(dst);
}
static void test_FormatConversions_161616() {
skcms_ICCProfile profile;
// We'll test the same cases as the _16161616() test, as if they were 4 RGB pixels.
uint16_t src[] = { 0x0000, 0x0001, 0x0002,
0x0003, 0x7efc, 0x7efd,
0x7efe, 0x7eff, 0xfffc,
0xfffd, 0xfffe, 0xffff };
uint32_t dst[4];
expect(skcms_Transform(dst, skcms_PixelFormat_RGBA_8888 , &profile,
src, skcms_PixelFormat_RGB_161616, &profile, 4));
expect(dst[0] == 0xff020100);
expect(dst[1] == 0xfffdfc03);
expect(dst[2] == 0xfffcfefe);
expect(dst[3] == 0xfffffefd);
}
static void test_FormatConversions_101010() {
skcms_ICCProfile profile;
uint32_t src = (uint32_t)1023 << 0 // 1.0.
| (uint32_t) 511 << 10 // About 1/2.
| (uint32_t) 4 << 20 // Smallest 10-bit channel that's non-zero in 8-bit.
| (uint32_t) 1 << 30; // 1/3, smallest non-zero alpha.
uint32_t dst;
expect(skcms_Transform(&dst, skcms_PixelFormat_RGBA_8888 , &profile,
&src, skcms_PixelFormat_RGBA_1010102, &profile, 1));
expect(dst == 0x55017fff);
// Same as above, but we'll ignore the 1/3 alpha and fill in 1.0.
expect(skcms_Transform(&dst, skcms_PixelFormat_RGBA_8888 , &profile,
&src, skcms_PixelFormat_RGB_101010x, &profile, 1));
expect(dst == 0xff017fff);
}
static void test_FormatConversions_half() {
skcms_ICCProfile profile;
uint16_t src[] = {
0x3c00, // 1.0
0x3800, // 0.5
0x1805, // Should round up to 0x01
0x1804, // Should round down to 0x00
0x4000, // 2.0
0x03ff, // A denorm, flushed to zero.
0x83ff, // A negative denorm, flushed to zero.
0xbc00, // -1.0
};
uint32_t dst[2];
expect(skcms_Transform(&dst, skcms_PixelFormat_RGBA_8888, &profile,
&src, skcms_PixelFormat_RGBA_hhhh, &profile, 2));
expect(dst[0] == 0x000180ff);
expect(dst[1] == 0x000000ff); // Notice we've clamped 2.0 to 0xff and -1.0 to 0x00.
expect(skcms_Transform(&dst, skcms_PixelFormat_RGBA_8888, &profile,
&src, skcms_PixelFormat_RGB_hhh, &profile, 2));
expect(dst[0] == 0xff0180ff);
expect(dst[1] == 0xff00ff00); // Remember, this corresponds to src[3-5].
float fdst[8];
expect(skcms_Transform(&fdst, skcms_PixelFormat_RGBA_ffff, &profile,
&src, skcms_PixelFormat_RGBA_hhhh, &profile, 2));
expect_eq(fdst[0], 1.0f);
expect_eq(fdst[1], 0.5f);
expect(fdst[2] > 1/510.0f);
expect(fdst[3] < 1/510.0f);
expect_eq(fdst[4], 2.0f);
expect_eq(fdst[5], 0.0f);
expect_eq(fdst[6], 0.0f);
expect_eq(fdst[7], -1.0f);
}
static void test_FormatConversions_float() {
skcms_ICCProfile profile;
float src[] = { 1.0f, 0.5f, 1/255.0f, 1/512.0f };
uint32_t dst;
expect(skcms_Transform(&dst, skcms_PixelFormat_RGBA_8888, &profile,
&src, skcms_PixelFormat_RGBA_ffff, &profile, 1));
expect(dst == 0x000180ff);
// Same as above, but we'll ignore the 1/512 alpha and fill in 1.0.
expect(skcms_Transform(&dst, skcms_PixelFormat_RGBA_8888, &profile,
&src, skcms_PixelFormat_RGB_fff, &profile, 1));
expect(dst == 0xff0180ff);
// Let's make sure each byte converts to the float we expect.
uint32_t bytes[64];
float fdst[4*64];
for (int i = 0; i < 64; i++) {
bytes[i] = 0x03020100 + 0x04040404 * (uint32_t)i;
}
expect(skcms_Transform(&fdst, skcms_PixelFormat_RGBA_ffff, &profile,
&bytes, skcms_PixelFormat_RGBA_8888, &profile, 64));
for (int i = 0; i < 256; i++) {
expect_eq(fdst[i], i*(1/255.0f));
}
}
static const struct {
const char* filename;
bool expect_parse_success;
} profile_test_cases[] = {
{ "profiles/color.org/sRGB2014.icc", true },
{ "profiles/color.org/sRGB_D65_colorimetric.icc", false }, // iccMAX
{ "profiles/color.org/sRGB_D65_MAT.icc", false }, // iccMAX
{ "profiles/color.org/sRGB_ICC_v4_Appearance.icc", true },
{ "profiles/color.org/sRGB_ISO22028.icc", false }, // iccMAX
{ "profiles/color.org/sRGB_v4_ICC_preference.icc", true },
{ "profiles/color.org/Lower_Left.icc", true },
{ "profiles/color.org/Lower_Right.icc", true },
{ "profiles/color.org/Upper_Left.icc", true },
{ "profiles/color.org/Upper_Right.icc", true },
{ "profiles/sRGB_Facebook.icc", true }, // FB 27 entry sRGB table
};
static void load_file(const char* filename, void** buf, size_t* len) {
FILE* fp = fopen(filename, "rb");
expect(fp);
expect(fseek(fp, 0L, SEEK_END) == 0);
long size = ftell(fp);
expect(size > 0);
*len = (size_t)size;
rewind(fp);
*buf = malloc(*len);
expect(*buf);
size_t bytes_read = fread(*buf, 1, *len, fp);
expect(bytes_read == *len);
}
static void test_ICCProfile_parse() {
const int test_cases_count = sizeof(profile_test_cases) / sizeof(profile_test_cases[0]);
for (int i = 0; i < test_cases_count; ++i) {
void* buf = NULL;
size_t len = 0;
load_file(profile_test_cases[i].filename, &buf, &len);
skcms_ICCProfile profile;
bool result = skcms_ICCProfile_parse(&profile, buf, len);
expect(result == profile_test_cases[i].expect_parse_success);
free(buf);
}
}
int main(void) {
test_ICCProfile();
test_Transform();
test_FormatConversions();
test_FormatConversions_565();
test_FormatConversions_16161616();
test_FormatConversions_161616();
test_FormatConversions_101010();
test_FormatConversions_half();
test_FormatConversions_float();
test_ICCProfile_parse();
return 0;
}