bungeman@google.com | a550199 | 2012-05-18 19:06: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 | */ |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 7 | |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 8 | #include "SkBitmap.h" |
| 9 | #include "SkCanvas.h" |
| 10 | #include "SkColor.h" |
caseq | 26337e9 | 2014-06-30 12:14:52 -0700 | [diff] [blame] | 11 | #include "SkFontDescriptor.h" |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 12 | #include "SkGraphics.h" |
| 13 | #include "SkPaint.h" |
| 14 | #include "SkPoint.h" |
| 15 | #include "SkRect.h" |
robertphillips@google.com | cb3b615 | 2013-11-14 14:47:56 +0000 | [diff] [blame] | 16 | #include "SkStream.h" |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 17 | #include "SkTypeface.h" |
tfarina@chromium.org | e4fafb1 | 2013-12-12 21:11:12 +0000 | [diff] [blame] | 18 | #include "SkTypes.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 19 | #include "Test.h" |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 20 | |
| 21 | static const SkColor bgColor = SK_ColorWHITE; |
| 22 | |
commit-bot@chromium.org | 8ef51b9 | 2014-03-05 13:43:15 +0000 | [diff] [blame] | 23 | static void create(SkBitmap* bm, SkIRect bound) { |
| 24 | bm->allocN32Pixels(bound.width(), bound.height()); |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | static void drawBG(SkCanvas* canvas) { |
| 28 | canvas->drawColor(bgColor); |
| 29 | } |
| 30 | |
| 31 | /** Assumes that the ref draw was completely inside ref canvas -- |
| 32 | implies that everything outside is "bgColor". |
| 33 | Checks that all overlap is the same and that all non-overlap on the |
| 34 | ref is "bgColor". |
| 35 | */ |
| 36 | static bool compare(const SkBitmap& ref, const SkIRect& iref, |
| 37 | const SkBitmap& test, const SkIRect& itest) |
| 38 | { |
| 39 | const int xOff = itest.fLeft - iref.fLeft; |
| 40 | const int yOff = itest.fTop - iref.fTop; |
| 41 | |
| 42 | SkAutoLockPixels alpRef(ref); |
| 43 | SkAutoLockPixels alpTest(test); |
| 44 | |
| 45 | for (int y = 0; y < test.height(); ++y) { |
| 46 | for (int x = 0; x < test.width(); ++x) { |
| 47 | SkColor testColor = test.getColor(x, y); |
| 48 | int refX = x + xOff; |
| 49 | int refY = y + yOff; |
| 50 | SkColor refColor; |
| 51 | if (refX >= 0 && refX < ref.width() && |
| 52 | refY >= 0 && refY < ref.height()) |
| 53 | { |
| 54 | refColor = ref.getColor(refX, refY); |
| 55 | } else { |
| 56 | refColor = bgColor; |
| 57 | } |
| 58 | if (refColor != testColor) { |
| 59 | return false; |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | return true; |
| 64 | } |
| 65 | |
tfarina@chromium.org | e4fafb1 | 2013-12-12 21:11:12 +0000 | [diff] [blame] | 66 | DEF_TEST(FontHostStream, reporter) { |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 67 | { |
| 68 | SkPaint paint; |
| 69 | paint.setColor(SK_ColorGRAY); |
| 70 | paint.setTextSize(SkIntToScalar(30)); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 71 | |
commit-bot@chromium.org | 66f5aaa | 2013-05-07 14:32:58 +0000 | [diff] [blame] | 72 | SkTypeface* fTypeface = SkTypeface::CreateFromName("Georgia", |
| 73 | SkTypeface::kNormal); |
| 74 | SkSafeUnref(paint.setTypeface(fTypeface)); |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 75 | |
| 76 | SkIRect origRect = SkIRect::MakeWH(64, 64); |
| 77 | SkBitmap origBitmap; |
commit-bot@chromium.org | 8ef51b9 | 2014-03-05 13:43:15 +0000 | [diff] [blame] | 78 | create(&origBitmap, origRect); |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 79 | SkCanvas origCanvas(origBitmap); |
| 80 | |
| 81 | SkIRect streamRect = SkIRect::MakeWH(64, 64); |
| 82 | SkBitmap streamBitmap; |
commit-bot@chromium.org | 8ef51b9 | 2014-03-05 13:43:15 +0000 | [diff] [blame] | 83 | create(&streamBitmap, streamRect); |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 84 | SkCanvas streamCanvas(streamBitmap); |
| 85 | |
| 86 | SkPoint point = SkPoint::Make(24, 32); |
| 87 | |
| 88 | // Test: origTypeface and streamTypeface from orig data draw the same |
| 89 | drawBG(&origCanvas); |
| 90 | origCanvas.drawText("A", 1, point.fX, point.fY, paint); |
| 91 | |
| 92 | SkTypeface* origTypeface = paint.getTypeface(); |
reed@google.com | fed86bd | 2013-03-14 15:04:57 +0000 | [diff] [blame] | 93 | SkAutoTUnref<SkTypeface> aur; |
| 94 | if (NULL == origTypeface) { |
| 95 | origTypeface = aur.reset(SkTypeface::RefDefault()); |
| 96 | } |
| 97 | |
| 98 | int ttcIndex; |
bungeman | 5f213d9 | 2015-01-27 05:39:10 -0800 | [diff] [blame] | 99 | SkAutoTDelete<SkStreamAsset> fontData(origTypeface->openStream(&ttcIndex)); |
scroggo | a1193e4 | 2015-01-21 12:09:53 -0800 | [diff] [blame] | 100 | SkTypeface* streamTypeface = SkTypeface::CreateFromStream(fontData.detach()); |
caseq | 26337e9 | 2014-06-30 12:14:52 -0700 | [diff] [blame] | 101 | |
| 102 | SkFontDescriptor desc; |
| 103 | bool isLocalStream = false; |
| 104 | streamTypeface->getFontDescriptor(&desc, &isLocalStream); |
| 105 | REPORTER_ASSERT(reporter, isLocalStream); |
| 106 | |
bungeman@google.com | 148a396 | 2013-01-17 20:19:13 +0000 | [diff] [blame] | 107 | SkSafeUnref(paint.setTypeface(streamTypeface)); |
bungeman@google.com | a550199 | 2012-05-18 19:06:41 +0000 | [diff] [blame] | 108 | drawBG(&streamCanvas); |
| 109 | streamCanvas.drawPosText("A", 1, &point, paint); |
| 110 | |
| 111 | REPORTER_ASSERT(reporter, |
| 112 | compare(origBitmap, origRect, streamBitmap, streamRect)); |
| 113 | } |
| 114 | //Make sure the typeface is deleted and removed. |
| 115 | SkGraphics::PurgeFontCache(); |
| 116 | } |