blob: 861498ca3d2e27523cbc532cce472d78e596a03a [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=8e3c8a9c1d0d2e9b8bf66e24d274f792
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Pixmap_scalePixels, 256, 256, false, 3) {
Hal Canary87515122019-03-15 14:22:51 -04006void 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);
Adlai Hollerbcfc5542020-08-27 12:44:07 -040012 image->readPixels(nullptr, pixmap, 0, 0);
Hal Canary87515122019-03-15 14:22:51 -040013 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);
Mike Reedce0c8762020-11-23 17:41:35 -050019 pixmap.scalePixels(dstmap, SkSamplingOptions(SkFilterMode::kLinear,
20 SkMipmapMode::kNearest));
Hal Canary87515122019-03-15 14:22:51 -040021 SkBitmap bitmap;
22 bitmap.installPixels(dstmap);
23 canvas->translate(32, 32);
Mike Reedecdd9792021-01-27 20:39:22 -050024 canvas->drawImage(bitmap.asImage(), 0, 0);
Hal Canary87515122019-03-15 14:22:51 -040025 }
26}
27} // END FIDDLE