2012-07-20 11:20:32 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gm.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkPaint.h"
|
2015-08-05 20:57:49 +00:00
|
|
|
#include "SkPath.h"
|
2012-07-20 11:20:32 +00:00
|
|
|
#include "SkRandom.h"
|
2012-07-20 11:34:36 +00:00
|
|
|
#include "SkTemplates.h"
|
2012-07-20 11:20:32 +00:00
|
|
|
|
2015-09-09 15:16:41 +00:00
|
|
|
static void strokePath(SkCanvas* canvas, const SkPath& path) {
|
2012-08-07 15:53:00 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setColor(SK_ColorRED);
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
canvas->drawPath(path, paint);
|
2015-09-09 15:16:41 +00:00
|
|
|
}
|
|
|
|
DEF_SIMPLE_GM(getpostextpath, canvas, 480, 780) {
|
2012-08-07 15:53:00 +00:00
|
|
|
// explicitly add spaces, to test a prev. bug
|
|
|
|
const char* text = "Ham bur ge fons";
|
2014-01-27 13:42:58 +00:00
|
|
|
int len = SkToInt(strlen(text));
|
2012-08-07 15:53:00 +00:00
|
|
|
SkPath path;
|
2012-07-20 11:20:32 +00:00
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
2015-07-24 19:09:25 +00:00
|
|
|
sk_tool_utils::set_portable_typeface(&paint);
|
2012-07-20 11:20:32 +00:00
|
|
|
paint.setTextSize(SkIntToScalar(48));
|
2012-08-07 15:53:00 +00:00
|
|
|
|
|
|
|
canvas->translate(SkIntToScalar(10), SkIntToScalar(64));
|
|
|
|
|
|
|
|
canvas->drawText(text, len, 0, 0, paint);
|
|
|
|
paint.getTextPath(text, len, 0, 0, &path);
|
|
|
|
strokePath(canvas, path);
|
|
|
|
path.reset();
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-07-20 11:20:32 +00:00
|
|
|
SkAutoTArray<SkPoint> pos(len);
|
|
|
|
SkAutoTArray<SkScalar> widths(len);
|
|
|
|
paint.getTextWidths(text, len, &widths[0]);
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2014-12-15 20:54:51 +00:00
|
|
|
SkRandom rand;
|
2012-07-20 11:20:32 +00:00
|
|
|
SkScalar x = SkIntToScalar(20);
|
|
|
|
SkScalar y = SkIntToScalar(100);
|
2014-01-27 13:42:58 +00:00
|
|
|
for (int i = 0; i < len; ++i) {
|
2012-07-20 11:20:32 +00:00
|
|
|
pos[i].set(x, y + rand.nextSScalar1() * 24);
|
|
|
|
x += widths[i];
|
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-08-07 15:53:00 +00:00
|
|
|
canvas->translate(0, SkIntToScalar(64));
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-08-07 15:53:00 +00:00
|
|
|
canvas->drawPosText(text, len, &pos[0], paint);
|
2012-07-20 11:20:32 +00:00
|
|
|
paint.getPosTextPath(text, len, &pos[0], &path);
|
2012-08-07 15:53:00 +00:00
|
|
|
strokePath(canvas, path);
|
2015-09-09 15:16:41 +00:00
|
|
|
}
|