blob: 3e8796e6bf3b5e708ffefc1dec1ee995a236c4c2 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=1e0370f12c8aab5b84f9e824074f1e5a
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(ColorToHSV, 256, 256, false, 3) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
Mike Reede1f72f92021-01-27 17:09:40 -05007 canvas->drawImage(source.asImage(), 0, 0);
Hal Canary87515122019-03-15 14:22:51 -04008 for (int y = 0; y < 256; ++y) {
9 for (int x = 0; x < 256; ++x) {
10 SkScalar hsv[3];
11 SkColorToHSV(source.getColor(x, y), hsv);
12 hsv[1] = 1 - hsv[1];
13 SkPaint paint;
14 paint.setColor(SkHSVToColor(hsv));
15 canvas->drawRect(SkRect::MakeXYWH(x, y, 1, 1), paint);
16 }
17 }
18}
19} // END FIDDLE