blob: 0ecca63034a291a1eddd00fe57c06695d1ef8d83 [file] [log] [blame]
Ben Wagner37a06c02018-06-22 21:11:00 +00001/*
2 * Copyright 2014 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 <fontconfig/fontconfig.h>
9#include "Resources.h"
10#include "SkCanvas.h"
11#include "SkFontMgr.h"
12#include "SkFontMgr_fontconfig.h"
13#include "SkTypeface.h"
14#include "Test.h"
15
16static bool bitmap_compare(const SkBitmap& ref, const SkBitmap& test) {
17 for (int y = 0; y < test.height(); ++y) {
18 for (int x = 0; x < test.width(); ++x) {
19 SkColor testColor = test.getColor(x, y);
20 SkColor refColor = ref.getColor(x, y);
21 if (refColor != testColor) {
22 return false;
23 }
24 }
25 }
26 return true;
27}
28
29DEF_TEST(FontMgrFontConfig, reporter) {
30 FcConfig* config = FcConfigCreate();
31 SkString distortablePath = GetResourcePath("fonts/Distortable.ttf");
32 FcConfigAppFontAddFile(
33 config, reinterpret_cast<const FcChar8*>(distortablePath.c_str()));
34 FcConfigBuildFonts(config);
35
36 sk_sp<SkFontMgr> fontMgr(SkFontMgr_New_FontConfig(config));
37 sk_sp<SkTypeface> typeface(fontMgr->legacyMakeTypeface("Distortable", SkFontStyle()));
38
39 SkBitmap bitmapStream;
40 bitmapStream.allocN32Pixels(64, 64);
41 SkCanvas canvasStream(bitmapStream);
42 canvasStream.drawColor(SK_ColorWHITE);
43
44 SkBitmap bitmapClone;
45 bitmapClone.allocN32Pixels(64, 64);
46 SkCanvas canvasClone(bitmapClone);
47 canvasStream.drawColor(SK_ColorWHITE);
48
49 SkPaint paintStream;
50 paintStream.setColor(SK_ColorGRAY);
51 paintStream.setTextSize(SkIntToScalar(20));
52 paintStream.setAntiAlias(true);
53 paintStream.setLCDRenderText(true);
54
55 SkPaint paintClone;
56 paintClone.setColor(SK_ColorGRAY);
57 paintClone.setTextSize(SkIntToScalar(20));
58 paintClone.setAntiAlias(true);
59 paintClone.setLCDRenderText(true);
60
61 std::unique_ptr<SkStreamAsset> distortableStream(
62 GetResourceAsStream("fonts/Distortable.ttf"));
63 if (!distortableStream) {
64 return;
65 }
66
67 const char* text = "abc";
68 const size_t textLen = strlen(text);
69 SkPoint point = SkPoint::Make(20.0f, 20.0f);
70 SkFourByteTag tag = SkSetFourByteTag('w', 'g', 'h', 't');
71
72 for (int i = 0; i < 10; ++i) {
73 SkScalar styleValue =
74 SkDoubleToScalar(0.5 + i * ((2.0 - 0.5) / 10));
75 SkFontArguments::VariationPosition::Coordinate
76 coordinates[] = {{tag, styleValue}};
77 SkFontArguments::VariationPosition
78 position = {coordinates, SK_ARRAY_COUNT(coordinates)};
79
80 paintStream.setTypeface(sk_sp<SkTypeface>(
81 fontMgr->makeFromStream(distortableStream->duplicate(),
82 SkFontArguments().setVariationDesignPosition(position))));
83 paintClone.setTypeface(sk_sp<SkTypeface>(
84 typeface->makeClone(SkFontArguments().setVariationDesignPosition(position))));
85
86 canvasStream.drawColor(SK_ColorWHITE);
87 canvasStream.drawText(text, textLen, point.fX, point.fY, paintStream);
88
89 canvasClone.drawColor(SK_ColorWHITE);
90 canvasClone.drawText(text, textLen, point.fX, point.fY, paintClone);
91
92 bool success = bitmap_compare(bitmapStream, bitmapClone);
93 REPORTER_ASSERT(reporter, success);
94 }
95}