Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(630)

Unified Diff: tests/PDFPrimitivesTest.cpp

Issue 1401763002: SkPDF: fall back on paths for unembeddable fonts. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-10-12 (Monday) 15:54:45 EDT Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pdf/SkPDFFont.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/PDFPrimitivesTest.cpp
diff --git a/tests/PDFPrimitivesTest.cpp b/tests/PDFPrimitivesTest.cpp
index 3253fcaf711a01a8afdcc11ffa8d183859ab02bf..5fce53ea0a7f29659d1c8b89a04b8547cf951bab 100644
--- a/tests/PDFPrimitivesTest.cpp
+++ b/tests/PDFPrimitivesTest.cpp
@@ -5,6 +5,7 @@
* found in the LICENSE file.
*/
+#include "Resources.h"
#include "SkBitmap.h"
#include "SkCanvas.h"
#include "SkData.h"
@@ -14,6 +15,7 @@
#include "SkMatrix.h"
#include "SkPDFCanon.h"
#include "SkPDFDevice.h"
+#include "SkPDFFont.h"
#include "SkPDFStream.h"
#include "SkPDFTypes.h"
#include "SkReadBuffer.h"
@@ -21,6 +23,7 @@
#include "SkStream.h"
#include "SkTypes.h"
#include "Test.h"
+#include "sk_tool_utils.h"
#define DUMMY_TEXT "DCT compessed stream."
@@ -415,3 +418,20 @@ DEF_TEST(PDFImageFilter, reporter) {
// Filter was used in rendering; should be visited.
REPORTER_ASSERT(reporter, filter->visited());
}
+
+// Check that PDF rendering of image filters successfully falls back to
+// CPU rasterization.
+DEF_TEST(PDFFontCanEmbedTypeface, reporter) {
+ SkPDFCanon canon;
+
+ const char resource[] = "fonts/Roboto2-Regular_NoEmbed.ttf";
+ SkAutoTUnref<SkTypeface> noEmbedTypeface(GetResourceAsTypeface(resource));
+ if (noEmbedTypeface) {
+ REPORTER_ASSERT(reporter,
+ !SkPDFFont::CanEmbedTypeface(noEmbedTypeface, &canon));
+ }
+ SkAutoTUnref<SkTypeface> portableTypeface(
+ sk_tool_utils::create_portable_typeface(NULL, SkTypeface::kNormal));
+ REPORTER_ASSERT(reporter,
+ SkPDFFont::CanEmbedTypeface(portableTypeface, &canon));
+}
« no previous file with comments | « src/pdf/SkPDFFont.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698