blob: 8b44256a9ba60c8b3b351621e5e7806e7c628291 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001#if 0 // Disabled until updated to use current API.
2// Copyright 2019 Google LLC.
3// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4#include "fiddle/examples.h"
5// HASH=3cad18678254526be66ef162eecd1d23
6REG_FIDDLE(Font_033, 280, 128, false, 0) {
7void draw(SkCanvas* canvas) {
8 SkPaint paint;
9 paint.setAntiAlias(true);
10 paint.setTextSize(50);
11 const char str[] = "Breakfast";
12 const int count = sizeof(str) - 1;
13 canvas->drawText(str, count, 25, 50, paint);
14 SkScalar measuredWidth;
15 SkFont font;
16 font.setSize(50);
17 int partialBytes = font.breakText(str, count, kUTF8_SkTextEncoding,
18 100, &measuredWidth);
19 canvas->drawText(str, partialBytes, 25, 100, paint);
20 canvas->drawLine(25, 60, 25 + 100, 60, paint);
21 canvas->drawLine(25, 110, 25 + measuredWidth, 110, paint);
22}
23} // END FIDDLE
24#endif // Disabled until updated to use current API.