Flutter Engine
The Flutter Engine
Bitmap_writePixels.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.
4REG_FIDDLE(Bitmap_writePixels, 256, 256, false, 3) {
5void draw(SkCanvas* canvas) {
6 std::vector<int32_t> srcPixels;
7 int width = image->width();
8 int height = image->height();
9 srcPixels.resize(height * width * 4);
10 SkPixmap pixmap(SkImageInfo::MakeN32Premul(width, height), (const void*) &srcPixels.front(),
11 width * 4);
12 image->readPixels(nullptr, pixmap, 0, 0);
13 canvas->scale(.5f, .5f);
14 width /= 4;
15 height /= 4;
16 for (int y = 0; y < 4; ++y) {
17 for (int x = 0; x < 4; ++x) {
20 bitmap.writePixels(pixmap, -y * width, -x * height);
21 canvas->drawImage(bitmap.asImage(), x * width, y * height);
22 }
23 }
24}
25} // END FIDDLE
REG_FIDDLE(Bitmap_writePixels, 256, 256, false, 3)
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void scale(SkScalar sx, SkScalar sy)
Definition: SkCanvas.cpp:1289
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
double y
double x
sk_sp< const SkImage > image
Definition: SkRecords.h:269
Definition: bitmap.py:1
int32_t height
int32_t width
static SkImageInfo MakeN32Premul(int width, int height)