Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Image_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=b77a73c4baa63a4a8e2a4fdd96144d0b
5REG_FIDDLE(Image_readPixels_2, 256, 256, false, 3) {
6void draw(SkCanvas* canvas) {
7 std::vector<int32_t> srcPixels;
8 int rowBytes = image->width() * 4;
9 int quarterWidth = image->width() / 4;
10 int quarterHeight = image->height() / 4;
11 srcPixels.resize(image->height() * rowBytes);
12 for (int y = 0; y < 4; ++y) {
13 for (int x = 0; x < 4; ++x) {
14 SkPixmap pixmap(SkImageInfo::MakeN32Premul(quarterWidth, quarterHeight),
15 &srcPixels.front() + x * image->height() * quarterWidth +
16 y * quarterWidth, rowBytes);
17 image->readPixels(nullptr, pixmap, x * quarterWidth, y * quarterHeight);
18 }
19 }
20 canvas->scale(.5f, .5f);
23 &srcPixels.front(), rowBytes);
24 canvas->drawImage(bitmap.asImage(), 0, 0);
25}
26} // END FIDDLE
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
bool readPixels(GrDirectContext *context, const SkImageInfo &dstInfo, void *dstPixels, size_t dstRowBytes, int srcX, int srcY, CachingHint cachingHint=kAllow_CachingHint) const
Definition SkImage.cpp:42
int width() const
Definition SkImage.h:285
int height() const
Definition SkImage.h:291
sk_sp< SkImage > image
Definition examples.cpp:29
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
double y
double x
static SkImageInfo MakeN32Premul(int width, int height)