bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 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 | #include "gm.h" |
| 8 | #include "SkTypeface.h" |
| 9 | |
| 10 | namespace skiagm { |
| 11 | |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 12 | class FontScalerGM : public GM { |
| 13 | public: |
| 14 | FontScalerGM() { |
| 15 | this->setBGColor(0xFFFFFFFF); |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | virtual ~FontScalerGM() { |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 19 | } |
| 20 | |
| 21 | protected: |
commit-bot@chromium.org | a90c680 | 2014-04-30 13:20:45 +0000 | [diff] [blame] | 22 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 23 | SkString onShortName() SK_OVERRIDE { |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 24 | return SkString("fontscaler"); |
| 25 | } |
| 26 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 27 | SkISize onISize() SK_OVERRIDE { |
tfarina | f539318 | 2014-06-09 23:59:03 -0700 | [diff] [blame] | 28 | return SkISize::Make(1450, 750); |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 29 | } |
| 30 | |
bungeman@google.com | a682b93 | 2012-01-05 18:10:48 +0000 | [diff] [blame] | 31 | static void rotate_about(SkCanvas* canvas, |
| 32 | SkScalar degrees, |
| 33 | SkScalar px, SkScalar py) { |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 34 | canvas->translate(px, py); |
| 35 | canvas->rotate(degrees); |
| 36 | canvas->translate(-px, -py); |
| 37 | } |
| 38 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 39 | void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 40 | SkPaint paint; |
| 41 | |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 42 | paint.setAntiAlias(true); |
| 43 | paint.setLCDRenderText(true); |
| 44 | //With freetype the default (normal hinting) can be really ugly. |
| 45 | //Most distros now set slight (vertical hinting only) in any event. |
| 46 | paint.setHinting(SkPaint::kSlight_Hinting); |
Cary Clark | 992c7b0 | 2014-07-31 08:58:44 -0400 | [diff] [blame] | 47 | sk_tool_utils::set_portable_typeface(&paint, "Times Roman", SkTypeface::kNormal); |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 48 | |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 49 | const char* text = "Hamburgefons ooo mmm"; |
| 50 | const size_t textLen = strlen(text); |
| 51 | |
| 52 | for (int j = 0; j < 2; ++j) { |
bsalomon@google.com | 4121f95 | 2013-09-09 16:19:40 +0000 | [diff] [blame] | 53 | // This used to do 6 iterations but it causes the N4 to crash in the MSAA4 config. |
| 54 | for (int i = 0; i < 5; ++i) { |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 55 | SkScalar x = SkIntToScalar(10); |
| 56 | SkScalar y = SkIntToScalar(20); |
| 57 | |
| 58 | SkAutoCanvasRestore acr(canvas, true); |
| 59 | canvas->translate(SkIntToScalar(50 + i * 230), |
| 60 | SkIntToScalar(20)); |
| 61 | rotate_about(canvas, SkIntToScalar(i * 5), x, y * 10); |
| 62 | |
| 63 | { |
| 64 | SkPaint p; |
| 65 | p.setAntiAlias(true); |
| 66 | SkRect r; |
bungeman@google.com | a682b93 | 2012-01-05 18:10:48 +0000 | [diff] [blame] | 67 | r.set(x - SkIntToScalar(3), SkIntToScalar(15), |
| 68 | x - SkIntToScalar(1), SkIntToScalar(280)); |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 69 | canvas->drawRect(r, p); |
| 70 | } |
| 71 | |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 72 | for (int ps = 6; ps <= 22; ps++) { |
| 73 | paint.setTextSize(SkIntToScalar(ps)); |
| 74 | canvas->drawText(text, textLen, x, y, paint); |
| 75 | y += paint.getFontMetrics(NULL); |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 76 | } |
| 77 | } |
bungeman@google.com | a682b93 | 2012-01-05 18:10:48 +0000 | [diff] [blame] | 78 | canvas->translate(0, SkIntToScalar(360)); |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 79 | paint.setSubpixelText(true); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | private: |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 84 | typedef GM INHERITED; |
| 85 | }; |
| 86 | |
| 87 | ////////////////////////////////////////////////////////////////////////////// |
borenet@google.com | 0682ca6 | 2012-06-26 17:23:52 +0000 | [diff] [blame] | 88 | |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 89 | static GM* MyFactory(void*) { return new FontScalerGM; } |
| 90 | static GMRegistry reg(MyFactory); |
borenet@google.com | 0682ca6 | 2012-06-26 17:23:52 +0000 | [diff] [blame] | 91 | |
bungeman@google.com | 0f0c288 | 2011-11-04 15:47:41 +0000 | [diff] [blame] | 92 | } |