1 #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 "tools/fiddle/examples.h"
5 // HASH=3cad18678254526be66ef162eecd1d23
REG_FIDDLE(Font_breakText, 280, 128, false, 0)6 REG_FIDDLE(Font_breakText, 280, 128, false, 0) {
7 void 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, SkTextEncoding::kUTF8,
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.
25