51e15a69ce
Change-Id: I4b6259590fa0693ee0522b4999a1c0fe250b173d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/212504 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
119 lines
3.9 KiB
C++
119 lines
3.9 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "gm/gm.h"
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkFont.h"
|
|
#include "include/core/SkFontArguments.h"
|
|
#include "include/core/SkFontMgr.h"
|
|
#include "include/core/SkFontTypes.h"
|
|
#include "include/core/SkPaint.h"
|
|
#include "include/core/SkRect.h"
|
|
#include "include/core/SkRefCnt.h"
|
|
#include "include/core/SkScalar.h"
|
|
#include "include/core/SkSize.h"
|
|
#include "include/core/SkStream.h"
|
|
#include "include/core/SkString.h"
|
|
#include "include/core/SkTypeface.h"
|
|
#include "include/core/SkTypes.h"
|
|
#include "tools/Resources.h"
|
|
|
|
#include <string.h>
|
|
#include <memory>
|
|
#include <utility>
|
|
|
|
namespace skiagm {
|
|
|
|
class FontScalerDistortableGM : public GM {
|
|
public:
|
|
FontScalerDistortableGM() {
|
|
this->setBGColor(0xFFFFFFFF);
|
|
}
|
|
|
|
protected:
|
|
|
|
SkString onShortName() override {
|
|
return SkString("fontscalerdistortable");
|
|
}
|
|
|
|
SkISize onISize() override {
|
|
return SkISize::Make(550, 700);
|
|
}
|
|
|
|
DrawResult onDraw(SkCanvas* canvas, SkString* errorMsg) override {
|
|
SkPaint paint;
|
|
paint.setAntiAlias(true);
|
|
SkFont font;
|
|
font.setEdging(SkFont::Edging::kSubpixelAntiAlias);
|
|
sk_sp<SkFontMgr> fontMgr(SkFontMgr::RefDefault());
|
|
|
|
std::unique_ptr<SkStreamAsset> distortableStream(GetResourceAsStream("fonts/Distortable.ttf"));
|
|
sk_sp<SkTypeface> distortable(MakeResourceAsTypeface("fonts/Distortable.ttf"));
|
|
|
|
if (!distortableStream) {
|
|
*errorMsg = "No distortableStream";
|
|
return DrawResult::kFail;
|
|
}
|
|
const char* text = "abc";
|
|
const size_t textLen = strlen(text);
|
|
|
|
for (int j = 0; j < 2; ++j) {
|
|
for (int i = 0; i < 5; ++i) {
|
|
SkScalar x = SkIntToScalar(10);
|
|
SkScalar y = SkIntToScalar(20);
|
|
|
|
SkFourByteTag tag = SkSetFourByteTag('w','g','h','t');
|
|
SkScalar styleValue = SkDoubleToScalar(0.5 + (5 * j + i) * ((2.0 - 0.5) / (2 * 5)));
|
|
SkFontArguments::VariationPosition::Coordinate coordinates[] = {{tag, styleValue}};
|
|
SkFontArguments::VariationPosition position =
|
|
{ coordinates, SK_ARRAY_COUNT(coordinates) };
|
|
if (j == 0 && distortable) {
|
|
sk_sp<SkTypeface> clone = distortable->makeClone(
|
|
SkFontArguments().setVariationDesignPosition(position));
|
|
font.setTypeface(clone ? std::move(clone) : distortable);
|
|
} else {
|
|
font.setTypeface(fontMgr->makeFromStream(
|
|
distortableStream->duplicate(),
|
|
SkFontArguments().setVariationDesignPosition(position)));
|
|
}
|
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
canvas->translate(SkIntToScalar(30 + i * 100), SkIntToScalar(20));
|
|
canvas->rotate(SkIntToScalar(i * 5), x, y * 10);
|
|
|
|
{
|
|
SkPaint p;
|
|
p.setAntiAlias(true);
|
|
SkRect r;
|
|
r.set(x - SkIntToScalar(3), SkIntToScalar(15),
|
|
x - SkIntToScalar(1), SkIntToScalar(280));
|
|
canvas->drawRect(r, p);
|
|
}
|
|
|
|
for (int ps = 6; ps <= 22; ps++) {
|
|
font.setSize(SkIntToScalar(ps));
|
|
canvas->drawSimpleText(text, textLen, SkTextEncoding::kUTF8, x, y, font, paint);
|
|
y += font.getMetrics(nullptr);
|
|
}
|
|
}
|
|
canvas->translate(0, SkIntToScalar(360));
|
|
font.setSubpixel(true);
|
|
font.setLinearMetrics(true);
|
|
}
|
|
return DrawResult::kOk;
|
|
}
|
|
|
|
private:
|
|
typedef GM INHERITED;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_GM( return new FontScalerDistortableGM; )
|
|
|
|
}
|