blob: 2bb7a3e0ea996e8179e3cffe3278466d4db2e736 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=b77a73c4baa63a4a8e2a4fdd96144d0b
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Image_readPixels_2, 256, 256, false, 3) {
Hal Canary87515122019-03-15 14:22:51 -04006void 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);
Adlai Hollerbcfc5542020-08-27 12:44:07 -040017 image->readPixels(nullptr, pixmap, x * quarterWidth, y * quarterHeight);
Hal Canary87515122019-03-15 14:22:51 -040018 }
19 }
20 canvas->scale(.5f, .5f);
21 SkBitmap bitmap;
22 bitmap.installPixels(SkImageInfo::MakeN32Premul(image->width(), image->height()),
23 &srcPixels.front(), rowBytes);
Mike Reedecdd9792021-01-27 20:39:22 -050024 canvas->drawImage(bitmap.asImage(), 0, 0);
Hal Canary87515122019-03-15 14:22:51 -040025}
26} // END FIDDLE