2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2009-03-09 18:12:13 +00:00
|
|
|
#include "SampleCode.h"
|
|
|
|
#include "SkView.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkTypeface.h"
|
|
|
|
#include "SkPath.h"
|
|
|
|
#include "SkRegion.h"
|
|
|
|
#include "SkShader.h"
|
|
|
|
#include "SkUtils.h"
|
|
|
|
#include "Sk1DPathEffect.h"
|
|
|
|
#include "SkCornerPathEffect.h"
|
|
|
|
#include "SkPathMeasure.h"
|
|
|
|
#include "SkRandom.h"
|
|
|
|
#include "SkColorPriv.h"
|
|
|
|
#include "SkColorFilter.h"
|
|
|
|
#include "SkDither.h"
|
|
|
|
|
|
|
|
static const struct {
|
|
|
|
const char* fName;
|
|
|
|
SkTypeface::Style fStyle;
|
|
|
|
} gFaces[] = {
|
|
|
|
{ NULL, SkTypeface::kNormal },
|
|
|
|
{ NULL, SkTypeface::kBold },
|
|
|
|
{ "serif", SkTypeface::kNormal },
|
|
|
|
{ "serif", SkTypeface::kBold },
|
|
|
|
{ "serif", SkTypeface::kItalic },
|
|
|
|
{ "serif", SkTypeface::kBoldItalic },
|
|
|
|
{ "monospace", SkTypeface::kNormal }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int gFaceCount = SK_ARRAY_COUNT(gFaces);
|
|
|
|
|
2011-05-02 17:33:45 +00:00
|
|
|
class FontScalerTestView : public SampleView {
|
2009-03-09 18:12:13 +00:00
|
|
|
SkTypeface* fFaces[gFaceCount];
|
|
|
|
|
|
|
|
public:
|
2012-08-23 18:19:56 +00:00
|
|
|
FontScalerTestView() {
|
2009-03-09 18:12:13 +00:00
|
|
|
for (int i = 0; i < gFaceCount; i++) {
|
|
|
|
fFaces[i] = SkTypeface::CreateFromName(gFaces[i].fName,
|
|
|
|
gFaces[i].fStyle);
|
|
|
|
}
|
2011-08-23 15:30:44 +00:00
|
|
|
// this->setBGColor(0xFFDDDDDD);
|
2009-03-09 18:12:13 +00:00
|
|
|
}
|
2011-02-07 15:30:46 +00:00
|
|
|
|
2009-03-09 18:12:13 +00:00
|
|
|
virtual ~FontScalerTestView() {
|
|
|
|
for (int i = 0; i < gFaceCount; i++) {
|
2011-02-07 15:30:46 +00:00
|
|
|
SkSafeUnref(fFaces[i]);
|
2009-03-09 18:12:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// overrides from SkEventSink
|
|
|
|
virtual bool onQuery(SkEvent* evt) {
|
|
|
|
if (SampleCode::TitleQ(*evt)) {
|
|
|
|
SampleCode::TitleR(evt, "FontScaler Test");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return this->INHERITED::onQuery(evt);
|
|
|
|
}
|
2011-02-07 15:30:46 +00:00
|
|
|
|
2011-07-13 14:06:19 +00:00
|
|
|
static void rotate_about(SkCanvas* canvas, SkScalar degrees, SkScalar px, SkScalar py) {
|
|
|
|
canvas->translate(px, py);
|
|
|
|
canvas->rotate(degrees);
|
|
|
|
canvas->translate(-px, -py);
|
|
|
|
}
|
|
|
|
|
2011-05-02 17:33:45 +00:00
|
|
|
virtual void onDrawContent(SkCanvas* canvas) {
|
2009-03-16 18:46:55 +00:00
|
|
|
SkPaint paint;
|
|
|
|
|
2009-03-16 18:47:55 +00:00
|
|
|
// test handling of obscene cubic values (currently broken)
|
|
|
|
if (false) {
|
2009-03-16 18:46:55 +00:00
|
|
|
SkPoint pts[4];
|
2011-04-14 17:53:24 +00:00
|
|
|
pts[0].set(1.61061274e+09f, 6291456);
|
2013-11-25 19:44:07 +00:00
|
|
|
pts[1].set(-7.18397061e+15f,
|
|
|
|
-1.53091184e+13f);
|
|
|
|
pts[2].set(-1.30077315e+16f,
|
|
|
|
-2.77196141e+13f);
|
|
|
|
pts[3].set(-1.30077315e+16f,
|
|
|
|
-2.77196162e+13f);
|
2011-02-07 15:30:46 +00:00
|
|
|
|
2009-03-16 18:46:55 +00:00
|
|
|
SkPath path;
|
|
|
|
path.moveTo(pts[0]);
|
|
|
|
path.cubicTo(pts[1], pts[2], pts[3]);
|
|
|
|
canvas->drawPath(path, paint);
|
|
|
|
}
|
2011-02-07 15:30:46 +00:00
|
|
|
|
2011-08-23 15:30:44 +00:00
|
|
|
// paint.setSubpixelText(true);
|
2009-03-09 18:12:13 +00:00
|
|
|
paint.setAntiAlias(true);
|
2011-04-14 17:53:24 +00:00
|
|
|
paint.setLCDRenderText(true);
|
2011-02-07 15:30:46 +00:00
|
|
|
SkSafeUnref(paint.setTypeface(SkTypeface::CreateFromName("Times Roman", SkTypeface::kNormal)));
|
|
|
|
|
2009-03-10 04:02:30 +00:00
|
|
|
// const char* text = "abcdefghijklmnopqrstuvwxyz";
|
2011-08-23 15:30:44 +00:00
|
|
|
const char* text = "Hamburgefons ooo mmm";
|
2011-07-13 14:06:19 +00:00
|
|
|
const size_t textLen = strlen(text);
|
|
|
|
|
|
|
|
for (int j = 0; j < 2; ++j) {
|
|
|
|
for (int i = 0; i < 6; ++i) {
|
|
|
|
SkScalar x = SkIntToScalar(10);
|
|
|
|
SkScalar y = SkIntToScalar(20);
|
|
|
|
|
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
2011-10-24 21:09:40 +00:00
|
|
|
canvas->translate(SkIntToScalar(50 + i * 230),
|
|
|
|
SkIntToScalar(20));
|
2012-04-06 20:01:46 +00:00
|
|
|
rotate_about(canvas, SkIntToScalar(i * 5), x, y * 10);
|
2011-07-13 14:06:19 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
SkPaint p;
|
|
|
|
p.setAntiAlias(true);
|
|
|
|
SkRect r;
|
|
|
|
r.set(x-3, 15, x-1, 280);
|
|
|
|
canvas->drawRect(r, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
int index = 0;
|
2011-08-23 15:30:44 +00:00
|
|
|
for (int ps = 6; ps <= 22; ps++) {
|
2011-07-13 14:06:19 +00:00
|
|
|
paint.setTextSize(SkIntToScalar(ps));
|
|
|
|
canvas->drawText(text, textLen, x, y, paint);
|
|
|
|
y += paint.getFontMetrics(NULL);
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
canvas->translate(0, 400);
|
2011-08-23 15:30:44 +00:00
|
|
|
paint.setSubpixelText(true);
|
2009-03-09 18:12:13 +00:00
|
|
|
}
|
|
|
|
}
|
2011-02-07 15:30:46 +00:00
|
|
|
|
2009-03-09 18:12:13 +00:00
|
|
|
private:
|
|
|
|
typedef SkView INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static SkView* MyFactory() { return new FontScalerTestView; }
|
|
|
|
static SkViewRegister reg(MyFactory);
|