blob: b9d6c1588e18ba2f86a75297bacddc1800a02837 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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.
3#include "fiddle/examples.h"
4// HASH=737e721c7d9e0f367d25521a1b823b9d
5REG_FIDDLE(Bitmap_039, 256, 128, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkBitmap bitmap;
8 bitmap.allocPixelsFlags(SkImageInfo::MakeN32(44, 16, kPremul_SkAlphaType),
9 SkBitmap::kZeroPixels_AllocFlag);
10 SkCanvas offscreen(bitmap);
11 SkPaint paint;
12 SkFont font;
13 offscreen.drawString("!@#$%", 0, 12, font, paint);
14 canvas->scale(6, 6);
15 canvas->drawBitmap(bitmap, 0, 0);
16 canvas->drawBitmap(bitmap, 8, 8);
17}
18} // END FIDDLE