Flutter Engine
The Flutter Engine
Canvas_const_SkBitmap_const_SkSurfaceProps.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(Canvas_const_SkBitmap_const_SkSurfaceProps, 256, 256, true, 0) {
5void draw(SkCanvas* ) {
7 // create a bitmap 5 wide and 11 high
8 bitmap.allocPixels(SkImageInfo::MakeN32Premul(5, 11));
10 canvas.clear(SK_ColorWHITE); // white is Unpremultiplied, in ARGB order
11 SkPixmap pixmap; // provides guaranteed access to the drawn pixels
12 if (!canvas.peekPixels(&pixmap)) {
13 SkDebugf("peekPixels should never fail.\n");
14 }
15 const SkPMColor* pixels = pixmap.addr32(); // points to top-left of bitmap
16 SkPMColor pmWhite = pixels[0]; // the Premultiplied format may vary
17 SkPaint paint; // by default, draws black, 12 point text
18 SkFont font = SkFont(fontMgr->matchFamilyStyle(nullptr, {}));
19 canvas.drawString("!", 1, 10, font, paint); // 1 char at baseline (1, 10)
20 for (int y = 0; y < bitmap.height(); ++y) {
21 for (int x = 0; x < bitmap.width(); ++x) {
22 SkDebugf("%c", *pixels++ == pmWhite ? '-' : 'x');
23 }
24 SkDebugf("\n");
25 }
26}
27} // END FIDDLE
REG_FIDDLE(Canvas_const_SkBitmap_const_SkSurfaceProps, 256, 256, true, 0)
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
@ kUnknown_SkPixelGeometry
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
bool peekPixels(SkPixmap *pixmap)
Definition: SkCanvas.cpp:1237
void clear(SkColor color)
Definition: SkCanvas.h:1199
void drawString(const char str[], SkScalar x, SkScalar y, const SkFont &font, const SkPaint &paint)
Definition: SkCanvas.h:1803
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)