blob: c6f18eb1862891ddc2bd84538214dc5bb83e8502 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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.
3#include "fiddle/examples.h"
4// HASH=8e3c8a9c1d0d2e9b8bf66e24d274f792
5REG_FIDDLE(Pixmap_043, 256, 256, false, 3) {
6void draw(SkCanvas* canvas) {
7 SkImageInfo info = SkImageInfo::MakeN32Premul(image->width(), image->height());
8 std::vector<int32_t> srcPixels;
9 int rowBytes = image->width() * 4;
10 srcPixels.resize(image->height() * rowBytes);
11 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
12 image->readPixels(pixmap, 0, 0);
13 for (int offset : { 32, 64, 96 } ) {
14 info = SkImageInfo::MakeN32Premul(image->width() + offset, image->height());
15 rowBytes = info.width() * 4;
16 std::vector<int32_t> dstPixels;
17 dstPixels.resize(image->height() * rowBytes);
18 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
19 pixmap.scalePixels(dstmap, kMedium_SkFilterQuality);
20 SkBitmap bitmap;
21 bitmap.installPixels(dstmap);
22 canvas->translate(32, 32);
23 canvas->drawBitmap(bitmap, 0, 0);
24 }
25}
26} // END FIDDLE