Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Bitmap_setPixels.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=f0db16e06c9a1436917c8179f8c1718f
5REG_FIDDLE(Bitmap_setPixels, 256, 50, false, 0) {
6void draw(SkCanvas* canvas) {
7 uint8_t set1[5] = { 0xCA, 0xDA, 0xCA, 0xC9, 0xA3 };
8 uint8_t set2[5] = { 0xAC, 0xA8, 0x89, 0x47, 0x87 };
11 canvas->scale(10, 50);
12 canvas->drawImage(bitmap.asImage(), 0, 0);
13 bitmap.setPixels(set2);
14 canvas->drawImage(bitmap.asImage(), 10, 0);
15}
16} // END FIDDLE
@ kOpaque_SkAlphaType
pixel is opaque
Definition SkAlphaType.h:28
@ kGray_8_SkColorType
pixel with grayscale level in 8-bit byte
Definition SkColorType.h:35
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void scale(SkScalar sx, SkScalar sy)
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)