2019-03-15 18:22:51 +00:00
|
|
|
// Copyright 2019 Google LLC.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/fiddle/examples.h"
|
2019-03-15 18:22:51 +00:00
|
|
|
// HASH=d4b35a9d24c32c042bd1f529b8de3c0d
|
2019-03-18 20:06:34 +00:00
|
|
|
REG_FIDDLE(Canvas_drawImageRect_4, 256, 64, false, 0) {
|
2019-03-15 18:22:51 +00:00
|
|
|
void draw(SkCanvas* canvas) {
|
|
|
|
uint32_t pixels[][2] = { { SK_ColorBLACK, SK_ColorWHITE },
|
|
|
|
{ SK_ColorWHITE, SK_ColorBLACK } };
|
|
|
|
SkBitmap bitmap;
|
|
|
|
bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2),
|
|
|
|
(void*) pixels, sizeof(pixels[0]));
|
2020-12-23 16:50:36 +00:00
|
|
|
sk_sp<SkImage> image = bitmap.asImage();
|
2019-03-15 18:22:51 +00:00
|
|
|
SkPaint paint;
|
|
|
|
canvas->scale(4, 4);
|
|
|
|
for (auto alpha : { 50, 100, 150, 255 } ) {
|
|
|
|
paint.setAlpha(alpha);
|
2021-01-28 16:20:41 +00:00
|
|
|
canvas->drawImageRect(image, SkRect::MakeWH(2, 2), SkRect::MakeWH(8, 8),
|
|
|
|
SkSamplingOptions(), &paint, SkCanvas::kStrict_SrcRectConstraint);
|
2019-03-15 18:22:51 +00:00
|
|
|
canvas->translate(8, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // END FIDDLE
|