blob: 3a5f52895f68c1a11d36ade9350e42007cf20248 [file] [log] [blame]
bungeman@google.coma5501992012-05-18 19:06:41 +00001/*
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 */
bungeman@google.coma5501992012-05-18 19:06:41 +00007
bungeman@google.coma5501992012-05-18 19:06:41 +00008#include "SkBitmap.h"
9#include "SkCanvas.h"
10#include "SkColor.h"
caseq26337e92014-06-30 12:14:52 -070011#include "SkFontDescriptor.h"
bungeman@google.coma5501992012-05-18 19:06:41 +000012#include "SkGraphics.h"
13#include "SkPaint.h"
Herb Derbyeb3f6742018-03-05 14:36:45 -050014#include "SkPaintPriv.h"
bungeman@google.coma5501992012-05-18 19:06:41 +000015#include "SkPoint.h"
16#include "SkRect.h"
robertphillips@google.comcb3b6152013-11-14 14:47:56 +000017#include "SkStream.h"
bungeman@google.coma5501992012-05-18 19:06:41 +000018#include "SkTypeface.h"
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000019#include "SkTypes.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000020#include "Test.h"
bungeman@google.coma5501992012-05-18 19:06:41 +000021
22static const SkColor bgColor = SK_ColorWHITE;
23
commit-bot@chromium.org8ef51b92014-03-05 13:43:15 +000024static void create(SkBitmap* bm, SkIRect bound) {
25 bm->allocN32Pixels(bound.width(), bound.height());
bungeman@google.coma5501992012-05-18 19:06:41 +000026}
27
28static void drawBG(SkCanvas* canvas) {
29 canvas->drawColor(bgColor);
30}
31
32/** Assumes that the ref draw was completely inside ref canvas --
33 implies that everything outside is "bgColor".
34 Checks that all overlap is the same and that all non-overlap on the
35 ref is "bgColor".
36 */
37static bool compare(const SkBitmap& ref, const SkIRect& iref,
38 const SkBitmap& test, const SkIRect& itest)
39{
40 const int xOff = itest.fLeft - iref.fLeft;
41 const int yOff = itest.fTop - iref.fTop;
42
bungeman@google.coma5501992012-05-18 19:06:41 +000043 for (int y = 0; y < test.height(); ++y) {
44 for (int x = 0; x < test.width(); ++x) {
45 SkColor testColor = test.getColor(x, y);
46 int refX = x + xOff;
47 int refY = y + yOff;
48 SkColor refColor;
49 if (refX >= 0 && refX < ref.width() &&
50 refY >= 0 && refY < ref.height())
51 {
52 refColor = ref.getColor(refX, refY);
53 } else {
54 refColor = bgColor;
55 }
56 if (refColor != testColor) {
57 return false;
58 }
59 }
60 }
61 return true;
62}
63
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000064DEF_TEST(FontHostStream, reporter) {
bungeman@google.coma5501992012-05-18 19:06:41 +000065 {
66 SkPaint paint;
67 paint.setColor(SK_ColorGRAY);
68 paint.setTextSize(SkIntToScalar(30));
rmistry@google.comd6176b02012-08-23 18:14:13 +000069
mbocee6a9912016-05-31 11:42:36 -070070 paint.setTypeface(SkTypeface::MakeFromName("Georgia", SkFontStyle()));
bungeman@google.coma5501992012-05-18 19:06:41 +000071
72 SkIRect origRect = SkIRect::MakeWH(64, 64);
73 SkBitmap origBitmap;
commit-bot@chromium.org8ef51b92014-03-05 13:43:15 +000074 create(&origBitmap, origRect);
bungeman@google.coma5501992012-05-18 19:06:41 +000075 SkCanvas origCanvas(origBitmap);
76
77 SkIRect streamRect = SkIRect::MakeWH(64, 64);
78 SkBitmap streamBitmap;
commit-bot@chromium.org8ef51b92014-03-05 13:43:15 +000079 create(&streamBitmap, streamRect);
bungeman@google.coma5501992012-05-18 19:06:41 +000080 SkCanvas streamCanvas(streamBitmap);
81
82 SkPoint point = SkPoint::Make(24, 32);
83
84 // Test: origTypeface and streamTypeface from orig data draw the same
85 drawBG(&origCanvas);
Cary Clark2a475ea2017-04-28 15:35:12 -040086 origCanvas.drawString("A", point.fX, point.fY, paint);
bungeman@google.coma5501992012-05-18 19:06:41 +000087
Herb Derbyeb3f6742018-03-05 14:36:45 -050088 sk_sp<SkTypeface> typeface = SkPaintPriv::RefTypefaceOrDefault(paint);
reed@google.comfed86bd2013-03-14 15:04:57 +000089 int ttcIndex;
Ben Wagner145dbcd2016-11-03 14:40:50 -040090 std::unique_ptr<SkStreamAsset> fontData(typeface->openStream(&ttcIndex));
Mike Kleincb6940b2017-11-09 13:45:10 -050091 if (!fontData) {
92 // We're using a SkTypeface that can't give us a stream.
93 // This happens with portable or system fonts. End the test now.
94 return;
95 }
96
bungeman13b9c952016-05-12 10:09:30 -070097 sk_sp<SkTypeface> streamTypeface(SkTypeface::MakeFromStream(fontData.release()));
caseq26337e92014-06-30 12:14:52 -070098
99 SkFontDescriptor desc;
100 bool isLocalStream = false;
101 streamTypeface->getFontDescriptor(&desc, &isLocalStream);
102 REPORTER_ASSERT(reporter, isLocalStream);
103
bungeman13b9c952016-05-12 10:09:30 -0700104 paint.setTypeface(streamTypeface);
bungeman@google.coma5501992012-05-18 19:06:41 +0000105 drawBG(&streamCanvas);
106 streamCanvas.drawPosText("A", 1, &point, paint);
107
108 REPORTER_ASSERT(reporter,
109 compare(origBitmap, origRect, streamBitmap, streamRect));
110 }
111 //Make sure the typeface is deleted and removed.
112 SkGraphics::PurgeFontCache();
113}