Flutter Engine
The Flutter Engine
Pixmap_scalePixels.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(Pixmap_scalePixels, 256, 256, false, 3) {
5void draw(SkCanvas* canvas) {
7 std::vector<int32_t> srcPixels;
8 int rowBytes = image->width() * 4;
9 srcPixels.resize(image->height() * rowBytes);
10 SkPixmap pixmap(info, (const void*) &srcPixels.front(), rowBytes);
11 image->readPixels(nullptr, pixmap, 0, 0);
12 for (int offset : { 32, 64, 96 } ) {
14 rowBytes = info.width() * 4;
15 std::vector<int32_t> dstPixels;
16 dstPixels.resize(image->height() * rowBytes);
17 SkPixmap dstmap(info, &dstPixels.front(), rowBytes);
21 bitmap.installPixels(dstmap);
22 canvas->translate(32, 32);
23 canvas->drawImage(bitmap.asImage(), 0, 0);
24 }
25}
26} // END FIDDLE
static void info(const char *fmt,...) SK_PRINTF_LIKE(1
Definition: DM.cpp:213
REG_FIDDLE(Pixmap_scalePixels, 256, 256, false, 3)
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void translate(SkScalar dx, SkScalar dy)
Definition: SkCanvas.cpp:1278
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
bool scalePixels(const SkPixmap &dst, const SkSamplingOptions &) const
sk_sp< const SkImage > image
Definition: SkRecords.h:269
Definition: bitmap.py:1
SkSamplingOptions(SkFilterMode::kLinear))
SeparatedVector2 offset
static SkImageInfo MakeN32Premul(int width, int height)