blob: 4b3abea6e9918d34667c32e23851918e284cc069 [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=24b9cf7e6f9a08394e1e07413bd8733a
5REG_FIDDLE(Canvas_045, 256, 128, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 SkFont font;
9 canvas->scale(4, 6);
10 canvas->drawString("truth", 2, 10, font, paint);
11 SkMatrix matrix;
12 matrix.setScale(2.8f, 6);
13 canvas->setMatrix(matrix);
14 canvas->drawString("consequences", 2, 20, font, paint);
15}
16} // END FIDDLE