blob: 9708d199785acbf789c3ba5934db93d3210e0ce7 [file] [log] [blame]
reed@google.comaf0fa6a2013-03-28 13:39:35 +00001/*
2 * Copyright 2013 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"
Mike Klein33d20552017-03-22 13:47:51 -04009#include "sk_tool_utils.h"
reed@google.comaf0fa6a2013-03-28 13:39:35 +000010#include "SkCanvas.h"
11#include "SkFontMgr.h"
12#include "SkGraphics.h"
13#include "SkTypeface.h"
14
bungeman@google.combfc6cc42013-08-21 15:20:43 +000015#ifdef SK_BUILD_FOR_WIN
reed@google.comd1bcfc92013-08-28 20:31:58 +000016 #include "SkTypeface_win.h"
bungeman@google.combfc6cc42013-08-21 15:20:43 +000017#endif
18
reed@google.comaf0fa6a2013-03-28 13:39:35 +000019// limit this just so we don't take too long to draw
20#define MAX_FAMILIES 30
21
22static SkScalar drawString(SkCanvas* canvas, const SkString& text, SkScalar x,
23 SkScalar y, const SkPaint& paint) {
Cary Clark2a475ea2017-04-28 15:35:12 -040024 canvas->drawString(text, x, y, paint);
reed@google.comaf0fa6a2013-03-28 13:39:35 +000025 return x + paint.measureText(text.c_str(), text.size());
26}
27
djsollen0d393a92014-08-27 07:03:13 -070028static SkScalar drawCharacter(SkCanvas* canvas, uint32_t character, SkScalar x,
29 SkScalar y, SkPaint& paint, SkFontMgr* fm,
bungemanc9232dc2014-11-10 13:29:33 -080030 const char* fontName, const char* bcp47[], int bcp47Count,
djsollen0d393a92014-08-27 07:03:13 -070031 const SkFontStyle& fontStyle) {
32 // find typeface containing the requested character and draw it
33 SkString ch;
34 ch.appendUnichar(character);
bungeman13b9c952016-05-12 10:09:30 -070035 sk_sp<SkTypeface> typeface(fm->matchFamilyStyleCharacter(fontName, fontStyle,
36 bcp47, bcp47Count, character));
37 paint.setTypeface(typeface);
djsollen0d393a92014-08-27 07:03:13 -070038 x = drawString(canvas, ch, x, y, paint) + 20;
39
halcanary96fcdcc2015-08-27 07:41:13 -070040 if (nullptr == typeface) {
djsollen0d393a92014-08-27 07:03:13 -070041 return x;
42 }
43
44 // repeat the process, but this time use the family name of the typeface
45 // from the first pass. This emulates the behavior in Blink where it
46 // it expects to get the same glyph when following this pattern.
47 SkString familyName;
48 typeface->getFamilyName(&familyName);
Mike Reed59227392017-09-26 09:46:08 -040049 paint.setTypeface(fm->legacyMakeTypeface(familyName.c_str(), typeface->fontStyle()));
djsollen0d393a92014-08-27 07:03:13 -070050 return drawString(canvas, ch, x, y, paint) + 20;
51}
52
bungemanc9232dc2014-11-10 13:29:33 -080053static const char* zh = "zh";
54static const char* ja = "ja";
55
reed@google.comaf0fa6a2013-03-28 13:39:35 +000056class FontMgrGM : public skiagm::GM {
57public:
Ben Wagner3546ff12017-01-03 13:32:36 -050058 FontMgrGM(sk_sp<SkFontMgr> fontMgr = nullptr) {
59 SkGraphics::SetFontCacheLimit(16 * 1024 * 1024);
60
61 fName.set("fontmgr_iter");
62 if (fontMgr) {
63 fName.append("_factory");
64 fFM = std::move(fontMgr);
65 } else {
66 fFM = SkFontMgr::RefDefault();
67 }
68 fName.append(sk_tool_utils::platform_os_name());
69 fName.append(sk_tool_utils::platform_extra_config("GDI"));
70 }
reed@google.comaf0fa6a2013-03-28 13:39:35 +000071
72protected:
mtklein36352bf2015-03-25 18:17:31 -070073 SkString onShortName() override {
bungeman@google.combfc6cc42013-08-21 15:20:43 +000074 return fName;
reed@google.comaf0fa6a2013-03-28 13:39:35 +000075 }
76
mtklein36352bf2015-03-25 18:17:31 -070077 SkISize onISize() override {
djsollen0d393a92014-08-27 07:03:13 -070078 return SkISize::Make(1536, 768);
reed@google.comaf0fa6a2013-03-28 13:39:35 +000079 }
80
mtklein36352bf2015-03-25 18:17:31 -070081 void onDraw(SkCanvas* canvas) override {
reed@google.comaf0fa6a2013-03-28 13:39:35 +000082 SkScalar y = 20;
83 SkPaint paint;
84 paint.setAntiAlias(true);
85 paint.setLCDRenderText(true);
86 paint.setSubpixelText(true);
87 paint.setTextSize(17);
skia.committer@gmail.com6acd09e2013-03-29 07:01:22 +000088
Hal Canarycefc4312016-11-04 16:26:16 -040089 SkFontMgr* fm = fFM.get();
reed@google.comaf0fa6a2013-03-28 13:39:35 +000090 int count = SkMin32(fm->countFamilies(), MAX_FAMILIES);
91
92 for (int i = 0; i < count; ++i) {
bungemanc64239a2015-04-29 08:15:31 -070093 SkString familyName;
94 fm->getFamilyName(i, &familyName);
halcanary96fcdcc2015-08-27 07:41:13 -070095 paint.setTypeface(nullptr);
bungemanc64239a2015-04-29 08:15:31 -070096 (void)drawString(canvas, familyName, 20, y, paint);
skia.committer@gmail.com6acd09e2013-03-29 07:01:22 +000097
reed@google.comaf0fa6a2013-03-28 13:39:35 +000098 SkScalar x = 220;
reed@google.com964988f2013-03-29 14:57:22 +000099
Hal Canarycefc4312016-11-04 16:26:16 -0400100 sk_sp<SkFontStyleSet> set(fm->createStyleSet(i));
reed@google.comaf0fa6a2013-03-28 13:39:35 +0000101 for (int j = 0; j < set->count(); ++j) {
102 SkString sname;
103 SkFontStyle fs;
104 set->getStyle(j, &fs, &sname);
bungemanb4bb7d82016-04-27 10:21:04 -0700105 sname.appendf(" [%d %d %d]", fs.weight(), fs.width(), fs.slant());
skia.committer@gmail.com6acd09e2013-03-29 07:01:22 +0000106
bungeman13b9c952016-05-12 10:09:30 -0700107 paint.setTypeface(sk_sp<SkTypeface>(set->createTypeface(j)));
reed@google.comaf0fa6a2013-03-28 13:39:35 +0000108 x = drawString(canvas, sname, x, y, paint) + 20;
djsollen0d393a92014-08-27 07:03:13 -0700109
110 // check to see that we get different glyphs in japanese and chinese
bungemanc64239a2015-04-29 08:15:31 -0700111 x = drawCharacter(canvas, 0x5203, x, y, paint, fm, familyName.c_str(), &zh, 1, fs);
112 x = drawCharacter(canvas, 0x5203, x, y, paint, fm, familyName.c_str(), &ja, 1, fs);
djsollen0d393a92014-08-27 07:03:13 -0700113 // check that emoji characters are found
halcanary96fcdcc2015-08-27 07:41:13 -0700114 x = drawCharacter(canvas, 0x1f601, x, y, paint, fm, familyName.c_str(), nullptr,0, fs);
skia.committer@gmail.com6acd09e2013-03-29 07:01:22 +0000115 }
reed@google.comaf0fa6a2013-03-28 13:39:35 +0000116 y += 24;
117 }
118 }
119
reed@google.comaf0fa6a2013-03-28 13:39:35 +0000120private:
Hal Canarycefc4312016-11-04 16:26:16 -0400121 sk_sp<SkFontMgr> fFM;
bungeman@google.combfc6cc42013-08-21 15:20:43 +0000122 SkString fName;
reed@google.comaf0fa6a2013-03-28 13:39:35 +0000123 typedef GM INHERITED;
124};
125
reed@google.com964988f2013-03-29 14:57:22 +0000126class FontMgrMatchGM : public skiagm::GM {
Hal Canarycefc4312016-11-04 16:26:16 -0400127 sk_sp<SkFontMgr> fFM;
reed@google.com964988f2013-03-29 14:57:22 +0000128
129public:
130 FontMgrMatchGM() : fFM(SkFontMgr::RefDefault()) {
131 SkGraphics::SetFontCacheLimit(16 * 1024 * 1024);
132 }
skia.committer@gmail.comd55846d2013-03-30 07:01:27 +0000133
reed@google.com964988f2013-03-29 14:57:22 +0000134protected:
mtklein36352bf2015-03-25 18:17:31 -0700135 SkString onShortName() override {
caryclark6531c362015-07-20 13:38:56 -0700136 SkString name("fontmgr_match");
137 name.append(sk_tool_utils::platform_os_name());
138 name.append(sk_tool_utils::platform_extra_config("GDI"));
139 return name;
reed@google.com964988f2013-03-29 14:57:22 +0000140 }
skia.committer@gmail.comd55846d2013-03-30 07:01:27 +0000141
mtklein36352bf2015-03-25 18:17:31 -0700142 SkISize onISize() override {
reed@google.com964988f2013-03-29 14:57:22 +0000143 return SkISize::Make(640, 1024);
144 }
145
146 void iterateFamily(SkCanvas* canvas, const SkPaint& paint,
147 SkFontStyleSet* fset) {
148 SkPaint p(paint);
149 SkScalar y = 0;
150
151 for (int j = 0; j < fset->count(); ++j) {
152 SkString sname;
153 SkFontStyle fs;
154 fset->getStyle(j, &fs, &sname);
155
156 sname.appendf(" [%d %d]", fs.weight(), fs.width());
157
bungeman13b9c952016-05-12 10:09:30 -0700158 p.setTypeface(sk_sp<SkTypeface>(fset->createTypeface(j)));
reed@google.com964988f2013-03-29 14:57:22 +0000159 (void)drawString(canvas, sname, 0, y, p);
160 y += 24;
161 }
162 }
163
164 void exploreFamily(SkCanvas* canvas, const SkPaint& paint,
165 SkFontStyleSet* fset) {
166 SkPaint p(paint);
167 SkScalar y = 0;
168
169 for (int weight = 100; weight <= 900; weight += 200) {
170 for (int width = 1; width <= 9; width += 2) {
171 SkFontStyle fs(weight, width, SkFontStyle::kUpright_Slant);
bungeman13b9c952016-05-12 10:09:30 -0700172 sk_sp<SkTypeface> face(fset->matchStyle(fs));
reed@google.com964988f2013-03-29 14:57:22 +0000173 if (face) {
174 SkString str;
175 str.printf("request [%d %d]", fs.weight(), fs.width());
bungeman13b9c952016-05-12 10:09:30 -0700176 p.setTypeface(std::move(face));
reed@google.com964988f2013-03-29 14:57:22 +0000177 (void)drawString(canvas, str, 0, y, p);
178 y += 24;
179 }
180 }
181 }
182 }
skia.committer@gmail.comd55846d2013-03-30 07:01:27 +0000183
mtklein36352bf2015-03-25 18:17:31 -0700184 void onDraw(SkCanvas* canvas) override {
reed@google.com964988f2013-03-29 14:57:22 +0000185 SkPaint paint;
186 paint.setAntiAlias(true);
187 paint.setLCDRenderText(true);
188 paint.setSubpixelText(true);
189 paint.setTextSize(17);
190
mtkleindbfd7ab2016-09-01 11:24:54 -0700191 const char* gNames[] = {
reed@google.com964988f2013-03-29 14:57:22 +0000192 "Helvetica Neue", "Arial"
193 };
194
Hal Canarycefc4312016-11-04 16:26:16 -0400195 sk_sp<SkFontStyleSet> fset;
skia.committer@gmail.comd55846d2013-03-30 07:01:27 +0000196 for (size_t i = 0; i < SK_ARRAY_COUNT(gNames); ++i) {
bungeman@google.com9fc5c682013-11-12 15:25:29 +0000197 fset.reset(fFM->matchFamily(gNames[i]));
198 if (fset->count() > 0) {
reed@google.com964988f2013-03-29 14:57:22 +0000199 break;
200 }
201 }
halcanary96fcdcc2015-08-27 07:41:13 -0700202 if (nullptr == fset.get()) {
reed@google.com964988f2013-03-29 14:57:22 +0000203 return;
204 }
reed@google.com964988f2013-03-29 14:57:22 +0000205
206 canvas->translate(20, 40);
Hal Canarycefc4312016-11-04 16:26:16 -0400207 this->exploreFamily(canvas, paint, fset.get());
reed@google.com964988f2013-03-29 14:57:22 +0000208 canvas->translate(150, 0);
Hal Canarycefc4312016-11-04 16:26:16 -0400209 this->iterateFamily(canvas, paint, fset.get());
reed@google.com964988f2013-03-29 14:57:22 +0000210 }
skia.committer@gmail.comd55846d2013-03-30 07:01:27 +0000211
reed@google.com964988f2013-03-29 14:57:22 +0000212private:
213 typedef GM INHERITED;
214};
215
reeda0c814c2014-10-22 13:20:58 -0700216class FontMgrBoundsGM : public skiagm::GM {
217public:
reed8893e5f2014-12-15 13:27:26 -0800218 FontMgrBoundsGM(double scale, double skew)
219 : fScaleX(SkDoubleToScalar(scale))
220 , fSkewX(SkDoubleToScalar(skew))
221 {
reeda0c814c2014-10-22 13:20:58 -0700222 fName.set("fontmgr_bounds");
reed8893e5f2014-12-15 13:27:26 -0800223 if (scale != 1 || skew != 0) {
224 fName.appendf("_%g_%g", scale, skew);
225 }
caryclark6531c362015-07-20 13:38:56 -0700226 fName.append(sk_tool_utils::platform_os_name());
227 fName.append(sk_tool_utils::platform_extra_config("GDI"));
Ben Wagner3546ff12017-01-03 13:32:36 -0500228 fFM = SkFontMgr::RefDefault();
reeda0c814c2014-10-22 13:20:58 -0700229 }
230
231 static void show_bounds(SkCanvas* canvas, const SkPaint& paint, SkScalar x, SkScalar y,
Ben Wagner219f3622017-07-17 15:32:25 -0400232 SkColor boundsColor)
233 {
234 SkPaint glyphPaint(paint);
235 SkRect fontBounds = glyphPaint.getFontBounds();
236 fontBounds.offset(x, y);
237 SkPaint boundsPaint(glyphPaint);
238 boundsPaint.setColor(boundsColor);
239 canvas->drawRect(fontBounds, boundsPaint);
reeda0c814c2014-10-22 13:20:58 -0700240
Ben Wagner219f3622017-07-17 15:32:25 -0400241 SkPaint::FontMetrics fm;
242 glyphPaint.getFontMetrics(&fm);
243 SkPaint metricsPaint(boundsPaint);
244 metricsPaint.setStyle(SkPaint::kFill_Style);
245 metricsPaint.setAlpha(0x40);
246 if ((fm.fFlags & SkPaint::FontMetrics::kUnderlinePositionIsValid_Flag) &&
247 (fm.fFlags & SkPaint::FontMetrics::kUnderlinePositionIsValid_Flag))
248 {
249 SkRect underline{ fontBounds.fLeft, fm.fUnderlinePosition+y,
250 fontBounds.fRight, fm.fUnderlinePosition+y + fm.fUnderlineThickness };
251 canvas->drawRect(underline, metricsPaint);
reeda0c814c2014-10-22 13:20:58 -0700252 }
tfarinaaa458fb2015-01-05 17:18:51 -0800253
Ben Wagner219f3622017-07-17 15:32:25 -0400254 if ((fm.fFlags & SkPaint::FontMetrics::kStrikeoutPositionIsValid_Flag) &&
255 (fm.fFlags & SkPaint::FontMetrics::kStrikeoutPositionIsValid_Flag))
256 {
257 SkRect strikeout{ fontBounds.fLeft, fm.fStrikeoutPosition+y - fm.fStrikeoutThickness,
258 fontBounds.fRight, fm.fStrikeoutPosition+y };
259 canvas->drawRect(strikeout, metricsPaint);
260 }
261
262 SkGlyphID left = 0, right = 0, top = 0, bottom = 0;
263 {
264 int numGlyphs = glyphPaint.getTypeface()->countGlyphs();
265 SkRect min = {0, 0, 0, 0};
266 glyphPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
267 for (int i = 0; i < numGlyphs; ++i) {
268 SkGlyphID glyphId = i;
269 SkRect cur;
270 glyphPaint.measureText(&glyphId, sizeof(glyphId), &cur);
271 if (cur.fLeft < min.fLeft ) { min.fLeft = cur.fLeft; left = i; }
272 if (cur.fTop < min.fTop ) { min.fTop = cur.fTop ; top = i; }
273 if (min.fRight < cur.fRight ) { min.fRight = cur.fRight; right = i; }
274 if (min.fBottom < cur.fBottom) { min.fBottom = cur.fBottom; bottom = i; }
275 }
276 }
277 SkGlyphID str[] = { left, right, top, bottom };
278 for (size_t i = 0; i < SK_ARRAY_COUNT(str); ++i) {
279 canvas->drawText(&str[i], sizeof(str[0]), x, y, glyphPaint);
280 }
reeda0c814c2014-10-22 13:20:58 -0700281 }
282
283protected:
mtklein36352bf2015-03-25 18:17:31 -0700284 SkString onShortName() override {
reeda0c814c2014-10-22 13:20:58 -0700285 return fName;
286 }
tfarinaaa458fb2015-01-05 17:18:51 -0800287
mtklein36352bf2015-03-25 18:17:31 -0700288 SkISize onISize() override {
reeda0c814c2014-10-22 13:20:58 -0700289 return SkISize::Make(1024, 850);
290 }
tfarinaaa458fb2015-01-05 17:18:51 -0800291
mtklein36352bf2015-03-25 18:17:31 -0700292 void onDraw(SkCanvas* canvas) override {
reeda0c814c2014-10-22 13:20:58 -0700293 SkPaint paint;
294 paint.setAntiAlias(true);
295 paint.setSubpixelText(true);
296 paint.setTextSize(100);
297 paint.setStyle(SkPaint::kStroke_Style);
reed8893e5f2014-12-15 13:27:26 -0800298 paint.setTextScaleX(fScaleX);
299 paint.setTextSkewX(fSkewX);
reeda0c814c2014-10-22 13:20:58 -0700300
301 const SkColor boundsColors[2] = { SK_ColorRED, SK_ColorBLUE };
halcanary9d524f22016-03-29 09:03:52 -0700302
Hal Canarycefc4312016-11-04 16:26:16 -0400303 SkFontMgr* fm = fFM.get();
reeda0c814c2014-10-22 13:20:58 -0700304 int count = SkMin32(fm->countFamilies(), 32);
305
306 int index = 0;
307 SkScalar x = 0, y = 0;
308
Ben Wagner219f3622017-07-17 15:32:25 -0400309 canvas->translate(10, 120);
reeda0c814c2014-10-22 13:20:58 -0700310
311 for (int i = 0; i < count; ++i) {
Hal Canarycefc4312016-11-04 16:26:16 -0400312 sk_sp<SkFontStyleSet> set(fm->createStyleSet(i));
Ben Wagner219f3622017-07-17 15:32:25 -0400313 for (int j = 0; j < set->count() && j < 3; ++j) {
bungeman13b9c952016-05-12 10:09:30 -0700314 paint.setTypeface(sk_sp<SkTypeface>(set->createTypeface(j)));
Ben Wagner2112df02017-07-24 11:04:21 -0400315 // Fonts with lots of glyphs are interesting, but can take a long time to find
316 // the glyphs which make up the maximum extent.
317 if (paint.getTypeface() && paint.getTypeface()->countGlyphs() < 1000) {
Ben Wagner219f3622017-07-17 15:32:25 -0400318 SkRect fontBounds = paint.getFontBounds();
319 x -= fontBounds.fLeft;
reeda0c814c2014-10-22 13:20:58 -0700320 show_bounds(canvas, paint, x, y, boundsColors[index & 1]);
Ben Wagner219f3622017-07-17 15:32:25 -0400321 x += fontBounds.fRight + 20;
reeda0c814c2014-10-22 13:20:58 -0700322 index += 1;
Ben Wagner219f3622017-07-17 15:32:25 -0400323 if (x > 900) {
reeda0c814c2014-10-22 13:20:58 -0700324 x = 0;
325 y += 160;
326 }
Ben Wagner219f3622017-07-17 15:32:25 -0400327 if (y >= 700) {
reeda0c814c2014-10-22 13:20:58 -0700328 return;
329 }
330 }
331 }
332 }
333 }
mtklein1c402922015-01-23 11:07:07 -0800334
reeda0c814c2014-10-22 13:20:58 -0700335private:
Hal Canarycefc4312016-11-04 16:26:16 -0400336 sk_sp<SkFontMgr> fFM;
reeda0c814c2014-10-22 13:20:58 -0700337 SkString fName;
reed8893e5f2014-12-15 13:27:26 -0800338 SkScalar fScaleX, fSkewX;
reeda0c814c2014-10-22 13:20:58 -0700339 typedef GM INHERITED;
340};
341
reed@google.comaf0fa6a2013-03-28 13:39:35 +0000342//////////////////////////////////////////////////////////////////////////////
343
halcanary385fe4d2015-08-26 13:07:48 -0700344DEF_GM(return new FontMgrGM;)
345DEF_GM(return new FontMgrMatchGM;)
346DEF_GM(return new FontMgrBoundsGM(1.0, 0);)
347DEF_GM(return new FontMgrBoundsGM(0.75, 0);)
348DEF_GM(return new FontMgrBoundsGM(1.0, -0.25);)
bungeman@google.combfc6cc42013-08-21 15:20:43 +0000349
350#ifdef SK_BUILD_FOR_WIN
halcanary385fe4d2015-08-26 13:07:48 -0700351DEF_GM(return new FontMgrGM(SkFontMgr_New_DirectWrite());)
bungeman@google.combfc6cc42013-08-21 15:20:43 +0000352#endif