Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
ColorToHSV.cpp
Go to the documentation of this file.
1// 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.
4// HASH=1e0370f12c8aab5b84f9e824074f1e5a
5REG_FIDDLE(ColorToHSV, 256, 256, false, 3) {
6void draw(SkCanvas* canvas) {
7 canvas->drawImage(source.asImage(), 0, 0);
8 for (int y = 0; y < 256; ++y) {
9 for (int x = 0; x < 256; ++x) {
10 SkScalar hsv[3];
12 hsv[1] = 1 - hsv[1];
14 paint.setColor(SkHSVToColor(hsv));
15 canvas->drawRect(SkRect::MakeXYWH(x, y, 1, 1), paint);
16 }
17 }
18}
19} // END FIDDLE
SK_API SkColor SkHSVToColor(U8CPU alpha, const SkScalar hsv[3])
Definition SkColor.cpp:78
static void SkColorToHSV(SkColor color, SkScalar hsv[3])
Definition SkColor.h:169
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
sk_sp< SkImage > asImage() const
Definition SkBitmap.cpp:645
SkColor getColor(int x, int y) const
Definition SkBitmap.h:874
void drawRect(const SkRect &rect, const SkPaint &paint)
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
const Paint & paint
SkBitmap source
Definition examples.cpp:28
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
float SkScalar
Definition extension.cpp:12
double y
double x
static constexpr SkRect MakeXYWH(float x, float y, float w, float h)
Definition SkRect.h:659