Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Bitmap_readPixels_2.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=e9f70cbc9827097449a386ec7a8a8188
5REG_FIDDLE(Bitmap_readPixels_2, 256, 256, false, 3) {
6void draw(SkCanvas* canvas) {
7 std::vector<int32_t> srcPixels;
8 srcPixels.resize(source.height() * source.rowBytes());
9 for (int y = 0; y < 4; ++y) {
10 for (int x = 0; x < 4; ++x) {
12 &srcPixels.front() + x * source.height() * source.width() / 4 +
13 y * source.width() / 4, source.rowBytes());
14 source.readPixels(pixmap, x * source.width() / 4, y * source.height() / 4);
15 }
16 }
17 canvas->scale(.5f, .5f);
20 &srcPixels.front(), source.rowBytes());
21 canvas->drawImage(bitmap.asImage(), 0, 0);
22}
23} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
int width() const
Definition SkBitmap.h:149
size_t rowBytes() const
Definition SkBitmap.h:238
bool readPixels(const SkImageInfo &dstInfo, void *dstPixels, size_t dstRowBytes, int srcX, int srcY) const
Definition SkBitmap.cpp:488
int height() const
Definition SkBitmap.h:158
void scale(SkScalar sx, SkScalar sy)
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
SkBitmap source
Definition examples.cpp:28
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
double y
double x
static SkImageInfo MakeN32Premul(int width, int height)