2016-03-04 21:27:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Resources.h"
|
|
|
|
#include "SkCodec.h"
|
|
|
|
#include "SkColorSpace.h"
|
2016-05-23 16:29:29 +00:00
|
|
|
#include "SkColorSpace_Base.h"
|
2016-03-04 21:27:35 +00:00
|
|
|
#include "Test.h"
|
|
|
|
|
2016-03-08 01:25:12 +00:00
|
|
|
#include "png.h"
|
|
|
|
|
2016-05-03 19:13:21 +00:00
|
|
|
static bool almost_equal(float a, float b) {
|
|
|
|
return SkTAbs(a - b) < 0.001f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_space(skiatest::Reporter* r, SkColorSpace* space,
|
|
|
|
const float red[], const float green[], const float blue[],
|
|
|
|
const float expectedGammas[]) {
|
2016-05-17 16:31:20 +00:00
|
|
|
|
2016-05-24 17:16:53 +00:00
|
|
|
const sk_sp<SkGammas>& gammas = as_CSB(space)->gammas();
|
2016-05-17 16:31:20 +00:00
|
|
|
REPORTER_ASSERT(r, almost_equal(expectedGammas[0], gammas->fRed.fValue));
|
|
|
|
REPORTER_ASSERT(r, almost_equal(expectedGammas[1], gammas->fGreen.fValue));
|
|
|
|
REPORTER_ASSERT(r, almost_equal(expectedGammas[2], gammas->fBlue.fValue));
|
|
|
|
|
2016-05-03 19:13:21 +00:00
|
|
|
|
|
|
|
SkMatrix44 mat = space->xyz();
|
|
|
|
const float src[] = {
|
|
|
|
1, 0, 0, 1,
|
|
|
|
0, 1, 0, 1,
|
|
|
|
0, 0, 1, 1,
|
|
|
|
};
|
|
|
|
float dst[4];
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
mat.mapScalars(&src[i*4], dst);
|
|
|
|
REPORTER_ASSERT(r, almost_equal(red[i], dst[0]));
|
|
|
|
REPORTER_ASSERT(r, almost_equal(green[i], dst[1]));
|
|
|
|
REPORTER_ASSERT(r, almost_equal(blue[i], dst[2]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 21:24:47 +00:00
|
|
|
const float g_sRGB_XYZ[] = { 0.4358f, 0.2224f, 0.0139f, // R
|
|
|
|
0.3853f, 0.7170f, 0.0971f, // G
|
|
|
|
0.1430f, 0.0606f, 0.7139f }; // B
|
|
|
|
|
2016-05-03 19:13:21 +00:00
|
|
|
DEF_TEST(ColorSpace_sRGB, r) {
|
|
|
|
const float srgb_gamma[] = { 2.2f, 2.2f, 2.2f };
|
|
|
|
test_space(r, SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named).get(),
|
2016-05-03 21:24:47 +00:00
|
|
|
g_sRGB_XYZ, &g_sRGB_XYZ[3], &g_sRGB_XYZ[6], srgb_gamma);
|
2016-05-03 19:13:21 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-04 21:27:35 +00:00
|
|
|
static SkStreamAsset* resource(const char path[]) {
|
|
|
|
SkString fullPath = GetResourcePath(path);
|
|
|
|
return SkStream::NewFromFile(fullPath.c_str());
|
|
|
|
}
|
|
|
|
|
2016-03-21 15:04:40 +00:00
|
|
|
DEF_TEST(ColorSpaceParsePngICCProfile, r) {
|
2016-03-04 21:27:35 +00:00
|
|
|
SkAutoTDelete<SkStream> stream(resource("color_wheel_with_profile.png"));
|
|
|
|
REPORTER_ASSERT(r, nullptr != stream);
|
2016-03-26 01:38:09 +00:00
|
|
|
if (!stream) {
|
|
|
|
return;
|
|
|
|
}
|
2016-03-04 21:27:35 +00:00
|
|
|
|
2016-03-16 20:53:35 +00:00
|
|
|
SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(stream.release()));
|
2016-03-04 21:27:35 +00:00
|
|
|
REPORTER_ASSERT(r, nullptr != codec);
|
|
|
|
|
2016-03-08 01:25:12 +00:00
|
|
|
#if (PNG_LIBPNG_VER_MAJOR > 1) || (PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR >= 6)
|
2016-03-04 21:27:35 +00:00
|
|
|
SkColorSpace* colorSpace = codec->getColorSpace();
|
|
|
|
REPORTER_ASSERT(r, nullptr != colorSpace);
|
|
|
|
|
2016-05-03 19:13:21 +00:00
|
|
|
const float red[] = { 0.436066f, 0.222488f, 0.013916f };
|
|
|
|
const float green[] = { 0.385147f, 0.716873f, 0.0970764f };
|
|
|
|
const float blue[] = { 0.143066f, 0.0606079f, 0.714096f };
|
2016-05-09 21:27:48 +00:00
|
|
|
const float gamma[] = { 2.2f, 2.2f, 2.2f };
|
2016-05-03 19:13:21 +00:00
|
|
|
test_space(r, colorSpace, red, green, blue, gamma);
|
2016-03-08 01:25:12 +00:00
|
|
|
#endif
|
2016-03-04 21:27:35 +00:00
|
|
|
}
|
2016-03-21 15:04:40 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpaceParseJpegICCProfile, r) {
|
|
|
|
SkAutoTDelete<SkStream> stream(resource("icc-v2-gbr.jpg"));
|
|
|
|
REPORTER_ASSERT(r, nullptr != stream);
|
2016-03-25 21:02:20 +00:00
|
|
|
if (!stream) {
|
|
|
|
return;
|
|
|
|
}
|
2016-03-21 15:04:40 +00:00
|
|
|
|
|
|
|
SkAutoTDelete<SkCodec> codec(SkCodec::NewFromStream(stream.release()));
|
|
|
|
REPORTER_ASSERT(r, nullptr != codec);
|
2016-03-25 21:02:20 +00:00
|
|
|
if (!codec) {
|
|
|
|
return;
|
|
|
|
}
|
2016-03-21 15:04:40 +00:00
|
|
|
|
|
|
|
SkColorSpace* colorSpace = codec->getColorSpace();
|
|
|
|
REPORTER_ASSERT(r, nullptr != colorSpace);
|
|
|
|
|
2016-05-03 19:13:21 +00:00
|
|
|
const float red[] = { 0.385117f, 0.716904f, 0.0970612f };
|
|
|
|
const float green[] = { 0.143051f, 0.0606079f, 0.713913f };
|
|
|
|
const float blue[] = { 0.436035f, 0.222488f, 0.013916f };
|
|
|
|
const float gamma[] = { 2.2f, 2.2f, 2.2f };
|
|
|
|
test_space(r, colorSpace, red, green, blue, gamma);
|
2016-03-21 15:04:40 +00:00
|
|
|
}
|
2016-05-03 21:24:47 +00:00
|
|
|
|
|
|
|
DEF_TEST(ColorSpaceSRGBCompare, r) {
|
|
|
|
// Create an sRGB color space by name
|
|
|
|
sk_sp<SkColorSpace> namedColorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
|
|
|
|
|
2016-05-17 16:31:20 +00:00
|
|
|
|
2016-05-03 21:24:47 +00:00
|
|
|
// Create an sRGB color space by value
|
|
|
|
SkMatrix44 srgbToxyzD50(SkMatrix44::kUninitialized_Constructor);
|
2016-05-17 16:31:20 +00:00
|
|
|
float sRGBGammas[3] = { 2.2f, 2.2f, 2.2f };
|
2016-05-03 21:24:47 +00:00
|
|
|
srgbToxyzD50.set3x3ColMajorf(g_sRGB_XYZ);
|
2016-05-17 16:31:20 +00:00
|
|
|
sk_sp<SkColorSpace> rgbColorSpace = SkColorSpace::NewRGB(sRGBGammas, srgbToxyzD50);
|
2016-05-03 21:24:47 +00:00
|
|
|
REPORTER_ASSERT(r, namedColorSpace == namedColorSpace);
|
|
|
|
|
|
|
|
// Change a single value from the sRGB matrix
|
|
|
|
srgbToxyzD50.set(2, 2, 0.5f);
|
2016-05-17 16:31:20 +00:00
|
|
|
sk_sp<SkColorSpace> strangeColorSpace = SkColorSpace::NewRGB(sRGBGammas, srgbToxyzD50);
|
2016-05-03 21:24:47 +00:00
|
|
|
REPORTER_ASSERT(r, strangeColorSpace != namedColorSpace);
|
|
|
|
}
|