blob: 0f2eb7983e28c47b41b6e4e487f282845145bbff [file] [log] [blame]
reed@google.comca0062e2012-07-20 11:20:32 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9#include "SkCanvas.h"
10#include "SkPaint.h"
11#include "SkRandom.h"
reed@google.com00583242012-07-20 11:34:36 +000012#include "SkTemplates.h"
reed@google.comca0062e2012-07-20 11:20:32 +000013
14class GetPosTextPathGM : public skiagm::GM {
15public:
16 GetPosTextPathGM() {}
17
18protected:
19 SkString onShortName() {
20 return SkString("getpostextpath");
21 }
22
23 SkISize onISize() { return skiagm::make_isize(480, 780); }
24
reed@google.com7b4531f2012-08-07 15:53:00 +000025 static void strokePath(SkCanvas* canvas, const SkPath& path) {
26 SkPaint paint;
27 paint.setAntiAlias(true);
28 paint.setColor(SK_ColorRED);
29 paint.setStyle(SkPaint::kStroke_Style);
30 canvas->drawPath(path, paint);
31 }
32
reed@google.comca0062e2012-07-20 11:20:32 +000033 virtual void onDraw(SkCanvas* canvas) {
reed@google.com7b4531f2012-08-07 15:53:00 +000034 // explicitly add spaces, to test a prev. bug
35 const char* text = "Ham bur ge fons";
reed@google.comca0062e2012-07-20 11:20:32 +000036 size_t len = strlen(text);
reed@google.com7b4531f2012-08-07 15:53:00 +000037 SkPath path;
reed@google.comca0062e2012-07-20 11:20:32 +000038
39 SkPaint paint;
40 paint.setAntiAlias(true);
41 paint.setTextSize(SkIntToScalar(48));
reed@google.com7b4531f2012-08-07 15:53:00 +000042
43 canvas->translate(SkIntToScalar(10), SkIntToScalar(64));
44
45 canvas->drawText(text, len, 0, 0, paint);
46 paint.getTextPath(text, len, 0, 0, &path);
47 strokePath(canvas, path);
48 path.reset();
rmistry@google.comd6176b02012-08-23 18:14:13 +000049
reed@google.comca0062e2012-07-20 11:20:32 +000050 SkAutoTArray<SkPoint> pos(len);
51 SkAutoTArray<SkScalar> widths(len);
52 paint.getTextWidths(text, len, &widths[0]);
rmistry@google.comd6176b02012-08-23 18:14:13 +000053
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000054 SkLCGRandom rand;
reed@google.comca0062e2012-07-20 11:20:32 +000055 SkScalar x = SkIntToScalar(20);
56 SkScalar y = SkIntToScalar(100);
57 for (size_t i = 0; i < len; ++i) {
58 pos[i].set(x, y + rand.nextSScalar1() * 24);
59 x += widths[i];
60 }
rmistry@google.comd6176b02012-08-23 18:14:13 +000061
reed@google.com7b4531f2012-08-07 15:53:00 +000062 canvas->translate(0, SkIntToScalar(64));
rmistry@google.comd6176b02012-08-23 18:14:13 +000063
reed@google.com7b4531f2012-08-07 15:53:00 +000064 canvas->drawPosText(text, len, &pos[0], paint);
reed@google.comca0062e2012-07-20 11:20:32 +000065 paint.getPosTextPath(text, len, &pos[0], &path);
reed@google.com7b4531f2012-08-07 15:53:00 +000066 strokePath(canvas, path);
reed@google.comca0062e2012-07-20 11:20:32 +000067 }
68};
69
70//////////////////////////////////////////////////////////////////////////////
71
72static skiagm::GM* F(void*) { return new GetPosTextPathGM; }
reed@google.comca0062e2012-07-20 11:20:32 +000073static skiagm::GMRegistry gR(F);