Flutter Engine
The Flutter Engine
Functions
Bitmap_peekPixels.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Bitmap_peekPixels, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Bitmap_peekPixels  ,
256  ,
256  ,
true  ,
 
)

Definition at line 4 of file Bitmap_peekPixels.cpp.

4 {
5void draw(SkCanvas* canvas) {
7 bitmap.allocPixels(SkImageInfo::MakeN32Premul(6, 11));
8 SkCanvas offscreen(bitmap);
9 offscreen.clear(SK_ColorWHITE);
11 SkFont font = SkFont(fontMgr->matchFamilyStyle(nullptr, {}));
12 offscreen.drawString("?", 0, 10, font, paint);
13 SkPixmap pixmap;
14 if (bitmap.peekPixels(&pixmap)) {
15 const SkPMColor* pixels = pixmap.addr32();
16 SkPMColor pmWhite = pixels[0];
17 for (int y = 0; y < bitmap.height(); ++y) {
18 for (int x = 0; x < bitmap.width(); ++x) {
19 SkDebugf("%c", *pixels++ == pmWhite ? '-' : 'x');
20 }
21 SkDebugf("\n");
22 }
23 }
24}
25} // END FIDDLE
uint32_t SkPMColor
Definition: SkColor.h:205
constexpr SkColor SK_ColorWHITE
Definition: SkColor.h:122
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
sk_sp< SkTypeface > matchFamilyStyle(const char familyName[], const SkFontStyle &) const
Definition: SkFontMgr.cpp:109
Definition: SkFont.h:35
const uint32_t * addr32() const
Definition: SkPixmap.h:352
const Paint & paint
Definition: color_source.cc:38
sk_sp< SkFontMgr > fontMgr
Definition: examples.cpp:32
double y
double x
Definition: bitmap.py:1
font
Font Metadata and Metrics.
static SkImageInfo MakeN32Premul(int width, int height)