blob: 2a7050c9710c082e317c21ab94df136c70ff6ece [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=0cc2c6a0dffa61a88711534bd3d43b40
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Bitmap_peekPixels, 256, 256, true, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkBitmap bitmap;
8 bitmap.allocPixels(SkImageInfo::MakeN32Premul(6, 11));
9 SkCanvas offscreen(bitmap);
10 offscreen.clear(SK_ColorWHITE);
11 SkPaint paint;
12 SkFont font;
13 offscreen.drawString("?", 0, 10, font, paint);
14 SkPixmap pixmap;
15 if (bitmap.peekPixels(&pixmap)) {
16 const SkPMColor* pixels = pixmap.addr32();
17 SkPMColor pmWhite = pixels[0];
18 for (int y = 0; y < bitmap.height(); ++y) {
19 for (int x = 0; x < bitmap.width(); ++x) {
20 SkDebugf("%c", *pixels++ == pmWhite ? '-' : 'x');
21 }
22 SkDebugf("\n");
23 }
24 }
25}
26} // END FIDDLE