blob: 5b4ae93504c859d6ad37c673682663be19edc93e [file] [log] [blame]
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2011 Google Inc.
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00006 */
7
8#include "SkPDFDevice.h"
9
reedf70b5312016-03-04 16:36:20 -080010#include "SkAnnotationKeys.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000011#include "SkColor.h"
halcanary287d22d2015-09-24 10:20:05 -070012#include "SkColorFilter.h"
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000013#include "SkClipStack.h"
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +000014#include "SkDraw.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000015#include "SkGlyphCache.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000016#include "SkPaint.h"
vandebo@chromium.orga5180862010-10-26 19:48:49 +000017#include "SkPath.h"
reeda4393342016-03-18 11:22:57 -070018#include "SkPathEffect.h"
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +000019#include "SkPathOps.h"
halcanarydb0dcc72015-03-20 12:31:52 -070020#include "SkPDFBitmap.h"
halcanary7a14b312015-10-01 07:28:13 -070021#include "SkPDFCanon.h"
halcanary989da4a2016-03-21 14:33:17 -070022#include "SkPDFDocument.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000023#include "SkPDFFont.h"
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000024#include "SkPDFFormXObject.h"
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +000025#include "SkPDFGraphicState.h"
commit-bot@chromium.org47401352013-07-23 21:49:29 +000026#include "SkPDFResourceDict.h"
vandebo@chromium.orgda912d62011-03-08 18:31:02 +000027#include "SkPDFShader.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000028#include "SkPDFStream.h"
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +000029#include "SkPDFTypes.h"
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +000030#include "SkPDFUtils.h"
wangxianzhuef6c50a2015-09-17 20:38:02 -070031#include "SkRasterClip.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000032#include "SkRect.h"
scroggo@google.coma8e33a92013-11-08 18:02:53 +000033#include "SkRRect.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000034#include "SkString.h"
reed89443ab2014-06-27 11:34:19 -070035#include "SkSurface.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000036#include "SkTextFormatParams.h"
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +000037#include "SkTemplates.h"
reed@google.comfed86bd2013-03-14 15:04:57 +000038#include "SkTypefacePriv.h"
halcanarya6814332015-05-27 08:53:36 -070039#include "SkXfermodeInterpretation.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000040
edisonn@google.com73a7ea32013-11-11 20:55:15 +000041#define DPI_FOR_RASTER_SCALE_ONE 72
42
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000043// Utility functions
44
halcanarya6814332015-05-27 08:53:36 -070045// If the paint will definitely draw opaquely, replace kSrc_Mode with
46// kSrcOver_Mode. http://crbug.com/473572
47static void replace_srcmode_on_opaque_paint(SkPaint* paint) {
48 if (kSrcOver_SkXfermodeInterpretation
49 == SkInterpretXfermode(*paint, false)) {
halcanary96fcdcc2015-08-27 07:41:13 -070050 paint->setXfermode(nullptr);
halcanarya6814332015-05-27 08:53:36 -070051 }
52}
53
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000054static void emit_pdf_color(SkColor color, SkWStream* result) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000055 SkASSERT(SkColorGetA(color) == 0xFF); // We handle alpha elsewhere.
reed80ea19c2015-05-12 10:37:34 -070056 SkScalar colorScale = SkScalarInvert(0xFF);
57 SkPDFUtils::AppendScalar(SkColorGetR(color) * colorScale, result);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000058 result->writeText(" ");
reed80ea19c2015-05-12 10:37:34 -070059 SkPDFUtils::AppendScalar(SkColorGetG(color) * colorScale, result);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000060 result->writeText(" ");
reed80ea19c2015-05-12 10:37:34 -070061 SkPDFUtils::AppendScalar(SkColorGetB(color) * colorScale, result);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000062 result->writeText(" ");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000063}
64
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000065static SkPaint calculate_text_paint(const SkPaint& paint) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000066 SkPaint result = paint;
67 if (result.isFakeBoldText()) {
68 SkScalar fakeBoldScale = SkScalarInterpFunc(result.getTextSize(),
69 kStdFakeBoldInterpKeys,
70 kStdFakeBoldInterpValues,
71 kStdFakeBoldInterpLength);
72 SkScalar width = SkScalarMul(result.getTextSize(), fakeBoldScale);
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000073 if (result.getStyle() == SkPaint::kFill_Style) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000074 result.setStyle(SkPaint::kStrokeAndFill_Style);
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000075 } else {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000076 width += result.getStrokeWidth();
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000077 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000078 result.setStrokeWidth(width);
79 }
80 return result;
81}
82
83// Stolen from measure_text in SkDraw.cpp and then tweaked.
benjaminwagnerd936f632016-02-23 10:44:31 -080084static void align_text(SkPaint::GlyphCacheProc glyphCacheProc, const SkPaint& paint,
bungeman@google.com9a87cee2011-08-23 17:02:18 +000085 const uint16_t* glyphs, size_t len,
86 SkScalar* x, SkScalar* y) {
87 if (paint.getTextAlign() == SkPaint::kLeft_Align) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000088 return;
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000089 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000090
91 SkMatrix ident;
92 ident.reset();
halcanary96fcdcc2015-08-27 07:41:13 -070093 SkAutoGlyphCache autoCache(paint, nullptr, &ident);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000094 SkGlyphCache* cache = autoCache.getCache();
95
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +000096 const char* start = reinterpret_cast<const char*>(glyphs);
97 const char* stop = reinterpret_cast<const char*>(glyphs + len);
benjaminwagner6b3eacb2016-03-24 19:07:58 -070098 SkScalar xAdv = 0, yAdv = 0;
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000099
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000100 // TODO(vandebo): This probably needs to take kerning into account.
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000101 while (start < stop) {
benjaminwagnerd936f632016-02-23 10:44:31 -0800102 const SkGlyph& glyph = glyphCacheProc(cache, &start);
benjaminwagner6b3eacb2016-03-24 19:07:58 -0700103 xAdv += SkFloatToScalar(glyph.fAdvanceX);
104 yAdv += SkFloatToScalar(glyph.fAdvanceY);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000105 };
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000106 if (paint.getTextAlign() == SkPaint::kLeft_Align) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000107 return;
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000108 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000109
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000110 if (paint.getTextAlign() == SkPaint::kCenter_Align) {
benjaminwagner6b3eacb2016-03-24 19:07:58 -0700111 xAdv = SkScalarHalf(xAdv);
112 yAdv = SkScalarHalf(yAdv);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000113 }
benjaminwagner6b3eacb2016-03-24 19:07:58 -0700114 *x = *x - xAdv;
115 *y = *y - yAdv;
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000116}
117
robertphillips@google.coma4662862013-11-21 14:24:16 +0000118static int max_glyphid_for_typeface(SkTypeface* typeface) {
reed@google.comfed86bd2013-03-14 15:04:57 +0000119 SkAutoResolveDefaultTypeface autoResolve(typeface);
120 typeface = autoResolve.get();
commit-bot@chromium.org6a4ba5b2013-07-17 21:55:08 +0000121 return typeface->countGlyphs() - 1;
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000122}
123
124typedef SkAutoSTMalloc<128, uint16_t> SkGlyphStorage;
125
reed@google.comaec40662014-04-18 19:29:07 +0000126static int force_glyph_encoding(const SkPaint& paint, const void* text,
127 size_t len, SkGlyphStorage* storage,
bungeman22edc832014-10-03 07:55:58 -0700128 const uint16_t** glyphIDs) {
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000129 // Make sure we have a glyph id encoding.
130 if (paint.getTextEncoding() != SkPaint::kGlyphID_TextEncoding) {
halcanary96fcdcc2015-08-27 07:41:13 -0700131 int numGlyphs = paint.textToGlyphs(text, len, nullptr);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000132 storage->reset(numGlyphs);
133 paint.textToGlyphs(text, len, storage->get());
134 *glyphIDs = storage->get();
135 return numGlyphs;
136 }
137
138 // For user supplied glyph ids we need to validate them.
139 SkASSERT((len & 1) == 0);
reed@google.comaec40662014-04-18 19:29:07 +0000140 int numGlyphs = SkToInt(len / 2);
bungeman22edc832014-10-03 07:55:58 -0700141 const uint16_t* input = static_cast<const uint16_t*>(text);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000142
143 int maxGlyphID = max_glyphid_for_typeface(paint.getTypeface());
reed@google.comaec40662014-04-18 19:29:07 +0000144 int validated;
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000145 for (validated = 0; validated < numGlyphs; ++validated) {
146 if (input[validated] > maxGlyphID) {
147 break;
148 }
149 }
150 if (validated >= numGlyphs) {
bungeman22edc832014-10-03 07:55:58 -0700151 *glyphIDs = static_cast<const uint16_t*>(text);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000152 return numGlyphs;
153 }
154
155 // Silently drop anything out of range.
156 storage->reset(numGlyphs);
157 if (validated > 0) {
158 memcpy(storage->get(), input, validated * sizeof(uint16_t));
159 }
160
reed@google.comaec40662014-04-18 19:29:07 +0000161 for (int i = validated; i < numGlyphs; ++i) {
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000162 storage->get()[i] = input[i];
163 if (input[i] > maxGlyphID) {
164 storage->get()[i] = 0;
165 }
166 }
167 *glyphIDs = storage->get();
168 return numGlyphs;
169}
170
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000171static void set_text_transform(SkScalar x, SkScalar y, SkScalar textSkewX,
172 SkWStream* content) {
173 // Flip the text about the x-axis to account for origin swap and include
174 // the passed parameters.
175 content->writeText("1 0 ");
halcanarybc4696b2015-05-06 10:56:04 -0700176 SkPDFUtils::AppendScalar(0 - textSkewX, content);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000177 content->writeText(" -1 ");
halcanarybc4696b2015-05-06 10:56:04 -0700178 SkPDFUtils::AppendScalar(x, content);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000179 content->writeText(" ");
halcanarybc4696b2015-05-06 10:56:04 -0700180 SkPDFUtils::AppendScalar(y, content);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000181 content->writeText(" Tm\n");
182}
183
halcanary2be7e012016-03-28 11:58:08 -0700184SkPDFDevice::GraphicStateEntry::GraphicStateEntry()
185 : fColor(SK_ColorBLACK)
186 , fTextScaleX(SK_Scalar1)
187 , fTextFill(SkPaint::kFill_Style)
188 , fShaderIndex(-1)
189 , fGraphicStateIndex(-1)
190 , fFont(nullptr)
191 , fTextSize(SK_ScalarNaN) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000192 fMatrix.reset();
193}
194
halcanary2be7e012016-03-28 11:58:08 -0700195bool SkPDFDevice::GraphicStateEntry::compareInitialState(
196 const GraphicStateEntry& cur) {
commit-bot@chromium.orgb000d762014-02-07 19:39:57 +0000197 return fColor == cur.fColor &&
198 fShaderIndex == cur.fShaderIndex &&
199 fGraphicStateIndex == cur.fGraphicStateIndex &&
200 fMatrix == cur.fMatrix &&
201 fClipStack == cur.fClipStack &&
202 (fTextScaleX == 0 ||
203 (fTextScaleX == cur.fTextScaleX && fTextFill == cur.fTextFill));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000204}
205
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000206class GraphicStackState {
207public:
208 GraphicStackState(const SkClipStack& existingClipStack,
209 const SkRegion& existingClipRegion,
210 SkWStream* contentStream)
211 : fStackDepth(0),
212 fContentStream(contentStream) {
213 fEntries[0].fClipStack = existingClipStack;
214 fEntries[0].fClipRegion = existingClipRegion;
215 }
216
217 void updateClip(const SkClipStack& clipStack, const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000218 const SkPoint& translation);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000219 void updateMatrix(const SkMatrix& matrix);
halcanary2be7e012016-03-28 11:58:08 -0700220 void updateDrawingState(const SkPDFDevice::GraphicStateEntry& state);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000221
222 void drainStack();
223
224private:
225 void push();
226 void pop();
halcanary2be7e012016-03-28 11:58:08 -0700227 SkPDFDevice::GraphicStateEntry* currentEntry() { return &fEntries[fStackDepth]; }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000228
229 // Conservative limit on save depth, see impl. notes in PDF 1.4 spec.
230 static const int kMaxStackDepth = 12;
halcanary2be7e012016-03-28 11:58:08 -0700231 SkPDFDevice::GraphicStateEntry fEntries[kMaxStackDepth + 1];
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000232 int fStackDepth;
233 SkWStream* fContentStream;
234};
235
236void GraphicStackState::drainStack() {
237 while (fStackDepth) {
238 pop();
239 }
240}
241
242void GraphicStackState::push() {
243 SkASSERT(fStackDepth < kMaxStackDepth);
244 fContentStream->writeText("q\n");
245 fStackDepth++;
246 fEntries[fStackDepth] = fEntries[fStackDepth - 1];
247}
248
249void GraphicStackState::pop() {
250 SkASSERT(fStackDepth > 0);
251 fContentStream->writeText("Q\n");
252 fStackDepth--;
253}
254
robertphillips@google.com80214e22012-07-20 15:33:18 +0000255// This function initializes iter to be an iterator on the "stack" argument
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000256// and then skips over the leading entries as specified in prefix. It requires
257// and asserts that "prefix" will be a prefix to "stack."
258static void skip_clip_stack_prefix(const SkClipStack& prefix,
259 const SkClipStack& stack,
robertphillips@google.comc0290622012-07-16 21:20:03 +0000260 SkClipStack::Iter* iter) {
robertphillips@google.com80214e22012-07-20 15:33:18 +0000261 SkClipStack::B2TIter prefixIter(prefix);
262 iter->reset(stack, SkClipStack::Iter::kBottom_IterStart);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000263
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000264 const SkClipStack::Element* prefixEntry;
265 const SkClipStack::Element* iterEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000266
267 for (prefixEntry = prefixIter.next(); prefixEntry;
robertphillips@google.comc0290622012-07-16 21:20:03 +0000268 prefixEntry = prefixIter.next()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000269 iterEntry = iter->next();
270 SkASSERT(iterEntry);
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000271 // Because of SkClipStack does internal intersection, the last clip
272 // entry may differ.
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +0000273 if (*prefixEntry != *iterEntry) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000274 SkASSERT(prefixEntry->getOp() == SkRegion::kIntersect_Op);
275 SkASSERT(iterEntry->getOp() == SkRegion::kIntersect_Op);
276 SkASSERT(iterEntry->getType() == prefixEntry->getType());
robertphillips@google.comc0290622012-07-16 21:20:03 +0000277 // back up the iterator by one
278 iter->prev();
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000279 prefixEntry = prefixIter.next();
280 break;
281 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000282 }
283
halcanary96fcdcc2015-08-27 07:41:13 -0700284 SkASSERT(prefixEntry == nullptr);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000285}
286
287static void emit_clip(SkPath* clipPath, SkRect* clipRect,
288 SkWStream* contentStream) {
289 SkASSERT(clipPath || clipRect);
290
291 SkPath::FillType clipFill;
292 if (clipPath) {
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000293 SkPDFUtils::EmitPath(*clipPath, SkPaint::kFill_Style, contentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000294 clipFill = clipPath->getFillType();
vandebo@chromium.org3e7b2802011-06-27 18:12:31 +0000295 } else {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000296 SkPDFUtils::AppendRectangle(*clipRect, contentStream);
297 clipFill = SkPath::kWinding_FillType;
298 }
299
300 NOT_IMPLEMENTED(clipFill == SkPath::kInverseEvenOdd_FillType, false);
301 NOT_IMPLEMENTED(clipFill == SkPath::kInverseWinding_FillType, false);
302 if (clipFill == SkPath::kEvenOdd_FillType) {
303 contentStream->writeText("W* n\n");
304 } else {
305 contentStream->writeText("W n\n");
306 }
307}
308
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000309/* Calculate an inverted path's equivalent non-inverted path, given the
310 * canvas bounds.
311 * outPath may alias with invPath (since this is supported by PathOps).
312 */
313static bool calculate_inverse_path(const SkRect& bounds, const SkPath& invPath,
314 SkPath* outPath) {
315 SkASSERT(invPath.isInverseFillType());
316
317 SkPath clipPath;
318 clipPath.addRect(bounds);
319
reedcdb42bb2015-06-26 10:23:07 -0700320 return Op(clipPath, invPath, kIntersect_SkPathOp, outPath);
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000321}
322
323// Sanity check the numerical values of the SkRegion ops and PathOps ops
324// enums so region_op_to_pathops_op can do a straight passthrough cast.
325// If these are failing, it may be necessary to make region_op_to_pathops_op
326// do more.
bungeman99fe8222015-08-20 07:57:51 -0700327static_assert(SkRegion::kDifference_Op == (int)kDifference_SkPathOp, "region_pathop_mismatch");
328static_assert(SkRegion::kIntersect_Op == (int)kIntersect_SkPathOp, "region_pathop_mismatch");
329static_assert(SkRegion::kUnion_Op == (int)kUnion_SkPathOp, "region_pathop_mismatch");
330static_assert(SkRegion::kXOR_Op == (int)kXOR_SkPathOp, "region_pathop_mismatch");
331static_assert(SkRegion::kReverseDifference_Op == (int)kReverseDifference_SkPathOp,
332 "region_pathop_mismatch");
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000333
334static SkPathOp region_op_to_pathops_op(SkRegion::Op op) {
335 SkASSERT(op >= 0);
336 SkASSERT(op <= SkRegion::kReverseDifference_Op);
337 return (SkPathOp)op;
338}
339
340/* Uses Path Ops to calculate a vector SkPath clip from a clip stack.
341 * Returns true if successful, or false if not successful.
342 * If successful, the resulting clip is stored in outClipPath.
343 * If not successful, outClipPath is undefined, and a fallback method
344 * should be used.
345 */
346static bool get_clip_stack_path(const SkMatrix& transform,
347 const SkClipStack& clipStack,
348 const SkRegion& clipRegion,
349 SkPath* outClipPath) {
350 outClipPath->reset();
351 outClipPath->setFillType(SkPath::kInverseWinding_FillType);
352
353 const SkClipStack::Element* clipEntry;
354 SkClipStack::Iter iter;
355 iter.reset(clipStack, SkClipStack::Iter::kBottom_IterStart);
356 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
357 SkPath entryPath;
358 if (SkClipStack::Element::kEmpty_Type == clipEntry->getType()) {
359 outClipPath->reset();
360 outClipPath->setFillType(SkPath::kInverseWinding_FillType);
361 continue;
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000362 } else {
363 clipEntry->asPath(&entryPath);
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000364 }
365 entryPath.transform(transform);
366
367 if (SkRegion::kReplace_Op == clipEntry->getOp()) {
368 *outClipPath = entryPath;
369 } else {
370 SkPathOp op = region_op_to_pathops_op(clipEntry->getOp());
371 if (!Op(*outClipPath, entryPath, op, outClipPath)) {
372 return false;
373 }
374 }
375 }
376
377 if (outClipPath->isInverseFillType()) {
378 // The bounds are slightly outset to ensure this is correct in the
379 // face of floating-point accuracy and possible SkRegion bitmap
380 // approximations.
381 SkRect clipBounds = SkRect::Make(clipRegion.getBounds());
382 clipBounds.outset(SK_Scalar1, SK_Scalar1);
383 if (!calculate_inverse_path(clipBounds, *outClipPath, outClipPath)) {
384 return false;
385 }
386 }
387 return true;
388}
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000389
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000390// TODO(vandebo): Take advantage of SkClipStack::getSaveCount(), the PDF
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000391// graphic state stack, and the fact that we can know all the clips used
392// on the page to optimize this.
393void GraphicStackState::updateClip(const SkClipStack& clipStack,
394 const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000395 const SkPoint& translation) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000396 if (clipStack == currentEntry()->fClipStack) {
397 return;
398 }
399
400 while (fStackDepth > 0) {
401 pop();
402 if (clipStack == currentEntry()->fClipStack) {
403 return;
404 }
405 }
406 push();
407
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000408 currentEntry()->fClipStack = clipStack;
409 currentEntry()->fClipRegion = clipRegion;
410
411 SkMatrix transform;
412 transform.setTranslate(translation.fX, translation.fY);
413
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000414 SkPath clipPath;
415 if (get_clip_stack_path(transform, clipStack, clipRegion, &clipPath)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700416 emit_clip(&clipPath, nullptr, fContentStream);
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000417 return;
418 }
halcanarydda239e2016-03-31 07:33:57 -0700419
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000420 // gsState->initialEntry()->fClipStack/Region specifies the clip that has
421 // already been applied. (If this is a top level device, then it specifies
422 // a clip to the content area. If this is a layer, then it specifies
423 // the clip in effect when the layer was created.) There's no need to
424 // reapply that clip; SKCanvas's SkDrawIter will draw anything outside the
425 // initial clip on the parent layer. (This means there's a bug if the user
426 // expands the clip and then uses any xfer mode that uses dst:
427 // http://code.google.com/p/skia/issues/detail?id=228 )
robertphillips@google.comc0290622012-07-16 21:20:03 +0000428 SkClipStack::Iter iter;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000429 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
430
431 // If the clip stack does anything other than intersect or if it uses
432 // an inverse fill type, we have to fall back to the clip region.
433 bool needRegion = false;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000434 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000435 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000436 if (clipEntry->getOp() != SkRegion::kIntersect_Op ||
437 clipEntry->isInverseFilled()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000438 needRegion = true;
439 break;
440 }
441 }
442
443 if (needRegion) {
444 SkPath clipPath;
445 SkAssertResult(clipRegion.getBoundaryPath(&clipPath));
halcanary96fcdcc2015-08-27 07:41:13 -0700446 emit_clip(&clipPath, nullptr, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000447 } else {
448 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000449 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000450 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000451 SkASSERT(clipEntry->getOp() == SkRegion::kIntersect_Op);
452 switch (clipEntry->getType()) {
453 case SkClipStack::Element::kRect_Type: {
454 SkRect translatedClip;
455 transform.mapRect(&translatedClip, clipEntry->getRect());
halcanary96fcdcc2015-08-27 07:41:13 -0700456 emit_clip(nullptr, &translatedClip, fContentStream);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000457 break;
458 }
commit-bot@chromium.org5a346a82014-02-16 16:01:14 +0000459 default: {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000460 SkPath translatedPath;
commit-bot@chromium.org5a346a82014-02-16 16:01:14 +0000461 clipEntry->asPath(&translatedPath);
462 translatedPath.transform(transform, &translatedPath);
halcanary96fcdcc2015-08-27 07:41:13 -0700463 emit_clip(&translatedPath, nullptr, fContentStream);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000464 break;
465 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000466 }
467 }
468 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000469}
470
471void GraphicStackState::updateMatrix(const SkMatrix& matrix) {
472 if (matrix == currentEntry()->fMatrix) {
473 return;
474 }
475
476 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) {
477 SkASSERT(fStackDepth > 0);
478 SkASSERT(fEntries[fStackDepth].fClipStack ==
479 fEntries[fStackDepth -1].fClipStack);
480 pop();
481
482 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask);
483 }
484 if (matrix.getType() == SkMatrix::kIdentity_Mask) {
485 return;
486 }
487
488 push();
489 SkPDFUtils::AppendTransform(matrix, fContentStream);
490 currentEntry()->fMatrix = matrix;
491}
492
halcanary2be7e012016-03-28 11:58:08 -0700493void GraphicStackState::updateDrawingState(const SkPDFDevice::GraphicStateEntry& state) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000494 // PDF treats a shader as a color, so we only set one or the other.
495 if (state.fShaderIndex >= 0) {
496 if (state.fShaderIndex != currentEntry()->fShaderIndex) {
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +0000497 SkPDFUtils::ApplyPattern(state.fShaderIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000498 currentEntry()->fShaderIndex = state.fShaderIndex;
499 }
500 } else {
501 if (state.fColor != currentEntry()->fColor ||
502 currentEntry()->fShaderIndex >= 0) {
503 emit_pdf_color(state.fColor, fContentStream);
504 fContentStream->writeText("RG ");
505 emit_pdf_color(state.fColor, fContentStream);
506 fContentStream->writeText("rg\n");
507 currentEntry()->fColor = state.fColor;
508 currentEntry()->fShaderIndex = -1;
509 }
510 }
511
512 if (state.fGraphicStateIndex != currentEntry()->fGraphicStateIndex) {
vandebo@chromium.org6112c212011-05-13 03:50:38 +0000513 SkPDFUtils::ApplyGraphicState(state.fGraphicStateIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000514 currentEntry()->fGraphicStateIndex = state.fGraphicStateIndex;
515 }
516
517 if (state.fTextScaleX) {
518 if (state.fTextScaleX != currentEntry()->fTextScaleX) {
519 SkScalar pdfScale = SkScalarMul(state.fTextScaleX,
520 SkIntToScalar(100));
halcanarybc4696b2015-05-06 10:56:04 -0700521 SkPDFUtils::AppendScalar(pdfScale, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000522 fContentStream->writeText(" Tz\n");
523 currentEntry()->fTextScaleX = state.fTextScaleX;
524 }
525 if (state.fTextFill != currentEntry()->fTextFill) {
bungeman99fe8222015-08-20 07:57:51 -0700526 static_assert(SkPaint::kFill_Style == 0, "enum_must_match_value");
527 static_assert(SkPaint::kStroke_Style == 1, "enum_must_match_value");
528 static_assert(SkPaint::kStrokeAndFill_Style == 2, "enum_must_match_value");
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000529 fContentStream->writeDecAsText(state.fTextFill);
530 fContentStream->writeText(" Tr\n");
531 currentEntry()->fTextFill = state.fTextFill;
532 }
533 }
534}
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000535
reed76033be2015-03-14 10:54:31 -0700536static bool not_supported_for_layers(const SkPaint& layerPaint) {
senorblancob0e89dc2014-10-20 14:03:12 -0700537 // PDF does not support image filters, so render them on CPU.
538 // Note that this rendering is done at "screen" resolution (100dpi), not
539 // printer resolution.
halcanary7a14b312015-10-01 07:28:13 -0700540 // TODO: It may be possible to express some filters natively using PDF
halcanary6950de62015-11-07 05:29:00 -0800541 // to improve quality and file size (https://bug.skia.org/3043)
reed76033be2015-03-14 10:54:31 -0700542
543 // TODO: should we return true if there is a colorfilter?
halcanary96fcdcc2015-08-27 07:41:13 -0700544 return layerPaint.getImageFilter() != nullptr;
reed76033be2015-03-14 10:54:31 -0700545}
546
547SkBaseDevice* SkPDFDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint* layerPaint) {
halcanary00b7e5e2015-04-15 13:05:18 -0700548 if (cinfo.fForImageFilter ||
549 (layerPaint && not_supported_for_layers(*layerPaint))) {
halcanary96fcdcc2015-08-27 07:41:13 -0700550 return nullptr;
senorblancob0e89dc2014-10-20 14:03:12 -0700551 }
fmalita6987dca2014-11-13 08:33:37 -0800552 SkISize size = SkISize::Make(cinfo.fInfo.width(), cinfo.fInfo.height());
halcanary989da4a2016-03-21 14:33:17 -0700553 return SkPDFDevice::Create(size, fRasterDpi, fDocument);
bsalomon@google.come97f0852011-06-17 13:10:25 +0000554}
555
halcanary989da4a2016-03-21 14:33:17 -0700556SkPDFCanon* SkPDFDevice::getCanon() const { return fDocument->canon(); }
557
bsalomon@google.come97f0852011-06-17 13:10:25 +0000558
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000559
560// A helper class to automatically finish a ContentEntry at the end of a
561// drawing method and maintain the state needed between set up and finish.
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000562class ScopedContentEntry {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000563public:
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000564 ScopedContentEntry(SkPDFDevice* device, const SkDraw& draw,
565 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000566 : fDevice(device),
halcanary96fcdcc2015-08-27 07:41:13 -0700567 fContentEntry(nullptr),
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000568 fXfermode(SkXfermode::kSrcOver_Mode),
halcanary96fcdcc2015-08-27 07:41:13 -0700569 fDstFormXObject(nullptr) {
reed1e7f5e72016-04-27 07:49:17 -0700570 init(draw.fClipStack, draw.fRC->bwRgn(), *draw.fMatrix, paint, hasText);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000571 }
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000572 ScopedContentEntry(SkPDFDevice* device, const SkClipStack* clipStack,
573 const SkRegion& clipRegion, const SkMatrix& matrix,
574 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000575 : fDevice(device),
halcanary96fcdcc2015-08-27 07:41:13 -0700576 fContentEntry(nullptr),
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000577 fXfermode(SkXfermode::kSrcOver_Mode),
halcanary96fcdcc2015-08-27 07:41:13 -0700578 fDstFormXObject(nullptr) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000579 init(clipStack, clipRegion, matrix, paint, hasText);
580 }
581
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000582 ~ScopedContentEntry() {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000583 if (fContentEntry) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000584 SkPath* shape = &fShape;
585 if (shape->isEmpty()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700586 shape = nullptr;
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000587 }
588 fDevice->finishContentEntry(fXfermode, fDstFormXObject, shape);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000589 }
reed@google.comfc641d02012-09-20 17:52:20 +0000590 SkSafeUnref(fDstFormXObject);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000591 }
592
halcanary2be7e012016-03-28 11:58:08 -0700593 SkPDFDevice::ContentEntry* entry() { return fContentEntry; }
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000594
595 /* Returns true when we explicitly need the shape of the drawing. */
596 bool needShape() {
597 switch (fXfermode) {
598 case SkXfermode::kClear_Mode:
599 case SkXfermode::kSrc_Mode:
600 case SkXfermode::kSrcIn_Mode:
601 case SkXfermode::kSrcOut_Mode:
602 case SkXfermode::kDstIn_Mode:
603 case SkXfermode::kDstOut_Mode:
604 case SkXfermode::kSrcATop_Mode:
605 case SkXfermode::kDstATop_Mode:
606 case SkXfermode::kModulate_Mode:
607 return true;
608 default:
609 return false;
610 }
611 }
612
613 /* Returns true unless we only need the shape of the drawing. */
614 bool needSource() {
615 if (fXfermode == SkXfermode::kClear_Mode) {
616 return false;
617 }
618 return true;
619 }
620
621 /* If the shape is different than the alpha component of the content, then
622 * setShape should be called with the shape. In particular, images and
623 * devices have rectangular shape.
624 */
625 void setShape(const SkPath& shape) {
626 fShape = shape;
627 }
628
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000629private:
630 SkPDFDevice* fDevice;
halcanary2be7e012016-03-28 11:58:08 -0700631 SkPDFDevice::ContentEntry* fContentEntry;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000632 SkXfermode::Mode fXfermode;
reed@google.comfc641d02012-09-20 17:52:20 +0000633 SkPDFFormXObject* fDstFormXObject;
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000634 SkPath fShape;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000635
636 void init(const SkClipStack* clipStack, const SkRegion& clipRegion,
637 const SkMatrix& matrix, const SkPaint& paint, bool hasText) {
edisonn@google.com83d8eda2013-10-24 13:19:28 +0000638 // Shape has to be flatten before we get here.
639 if (matrix.hasPerspective()) {
640 NOT_IMPLEMENTED(!matrix.hasPerspective(), false);
vandebo@chromium.orgdc37e202013-10-18 20:16:34 +0000641 return;
642 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000643 if (paint.getXfermode()) {
644 paint.getXfermode()->asMode(&fXfermode);
645 }
646 fContentEntry = fDevice->setUpContentEntry(clipStack, clipRegion,
647 matrix, paint, hasText,
648 &fDstFormXObject);
649 }
650};
651
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000652////////////////////////////////////////////////////////////////////////////////
653
halcanary989da4a2016-03-21 14:33:17 -0700654SkPDFDevice::SkPDFDevice(SkISize pageSize, SkScalar rasterDpi, SkPDFDocument* doc, bool flip)
robertphillips9a53fd72015-06-22 09:46:59 -0700655 : INHERITED(SkSurfaceProps(0, kUnknown_SkPixelGeometry))
656 , fPageSize(pageSize)
halcanarya1f1ee92015-02-20 06:17:26 -0800657 , fContentSize(pageSize)
658 , fExistingClipRegion(SkIRect::MakeSize(pageSize))
halcanary96fcdcc2015-08-27 07:41:13 -0700659 , fClipStack(nullptr)
halcanary385fe4d2015-08-26 13:07:48 -0700660 , fFontGlyphUsage(new SkPDFGlyphSetMap)
halcanarya1f1ee92015-02-20 06:17:26 -0800661 , fRasterDpi(rasterDpi)
halcanary989da4a2016-03-21 14:33:17 -0700662 , fDocument(doc) {
halcanarya1f1ee92015-02-20 06:17:26 -0800663 SkASSERT(pageSize.width() > 0);
664 SkASSERT(pageSize.height() > 0);
665 fLegacyBitmap.setInfo(
666 SkImageInfo::MakeUnknown(pageSize.width(), pageSize.height()));
667 if (flip) {
668 // Skia generally uses the top left as the origin but PDF
669 // natively has the origin at the bottom left. This matrix
670 // corrects for that. But that only needs to be done once, we
671 // don't do it when layering.
672 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight));
673 fInitialTransform.preScale(SK_Scalar1, -SK_Scalar1);
674 } else {
675 fInitialTransform.setIdentity();
676 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000677}
678
679SkPDFDevice::~SkPDFDevice() {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000680 this->cleanUp(true);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000681}
682
683void SkPDFDevice::init() {
mtklein852f15d2016-03-17 10:51:27 -0700684 fContentEntries.reset();
halcanary96fcdcc2015-08-27 07:41:13 -0700685 if (fFontGlyphUsage.get() == nullptr) {
halcanary385fe4d2015-08-26 13:07:48 -0700686 fFontGlyphUsage.reset(new SkPDFGlyphSetMap);
vandebo@chromium.org98594282011-07-25 22:34:12 +0000687 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000688}
689
vandebo@chromium.org98594282011-07-25 22:34:12 +0000690void SkPDFDevice::cleanUp(bool clearFontUsage) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000691 fGraphicStateResources.unrefAll();
692 fXObjectResources.unrefAll();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000693 fFontResources.unrefAll();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +0000694 fShaderResources.unrefAll();
reed@google.com2a006c12012-09-19 17:05:55 +0000695
vandebo@chromium.org98594282011-07-25 22:34:12 +0000696 if (clearFontUsage) {
697 fFontGlyphUsage->reset();
698 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000699}
700
reedf70b5312016-03-04 16:36:20 -0800701void SkPDFDevice::drawAnnotation(const SkDraw& d, const SkRect& rect, const char key[],
702 SkData* value) {
703 if (0 == rect.width() && 0 == rect.height()) {
704 handlePointAnnotation({ rect.x(), rect.y() }, *d.fMatrix, key, value);
705 } else {
706 SkPath path;
707 path.addRect(rect);
708 handlePathAnnotation(path, d, key, value);
709 }
710}
711
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000712void SkPDFDevice::drawPaint(const SkDraw& d, const SkPaint& paint) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000713 SkPaint newPaint = paint;
halcanarya6814332015-05-27 08:53:36 -0700714 replace_srcmode_on_opaque_paint(&newPaint);
715
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000716 newPaint.setStyle(SkPaint::kFill_Style);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000717 ScopedContentEntry content(this, d, newPaint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000718 internalDrawPaint(newPaint, content.entry());
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000719}
720
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000721void SkPDFDevice::internalDrawPaint(const SkPaint& paint,
halcanary2be7e012016-03-28 11:58:08 -0700722 SkPDFDevice::ContentEntry* contentEntry) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000723 if (!contentEntry) {
724 return;
725 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000726 SkRect bbox = SkRect::MakeWH(SkIntToScalar(this->width()),
727 SkIntToScalar(this->height()));
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000728 SkMatrix inverse;
commit-bot@chromium.orgd2cfa742013-09-20 18:58:30 +0000729 if (!contentEntry->fState.fMatrix.invert(&inverse)) {
vandebo@chromium.org386dfc02012-04-17 22:31:52 +0000730 return;
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000731 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000732 inverse.mapRect(&bbox);
733
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000734 SkPDFUtils::AppendRectangle(bbox, &contentEntry->fContent);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000735 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000736 &contentEntry->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000737}
738
halcanary682ee012016-01-28 10:59:34 -0800739void SkPDFDevice::drawPoints(const SkDraw& d,
halcanarya6814332015-05-27 08:53:36 -0700740 SkCanvas::PointMode mode,
741 size_t count,
742 const SkPoint* points,
743 const SkPaint& srcPaint) {
744 SkPaint passedPaint = srcPaint;
745 replace_srcmode_on_opaque_paint(&passedPaint);
746
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000747 if (count == 0) {
748 return;
749 }
750
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000751 // SkDraw::drawPoints converts to multiple calls to fDevice->drawPath.
752 // We only use this when there's a path effect because of the overhead
753 // of multiple calls to setUpContentEntry it causes.
754 if (passedPaint.getPathEffect()) {
reed1e7f5e72016-04-27 07:49:17 -0700755 if (d.fRC->isEmpty()) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000756 return;
757 }
758 SkDraw pointDraw(d);
759 pointDraw.fDevice = this;
760 pointDraw.drawPoints(mode, count, points, passedPaint, true);
761 return;
762 }
763
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000764 const SkPaint* paint = &passedPaint;
765 SkPaint modifiedPaint;
766
767 if (mode == SkCanvas::kPoints_PointMode &&
768 paint->getStrokeCap() != SkPaint::kRound_Cap) {
769 modifiedPaint = *paint;
770 paint = &modifiedPaint;
771 if (paint->getStrokeWidth()) {
772 // PDF won't draw a single point with square/butt caps because the
773 // orientation is ambiguous. Draw a rectangle instead.
774 modifiedPaint.setStyle(SkPaint::kFill_Style);
775 SkScalar strokeWidth = paint->getStrokeWidth();
776 SkScalar halfStroke = SkScalarHalf(strokeWidth);
777 for (size_t i = 0; i < count; i++) {
778 SkRect r = SkRect::MakeXYWH(points[i].fX, points[i].fY, 0, 0);
779 r.inset(-halfStroke, -halfStroke);
780 drawRect(d, r, modifiedPaint);
781 }
782 return;
783 } else {
784 modifiedPaint.setStrokeCap(SkPaint::kRound_Cap);
785 }
786 }
787
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000788 ScopedContentEntry content(this, d, *paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000789 if (!content.entry()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000790 return;
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +0000791 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000792
793 switch (mode) {
794 case SkCanvas::kPolygon_PointMode:
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000795 SkPDFUtils::MoveTo(points[0].fX, points[0].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000796 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000797 for (size_t i = 1; i < count; i++) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000798 SkPDFUtils::AppendLine(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000799 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000800 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000801 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000802 break;
803 case SkCanvas::kLines_PointMode:
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000804 for (size_t i = 0; i < count/2; i++) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000805 SkPDFUtils::MoveTo(points[i * 2].fX, points[i * 2].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000806 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000807 SkPDFUtils::AppendLine(points[i * 2 + 1].fX,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000808 points[i * 2 + 1].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000809 &content.entry()->fContent);
810 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000811 }
812 break;
813 case SkCanvas::kPoints_PointMode:
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000814 SkASSERT(paint->getStrokeCap() == SkPaint::kRound_Cap);
815 for (size_t i = 0; i < count; i++) {
816 SkPDFUtils::MoveTo(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000817 &content.entry()->fContent);
818 SkPDFUtils::ClosePath(&content.entry()->fContent);
819 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000820 }
821 break;
822 default:
823 SkASSERT(false);
824 }
825}
826
halcanary8103a342016-03-08 15:10:16 -0800827static sk_sp<SkPDFDict> create_link_annotation(const SkRect& translatedRect) {
halcanaryece83922016-03-08 08:32:12 -0800828 auto annotation = sk_make_sp<SkPDFDict>("Annot");
wangxianzhud76665d2015-07-17 17:23:15 -0700829 annotation->insertName("Subtype", "Link");
halcanary488165e2016-04-22 06:10:21 -0700830 annotation->insertInt("F", 4); // required by ISO 19005
wangxianzhud76665d2015-07-17 17:23:15 -0700831
halcanaryece83922016-03-08 08:32:12 -0800832 auto border = sk_make_sp<SkPDFArray>();
wangxianzhud76665d2015-07-17 17:23:15 -0700833 border->reserve(3);
834 border->appendInt(0); // Horizontal corner radius.
835 border->appendInt(0); // Vertical corner radius.
836 border->appendInt(0); // Width, 0 = no border.
halcanary8103a342016-03-08 15:10:16 -0800837 annotation->insertObject("Border", std::move(border));
wangxianzhud76665d2015-07-17 17:23:15 -0700838
halcanaryece83922016-03-08 08:32:12 -0800839 auto rect = sk_make_sp<SkPDFArray>();
wangxianzhud76665d2015-07-17 17:23:15 -0700840 rect->reserve(4);
841 rect->appendScalar(translatedRect.fLeft);
842 rect->appendScalar(translatedRect.fTop);
843 rect->appendScalar(translatedRect.fRight);
844 rect->appendScalar(translatedRect.fBottom);
halcanary8103a342016-03-08 15:10:16 -0800845 annotation->insertObject("Rect", std::move(rect));
wangxianzhud76665d2015-07-17 17:23:15 -0700846
halcanary8103a342016-03-08 15:10:16 -0800847 return annotation;
wangxianzhud76665d2015-07-17 17:23:15 -0700848}
849
halcanary8103a342016-03-08 15:10:16 -0800850static sk_sp<SkPDFDict> create_link_to_url(const SkData* urlData, const SkRect& r) {
851 auto annotation = create_link_annotation(r);
wangxianzhud76665d2015-07-17 17:23:15 -0700852 SkString url(static_cast<const char *>(urlData->data()),
853 urlData->size() - 1);
halcanaryece83922016-03-08 08:32:12 -0800854 auto action = sk_make_sp<SkPDFDict>("Action");
wangxianzhud76665d2015-07-17 17:23:15 -0700855 action->insertName("S", "URI");
856 action->insertString("URI", url);
halcanary8103a342016-03-08 15:10:16 -0800857 annotation->insertObject("A", std::move(action));
858 return annotation;
wangxianzhud76665d2015-07-17 17:23:15 -0700859}
860
halcanary8103a342016-03-08 15:10:16 -0800861static sk_sp<SkPDFDict> create_link_named_dest(const SkData* nameData,
862 const SkRect& r) {
863 auto annotation = create_link_annotation(r);
wangxianzhud76665d2015-07-17 17:23:15 -0700864 SkString name(static_cast<const char *>(nameData->data()),
865 nameData->size() - 1);
866 annotation->insertName("Dest", name);
halcanary8103a342016-03-08 15:10:16 -0800867 return annotation;
wangxianzhud76665d2015-07-17 17:23:15 -0700868}
869
halcanary682ee012016-01-28 10:59:34 -0800870void SkPDFDevice::drawRect(const SkDraw& d,
halcanarya6814332015-05-27 08:53:36 -0700871 const SkRect& rect,
872 const SkPaint& srcPaint) {
873 SkPaint paint = srcPaint;
874 replace_srcmode_on_opaque_paint(&paint);
commit-bot@chromium.org969fd6a2013-05-14 18:16:40 +0000875 SkRect r = rect;
876 r.sort();
877
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000878 if (paint.getPathEffect()) {
reed1e7f5e72016-04-27 07:49:17 -0700879 if (d.fRC->isEmpty()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000880 return;
881 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000882 SkPath path;
883 path.addRect(r);
halcanary96fcdcc2015-08-27 07:41:13 -0700884 drawPath(d, path, paint, nullptr, true);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000885 return;
886 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000887
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000888 ScopedContentEntry content(this, d, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000889 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000890 return;
891 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000892 SkPDFUtils::AppendRectangle(r, &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000893 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000894 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000895}
896
halcanarya6814332015-05-27 08:53:36 -0700897void SkPDFDevice::drawRRect(const SkDraw& draw,
898 const SkRRect& rrect,
899 const SkPaint& srcPaint) {
900 SkPaint paint = srcPaint;
901 replace_srcmode_on_opaque_paint(&paint);
scroggo@google.coma8e33a92013-11-08 18:02:53 +0000902 SkPath path;
903 path.addRRect(rrect);
halcanary96fcdcc2015-08-27 07:41:13 -0700904 this->drawPath(draw, path, paint, nullptr, true);
scroggo@google.coma8e33a92013-11-08 18:02:53 +0000905}
906
halcanarya6814332015-05-27 08:53:36 -0700907void SkPDFDevice::drawOval(const SkDraw& draw,
908 const SkRect& oval,
909 const SkPaint& srcPaint) {
910 SkPaint paint = srcPaint;
911 replace_srcmode_on_opaque_paint(&paint);
reed89443ab2014-06-27 11:34:19 -0700912 SkPath path;
913 path.addOval(oval);
halcanary96fcdcc2015-08-27 07:41:13 -0700914 this->drawPath(draw, path, paint, nullptr, true);
reed89443ab2014-06-27 11:34:19 -0700915}
916
halcanary682ee012016-01-28 10:59:34 -0800917void SkPDFDevice::drawPath(const SkDraw& d,
halcanarya6814332015-05-27 08:53:36 -0700918 const SkPath& origPath,
919 const SkPaint& srcPaint,
920 const SkMatrix* prePathMatrix,
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000921 bool pathIsMutable) {
halcanarya6814332015-05-27 08:53:36 -0700922 SkPaint paint = srcPaint;
923 replace_srcmode_on_opaque_paint(&paint);
halcanary682ee012016-01-28 10:59:34 -0800924 SkPath modifiedPath;
925 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000926
927 SkMatrix matrix = *d.fMatrix;
928 if (prePathMatrix) {
929 if (paint.getPathEffect() || paint.getStyle() != SkPaint::kFill_Style) {
halcanary682ee012016-01-28 10:59:34 -0800930 if (!pathIsMutable) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000931 pathPtr = &modifiedPath;
932 pathIsMutable = true;
933 }
halcanary682ee012016-01-28 10:59:34 -0800934 origPath.transform(*prePathMatrix, pathPtr);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000935 } else {
commit-bot@chromium.org92362382014-03-18 12:51:48 +0000936 matrix.preConcat(*prePathMatrix);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000937 }
938 }
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000939
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000940 if (paint.getPathEffect()) {
reed1e7f5e72016-04-27 07:49:17 -0700941 if (d.fRC->isEmpty()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000942 return;
943 }
halcanary682ee012016-01-28 10:59:34 -0800944 if (!pathIsMutable) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000945 pathPtr = &modifiedPath;
946 pathIsMutable = true;
947 }
halcanary682ee012016-01-28 10:59:34 -0800948 bool fill = paint.getFillPath(origPath, pathPtr);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000949
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +0000950 SkPaint noEffectPaint(paint);
halcanary96fcdcc2015-08-27 07:41:13 -0700951 noEffectPaint.setPathEffect(nullptr);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000952 if (fill) {
953 noEffectPaint.setStyle(SkPaint::kFill_Style);
954 } else {
955 noEffectPaint.setStyle(SkPaint::kStroke_Style);
956 noEffectPaint.setStrokeWidth(0);
957 }
halcanary96fcdcc2015-08-27 07:41:13 -0700958 drawPath(d, *pathPtr, noEffectPaint, nullptr, true);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000959 return;
960 }
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000961
edisonn@google.coma9ebd162013-10-07 13:22:21 +0000962 if (handleInversePath(d, origPath, paint, pathIsMutable, prePathMatrix)) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +0000963 return;
964 }
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +0000965
reed1e7f5e72016-04-27 07:49:17 -0700966 ScopedContentEntry content(this, d.fClipStack, d.fRC->bwRgn(), matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000967 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000968 return;
969 }
halcanary8b2bc252015-10-06 09:41:47 -0700970 bool consumeDegeratePathSegments =
971 paint.getStyle() == SkPaint::kFill_Style ||
972 (paint.getStrokeCap() != SkPaint::kRound_Cap &&
973 paint.getStrokeCap() != SkPaint::kSquare_Cap);
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000974 SkPDFUtils::EmitPath(*pathPtr, paint.getStyle(),
halcanary8b2bc252015-10-06 09:41:47 -0700975 consumeDegeratePathSegments,
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000976 &content.entry()->fContent);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000977 SkPDFUtils::PaintPath(paint.getStyle(), pathPtr->getFillType(),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000978 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000979}
980
halcanary7a14b312015-10-01 07:28:13 -0700981void SkPDFDevice::drawBitmapRect(const SkDraw& draw,
982 const SkBitmap& bitmap,
983 const SkRect* src,
984 const SkRect& dst,
985 const SkPaint& srcPaint,
986 SkCanvas::SrcRectConstraint constraint) {
halcanary66be6262016-03-21 13:01:34 -0700987 SkASSERT(false);
halcanary7a14b312015-10-01 07:28:13 -0700988}
989
990void SkPDFDevice::drawBitmap(const SkDraw& d,
991 const SkBitmap& bitmap,
992 const SkMatrix& matrix,
993 const SkPaint& srcPaint) {
halcanarya6814332015-05-27 08:53:36 -0700994 SkPaint paint = srcPaint;
995 if (bitmap.isOpaque()) {
996 replace_srcmode_on_opaque_paint(&paint);
997 }
998
reed1e7f5e72016-04-27 07:49:17 -0700999 if (d.fRC->isEmpty()) {
halcanary7a14b312015-10-01 07:28:13 -07001000 return;
1001 }
edisonn@google.com2ae67e72013-02-12 01:06:38 +00001002
halcanary7a14b312015-10-01 07:28:13 -07001003 SkMatrix transform = matrix;
1004 transform.postConcat(*d.fMatrix);
halcanarya50151d2016-03-25 11:57:49 -07001005 SkImageBitmap imageBitmap(bitmap);
1006 this->internalDrawImage(
reed1e7f5e72016-04-27 07:49:17 -07001007 transform, d.fClipStack, d.fRC->bwRgn(), imageBitmap, paint);
halcanary7a14b312015-10-01 07:28:13 -07001008}
1009
1010void SkPDFDevice::drawSprite(const SkDraw& d,
1011 const SkBitmap& bitmap,
1012 int x,
1013 int y,
1014 const SkPaint& srcPaint) {
1015 SkPaint paint = srcPaint;
1016 if (bitmap.isOpaque()) {
1017 replace_srcmode_on_opaque_paint(&paint);
1018 }
1019
reed1e7f5e72016-04-27 07:49:17 -07001020 if (d.fRC->isEmpty()) {
halcanary7a14b312015-10-01 07:28:13 -07001021 return;
1022 }
1023
1024 SkMatrix matrix;
1025 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
halcanarya50151d2016-03-25 11:57:49 -07001026 SkImageBitmap imageBitmap(bitmap);
1027 this->internalDrawImage(
reed1e7f5e72016-04-27 07:49:17 -07001028 matrix, d.fClipStack, d.fRC->bwRgn(), imageBitmap, paint);
halcanary7a14b312015-10-01 07:28:13 -07001029}
1030
1031void SkPDFDevice::drawImage(const SkDraw& draw,
1032 const SkImage* image,
1033 SkScalar x,
1034 SkScalar y,
1035 const SkPaint& srcPaint) {
1036 SkPaint paint = srcPaint;
1037 if (!image) {
1038 return;
1039 }
1040 if (image->isOpaque()) {
1041 replace_srcmode_on_opaque_paint(&paint);
1042 }
reed1e7f5e72016-04-27 07:49:17 -07001043 if (draw.fRC->isEmpty()) {
halcanary7a14b312015-10-01 07:28:13 -07001044 return;
1045 }
1046 SkMatrix transform = SkMatrix::MakeTrans(x, y);
1047 transform.postConcat(*draw.fMatrix);
halcanarya50151d2016-03-25 11:57:49 -07001048 SkImageBitmap imageBitmap(const_cast<SkImage*>(image));
1049 this->internalDrawImage(
reed1e7f5e72016-04-27 07:49:17 -07001050 transform, draw.fClipStack, draw.fRC->bwRgn(), imageBitmap, paint);
halcanary7a14b312015-10-01 07:28:13 -07001051}
1052
1053void SkPDFDevice::drawImageRect(const SkDraw& draw,
1054 const SkImage* image,
1055 const SkRect* src,
1056 const SkRect& dst,
1057 const SkPaint& srcPaint,
1058 SkCanvas::SrcRectConstraint constraint) {
halcanary66be6262016-03-21 13:01:34 -07001059 SkASSERT(false);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001060}
1061
halcanarybb264b72015-04-07 10:40:03 -07001062// Create a PDF string. Maximum length (in bytes) is 65,535.
1063// @param input A string value.
1064// @param len The length of the input array.
1065// @param wideChars True iff the upper byte in each uint16_t is
1066// significant and should be encoded and not
1067// discarded. If true, the upper byte is encoded
1068// first. Otherwise, we assert the upper byte is
1069// zero.
1070static SkString format_wide_string(const uint16_t* input,
1071 size_t len,
1072 bool wideChars) {
1073 if (wideChars) {
1074 SkASSERT(2 * len < 65535);
1075 static const char gHex[] = "0123456789ABCDEF";
1076 SkString result(4 * len + 2);
1077 result[0] = '<';
1078 for (size_t i = 0; i < len; i++) {
1079 result[4 * i + 1] = gHex[(input[i] >> 12) & 0xF];
1080 result[4 * i + 2] = gHex[(input[i] >> 8) & 0xF];
1081 result[4 * i + 3] = gHex[(input[i] >> 4) & 0xF];
1082 result[4 * i + 4] = gHex[(input[i] ) & 0xF];
1083 }
1084 result[4 * len + 1] = '>';
1085 return result;
1086 } else {
1087 SkASSERT(len <= 65535);
1088 SkString tmp(len);
1089 for (size_t i = 0; i < len; i++) {
1090 SkASSERT(0 == input[i] >> 8);
1091 tmp[i] = static_cast<uint8_t>(input[i]);
1092 }
halcanarybc4696b2015-05-06 10:56:04 -07001093 return SkPDFUtils::FormatString(tmp.c_str(), tmp.size());
halcanarybb264b72015-04-07 10:40:03 -07001094 }
1095}
1096
halcanary66a82f32015-10-12 13:05:04 -07001097static void draw_transparent_text(SkPDFDevice* device,
1098 const SkDraw& d,
1099 const void* text, size_t len,
1100 SkScalar x, SkScalar y,
1101 const SkPaint& srcPaint) {
1102
1103 SkPaint transparent;
1104 if (!SkPDFFont::CanEmbedTypeface(transparent.getTypeface(),
1105 device->getCanon())) {
1106 SkDEBUGFAIL("default typeface should be embeddable");
1107 return; // Avoid infinite loop in release.
1108 }
1109 transparent.setTextSize(srcPaint.getTextSize());
1110 transparent.setColor(SK_ColorTRANSPARENT);
1111 switch (srcPaint.getTextEncoding()) {
1112 case SkPaint::kGlyphID_TextEncoding: {
1113 // Since a glyphId<->Unicode mapping is typeface-specific,
1114 // map back to Unicode first.
1115 size_t glyphCount = len / 2;
1116 SkAutoTMalloc<SkUnichar> unichars(glyphCount);
1117 srcPaint.glyphsToUnichars(
1118 (const uint16_t*)text, SkToInt(glyphCount), &unichars[0]);
1119 transparent.setTextEncoding(SkPaint::kUTF32_TextEncoding);
1120 device->drawText(d, &unichars[0],
1121 glyphCount * sizeof(SkUnichar),
1122 x, y, transparent);
1123 break;
1124 }
1125 case SkPaint::kUTF8_TextEncoding:
1126 case SkPaint::kUTF16_TextEncoding:
1127 case SkPaint::kUTF32_TextEncoding:
1128 transparent.setTextEncoding(srcPaint.getTextEncoding());
1129 device->drawText(d, text, len, x, y, transparent);
1130 break;
1131 default:
1132 SkFAIL("unknown text encoding");
1133 }
1134}
1135
1136
halcanary682ee012016-01-28 10:59:34 -08001137void SkPDFDevice::drawText(const SkDraw& d, const void* text, size_t len,
halcanarya6814332015-05-27 08:53:36 -07001138 SkScalar x, SkScalar y, const SkPaint& srcPaint) {
halcanary989da4a2016-03-21 14:33:17 -07001139 if (!SkPDFFont::CanEmbedTypeface(srcPaint.getTypeface(), fDocument->canon())) {
halcanary6950de62015-11-07 05:29:00 -08001140 // https://bug.skia.org/3866
halcanary66a82f32015-10-12 13:05:04 -07001141 SkPath path;
1142 srcPaint.getTextPath(text, len, x, y, &path);
1143 this->drawPath(d, path, srcPaint, &SkMatrix::I(), true);
1144 // Draw text transparently to make it copyable/searchable/accessable.
1145 draw_transparent_text(this, d, text, len, x, y, srcPaint);
1146 return;
1147 }
halcanarya6814332015-05-27 08:53:36 -07001148 SkPaint paint = srcPaint;
1149 replace_srcmode_on_opaque_paint(&paint);
1150
halcanary96fcdcc2015-08-27 07:41:13 -07001151 NOT_IMPLEMENTED(paint.getMaskFilter() != nullptr, false);
1152 if (paint.getMaskFilter() != nullptr) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001153 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1154 // making text unreadable (e.g. same text twice when using CSS shadows).
1155 return;
1156 }
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001157 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001158 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001159 if (!content.entry()) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001160 return;
1161 }
1162
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001163 SkGlyphStorage storage(0);
halcanary96fcdcc2015-08-27 07:41:13 -07001164 const uint16_t* glyphIDs = nullptr;
reed@google.comaec40662014-04-18 19:29:07 +00001165 int numGlyphs = force_glyph_encoding(paint, text, len, &storage, &glyphIDs);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001166 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001167
benjaminwagnerd936f632016-02-23 10:44:31 -08001168 SkPaint::GlyphCacheProc glyphCacheProc = textPaint.getGlyphCacheProc(true);
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001169 align_text(glyphCacheProc, textPaint, glyphIDs, numGlyphs, &x, &y);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001170 content.entry()->fContent.writeText("BT\n");
1171 set_text_transform(x, y, textPaint.getTextSkewX(),
1172 &content.entry()->fContent);
reed@google.comaec40662014-04-18 19:29:07 +00001173 int consumedGlyphCount = 0;
halcanary2f912f32014-10-16 09:53:20 -07001174
1175 SkTDArray<uint16_t> glyphIDsCopy(glyphIDs, numGlyphs);
1176
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001177 while (numGlyphs > consumedGlyphCount) {
robertphillips8e0c1502015-07-07 10:28:43 -07001178 this->updateFont(textPaint, glyphIDs[consumedGlyphCount], content.entry());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001179 SkPDFFont* font = content.entry()->fState.fFont;
halcanary2f912f32014-10-16 09:53:20 -07001180
1181 int availableGlyphs = font->glyphsToPDFFontEncoding(
1182 glyphIDsCopy.begin() + consumedGlyphCount,
1183 numGlyphs - consumedGlyphCount);
1184 fFontGlyphUsage->noteGlyphUsage(
1185 font, glyphIDsCopy.begin() + consumedGlyphCount,
1186 availableGlyphs);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001187 SkString encodedString =
halcanarybb264b72015-04-07 10:40:03 -07001188 format_wide_string(glyphIDsCopy.begin() + consumedGlyphCount,
1189 availableGlyphs, font->multiByteGlyphs());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001190 content.entry()->fContent.writeText(encodedString.c_str());
vandebo@chromium.org01294102011-02-28 19:52:18 +00001191 consumedGlyphCount += availableGlyphs;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001192 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001193 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001194 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001195}
1196
halcanary682ee012016-01-28 10:59:34 -08001197void SkPDFDevice::drawPosText(const SkDraw& d, const void* text, size_t len,
fmalita05c4a432014-09-29 06:29:53 -07001198 const SkScalar pos[], int scalarsPerPos,
halcanary682ee012016-01-28 10:59:34 -08001199 const SkPoint& offset, const SkPaint& srcPaint) {
halcanary989da4a2016-03-21 14:33:17 -07001200 if (!SkPDFFont::CanEmbedTypeface(srcPaint.getTypeface(), fDocument->canon())) {
halcanary66a82f32015-10-12 13:05:04 -07001201 const SkPoint* positions = reinterpret_cast<const SkPoint*>(pos);
1202 SkAutoTMalloc<SkPoint> positionsBuffer;
1203 if (2 != scalarsPerPos) {
1204 int glyphCount = srcPaint.textToGlyphs(text, len, NULL);
1205 positionsBuffer.reset(glyphCount);
1206 for (int i = 0; i < glyphCount; ++i) {
1207 positionsBuffer[i].set(pos[i], 0.0f);
1208 }
1209 positions = &positionsBuffer[0];
1210 }
1211 SkPath path;
1212 srcPaint.getPosTextPath(text, len, positions, &path);
1213 SkMatrix matrix;
1214 matrix.setTranslate(offset);
1215 this->drawPath(d, path, srcPaint, &matrix, true);
1216 // Draw text transparently to make it copyable/searchable/accessable.
1217 draw_transparent_text(
1218 this, d, text, len, offset.x() + positions[0].x(),
1219 offset.y() + positions[0].y(), srcPaint);
1220 return;
1221 }
1222
halcanarya6814332015-05-27 08:53:36 -07001223 SkPaint paint = srcPaint;
1224 replace_srcmode_on_opaque_paint(&paint);
1225
halcanary96fcdcc2015-08-27 07:41:13 -07001226 NOT_IMPLEMENTED(paint.getMaskFilter() != nullptr, false);
1227 if (paint.getMaskFilter() != nullptr) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001228 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1229 // making text unreadable (e.g. same text twice when using CSS shadows).
1230 return;
1231 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001232 SkASSERT(1 == scalarsPerPos || 2 == scalarsPerPos);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001233 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001234 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001235 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001236 return;
1237 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001238
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001239 SkGlyphStorage storage(0);
halcanary96fcdcc2015-08-27 07:41:13 -07001240 const uint16_t* glyphIDs = nullptr;
bungeman22edc832014-10-03 07:55:58 -07001241 size_t numGlyphs = force_glyph_encoding(paint, text, len, &storage, &glyphIDs);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001242 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001243
benjaminwagnerd936f632016-02-23 10:44:31 -08001244 SkPaint::GlyphCacheProc glyphCacheProc = textPaint.getGlyphCacheProc(true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001245 content.entry()->fContent.writeText("BT\n");
robertphillips8e0c1502015-07-07 10:28:43 -07001246 this->updateFont(textPaint, glyphIDs[0], content.entry());
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001247 for (size_t i = 0; i < numGlyphs; i++) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001248 SkPDFFont* font = content.entry()->fState.fFont;
vandebo@chromium.org01294102011-02-28 19:52:18 +00001249 uint16_t encodedValue = glyphIDs[i];
1250 if (font->glyphsToPDFFontEncoding(&encodedValue, 1) != 1) {
bungeman22edc832014-10-03 07:55:58 -07001251 // The current pdf font cannot encode the current glyph.
1252 // Try to get a pdf font which can encode the current glyph.
robertphillips8e0c1502015-07-07 10:28:43 -07001253 this->updateFont(textPaint, glyphIDs[i], content.entry());
bungeman22edc832014-10-03 07:55:58 -07001254 font = content.entry()->fState.fFont;
1255 if (font->glyphsToPDFFontEncoding(&encodedValue, 1) != 1) {
1256 SkDEBUGFAIL("PDF could not encode glyph.");
1257 continue;
1258 }
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001259 }
bungeman22edc832014-10-03 07:55:58 -07001260
vandebo@chromium.org98594282011-07-25 22:34:12 +00001261 fFontGlyphUsage->noteGlyphUsage(font, &encodedValue, 1);
fmalita05c4a432014-09-29 06:29:53 -07001262 SkScalar x = offset.x() + pos[i * scalarsPerPos];
1263 SkScalar y = offset.y() + (2 == scalarsPerPos ? pos[i * scalarsPerPos + 1] : 0);
1264
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001265 align_text(glyphCacheProc, textPaint, glyphIDs + i, 1, &x, &y);
bungeman22edc832014-10-03 07:55:58 -07001266 set_text_transform(x, y, textPaint.getTextSkewX(), &content.entry()->fContent);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001267 SkString encodedString =
halcanarybb264b72015-04-07 10:40:03 -07001268 format_wide_string(&encodedValue, 1, font->multiByteGlyphs());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001269 content.entry()->fContent.writeText(encodedString.c_str());
1270 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001271 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001272 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001273}
1274
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001275void SkPDFDevice::drawVertices(const SkDraw& d, SkCanvas::VertexMode,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001276 int vertexCount, const SkPoint verts[],
1277 const SkPoint texs[], const SkColor colors[],
1278 SkXfermode* xmode, const uint16_t indices[],
1279 int indexCount, const SkPaint& paint) {
reed1e7f5e72016-04-27 07:49:17 -07001280 if (d.fRC->isEmpty()) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001281 return;
1282 }
reed@google.com85e143c2013-12-30 15:51:25 +00001283 // TODO: implement drawVertices
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001284}
1285
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001286void SkPDFDevice::drawDevice(const SkDraw& d, SkBaseDevice* device,
1287 int x, int y, const SkPaint& paint) {
fmalita6987dca2014-11-13 08:33:37 -08001288 // our onCreateCompatibleDevice() always creates SkPDFDevice subclasses.
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001289 SkPDFDevice* pdfDevice = static_cast<SkPDFDevice*>(device);
wangxianzhuef6c50a2015-09-17 20:38:02 -07001290
1291 SkScalar scalarX = SkIntToScalar(x);
1292 SkScalar scalarY = SkIntToScalar(y);
halcanary91fcb3e2016-03-04 13:53:22 -08001293 for (const RectWithData& l : pdfDevice->fLinkToURLs) {
1294 SkRect r = l.rect.makeOffset(scalarX, scalarY);
halcanaryd7b28852016-03-07 12:39:14 -08001295 fLinkToURLs.emplace_back(r, l.data.get());
wangxianzhuef6c50a2015-09-17 20:38:02 -07001296 }
halcanary91fcb3e2016-03-04 13:53:22 -08001297 for (const RectWithData& l : pdfDevice->fLinkToDestinations) {
1298 SkRect r = l.rect.makeOffset(scalarX, scalarY);
halcanaryd7b28852016-03-07 12:39:14 -08001299 fLinkToDestinations.emplace_back(r, l.data.get());
wangxianzhuef6c50a2015-09-17 20:38:02 -07001300 }
halcanary91fcb3e2016-03-04 13:53:22 -08001301 for (const NamedDestination& d : pdfDevice->fNamedDestinations) {
1302 SkPoint p = d.point + SkPoint::Make(scalarX, scalarY);
halcanaryd7b28852016-03-07 12:39:14 -08001303 fNamedDestinations.emplace_back(d.nameData.get(), p);
wangxianzhuef6c50a2015-09-17 20:38:02 -07001304 }
1305
ctguil@chromium.orgf4ff39c2011-05-24 19:55:05 +00001306 if (pdfDevice->isContentEmpty()) {
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001307 return;
1308 }
1309
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001310 SkMatrix matrix;
reed@google.coma6d59f62011-03-07 21:29:21 +00001311 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
reed1e7f5e72016-04-27 07:49:17 -07001312 ScopedContentEntry content(this, d.fClipStack, d.fRC->bwRgn(), matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001313 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001314 return;
1315 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001316 if (content.needShape()) {
1317 SkPath shape;
1318 shape.addRect(SkRect::MakeXYWH(SkIntToScalar(x), SkIntToScalar(y),
vandebo@chromium.orgfd3c8c22013-10-30 21:00:47 +00001319 SkIntToScalar(device->width()),
1320 SkIntToScalar(device->height())));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001321 content.setShape(shape);
1322 }
1323 if (!content.needSource()) {
1324 return;
1325 }
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001326
halcanaryece83922016-03-08 08:32:12 -08001327 auto xObject = sk_make_sp<SkPDFFormXObject>(pdfDevice);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001328 SkPDFUtils::DrawFormXObject(this->addXObjectResource(xObject.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001329 &content.entry()->fContent);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001330
1331 // Merge glyph sets from the drawn device.
1332 fFontGlyphUsage->merge(pdfDevice->getFontGlyphUsage());
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001333}
1334
reed89443ab2014-06-27 11:34:19 -07001335SkImageInfo SkPDFDevice::imageInfo() const {
1336 return fLegacyBitmap.info();
1337}
1338
robertphillips@google.com40a1ae42012-07-13 15:36:15 +00001339void SkPDFDevice::onAttachToCanvas(SkCanvas* canvas) {
1340 INHERITED::onAttachToCanvas(canvas);
1341
1342 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
1343 fClipStack = canvas->getClipStack();
1344}
1345
1346void SkPDFDevice::onDetachFromCanvas() {
1347 INHERITED::onDetachFromCanvas();
1348
halcanary96fcdcc2015-08-27 07:41:13 -07001349 fClipStack = nullptr;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +00001350}
1351
reede8f30622016-03-23 18:59:25 -07001352sk_sp<SkSurface> SkPDFDevice::makeSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
1353 return SkSurface::MakeRaster(info, &props);
reed89443ab2014-06-27 11:34:19 -07001354}
1355
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001356
halcanary8103a342016-03-08 15:10:16 -08001357sk_sp<SkPDFDict> SkPDFDevice::makeResourceDict() const {
halcanary2b861552015-04-09 13:27:40 -07001358 SkTDArray<SkPDFObject*> fonts;
1359 fonts.setReserve(fFontResources.count());
1360 for (SkPDFFont* font : fFontResources) {
1361 fonts.push(font);
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001362 }
halcanary8103a342016-03-08 15:10:16 -08001363 return SkPDFResourceDict::Make(
halcanary2b861552015-04-09 13:27:40 -07001364 &fGraphicStateResources,
1365 &fShaderResources,
1366 &fXObjectResources,
1367 &fonts);
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001368}
1369
vandebo@chromium.orgf0ec2662011-05-29 05:55:42 +00001370const SkTDArray<SkPDFFont*>& SkPDFDevice::getFontResources() const {
1371 return fFontResources;
1372}
1373
halcanary8103a342016-03-08 15:10:16 -08001374sk_sp<SkPDFArray> SkPDFDevice::copyMediaBox() const {
halcanaryece83922016-03-08 08:32:12 -08001375 auto mediaBox = sk_make_sp<SkPDFArray>();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001376 mediaBox->reserve(4);
halcanary130444f2015-04-25 06:45:07 -07001377 mediaBox->appendInt(0);
1378 mediaBox->appendInt(0);
halcanary8103a342016-03-08 15:10:16 -08001379 mediaBox->appendInt(fPageSize.width());
1380 mediaBox->appendInt(fPageSize.height());
1381 return mediaBox;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001382}
1383
mtklein5f939ab2016-03-16 10:28:35 -07001384std::unique_ptr<SkStreamAsset> SkPDFDevice::content() const {
halcanary334fcbc2015-02-24 12:56:16 -08001385 SkDynamicMemoryWStream buffer;
1386 this->writeContent(&buffer);
mtklein5f939ab2016-03-16 10:28:35 -07001387 return std::unique_ptr<SkStreamAsset>(
halcanary8103a342016-03-08 15:10:16 -08001388 buffer.bytesWritten() > 0
1389 ? buffer.detachAsStream()
1390 : new SkMemoryStream);
reed@google.com5667afc2011-06-27 14:42:15 +00001391}
1392
halcanary334fcbc2015-02-24 12:56:16 -08001393void SkPDFDevice::writeContent(SkWStream* out) const {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001394 if (fInitialTransform.getType() != SkMatrix::kIdentity_Mask) {
halcanary334fcbc2015-02-24 12:56:16 -08001395 SkPDFUtils::AppendTransform(fInitialTransform, out);
vandebo@chromium.orgc2a9b7f2011-02-24 23:22:30 +00001396 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001397
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001398 // If the content area is the entire page, then we don't need to clip
1399 // the content area (PDF area clips to the page size). Otherwise,
1400 // we have to clip to the content area; we've already applied the
1401 // initial transform, so just clip to the device size.
1402 if (fPageSize != fContentSize) {
robertphillips@google.com8637a362012-04-10 18:32:35 +00001403 SkRect r = SkRect::MakeWH(SkIntToScalar(this->width()),
1404 SkIntToScalar(this->height()));
halcanary96fcdcc2015-08-27 07:41:13 -07001405 emit_clip(nullptr, &r, out);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001406 }
vandebo@chromium.org98594282011-07-25 22:34:12 +00001407
halcanary2be7e012016-03-28 11:58:08 -07001408 GraphicStackState gsState(fExistingClipStack, fExistingClipRegion, out);
1409 for (const auto& entry : fContentEntries) {
1410 SkPoint translation;
1411 translation.iset(this->getOrigin());
1412 translation.negate();
1413 gsState.updateClip(entry.fState.fClipStack, entry.fState.fClipRegion,
1414 translation);
1415 gsState.updateMatrix(entry.fState.fMatrix);
1416 gsState.updateDrawingState(entry.fState);
1417
1418 entry.fContent.writeToStream(out);
1419 }
1420 gsState.drainStack();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001421}
1422
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001423/* Draws an inverse filled path by using Path Ops to compute the positive
1424 * inverse using the current clip as the inverse bounds.
1425 * Return true if this was an inverse path and was properly handled,
1426 * otherwise returns false and the normal drawing routine should continue,
1427 * either as a (incorrect) fallback or because the path was not inverse
1428 * in the first place.
1429 */
1430bool SkPDFDevice::handleInversePath(const SkDraw& d, const SkPath& origPath,
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001431 const SkPaint& paint, bool pathIsMutable,
1432 const SkMatrix* prePathMatrix) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001433 if (!origPath.isInverseFillType()) {
1434 return false;
1435 }
1436
reed1e7f5e72016-04-27 07:49:17 -07001437 if (d.fRC->isEmpty()) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001438 return false;
1439 }
1440
1441 SkPath modifiedPath;
1442 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
1443 SkPaint noInversePaint(paint);
1444
1445 // Merge stroking operations into final path.
1446 if (SkPaint::kStroke_Style == paint.getStyle() ||
1447 SkPaint::kStrokeAndFill_Style == paint.getStyle()) {
1448 bool doFillPath = paint.getFillPath(origPath, &modifiedPath);
1449 if (doFillPath) {
1450 noInversePaint.setStyle(SkPaint::kFill_Style);
1451 noInversePaint.setStrokeWidth(0);
1452 pathPtr = &modifiedPath;
1453 } else {
1454 // To be consistent with the raster output, hairline strokes
1455 // are rendered as non-inverted.
1456 modifiedPath.toggleInverseFillType();
halcanary96fcdcc2015-08-27 07:41:13 -07001457 drawPath(d, modifiedPath, paint, nullptr, true);
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001458 return true;
1459 }
1460 }
1461
1462 // Get bounds of clip in current transform space
1463 // (clip bounds are given in device space).
1464 SkRect bounds;
1465 SkMatrix transformInverse;
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001466 SkMatrix totalMatrix = *d.fMatrix;
1467 if (prePathMatrix) {
1468 totalMatrix.preConcat(*prePathMatrix);
1469 }
1470 if (!totalMatrix.invert(&transformInverse)) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001471 return false;
1472 }
reed1e7f5e72016-04-27 07:49:17 -07001473 bounds.set(d.fRC->getBounds());
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001474 transformInverse.mapRect(&bounds);
1475
1476 // Extend the bounds by the line width (plus some padding)
1477 // so the edge doesn't cause a visible stroke.
1478 bounds.outset(paint.getStrokeWidth() + SK_Scalar1,
1479 paint.getStrokeWidth() + SK_Scalar1);
1480
1481 if (!calculate_inverse_path(bounds, *pathPtr, &modifiedPath)) {
1482 return false;
1483 }
1484
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001485 drawPath(d, modifiedPath, noInversePaint, prePathMatrix, true);
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001486 return true;
1487}
1488
reedf70b5312016-03-04 16:36:20 -08001489void SkPDFDevice::handlePointAnnotation(const SkPoint& point,
epoger@google.comb58772f2013-03-08 09:09:10 +00001490 const SkMatrix& matrix,
reedf70b5312016-03-04 16:36:20 -08001491 const char key[], SkData* value) {
1492 if (!value) {
1493 return;
epoger@google.comb58772f2013-03-08 09:09:10 +00001494 }
reedf70b5312016-03-04 16:36:20 -08001495
1496 if (!strcmp(SkAnnotationKeys::Define_Named_Dest_Key(), key)) {
1497 SkPoint transformedPoint;
1498 matrix.mapXY(point.x(), point.y(), &transformedPoint);
1499 fNamedDestinations.emplace_back(value, transformedPoint);
1500 }
epoger@google.comb58772f2013-03-08 09:09:10 +00001501}
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001502
reedf70b5312016-03-04 16:36:20 -08001503void SkPDFDevice::handlePathAnnotation(const SkPath& path,
wangxianzhuef6c50a2015-09-17 20:38:02 -07001504 const SkDraw& d,
reedf70b5312016-03-04 16:36:20 -08001505 const char key[], SkData* value) {
1506 if (!value) {
1507 return;
1508 }
wangxianzhuef6c50a2015-09-17 20:38:02 -07001509
1510 SkPath transformedPath = path;
1511 transformedPath.transform(*d.fMatrix);
1512 SkRasterClip clip = *d.fRC;
senorblancoafc7cce2016-02-02 18:44:15 -08001513 clip.op(transformedPath, SkIRect::MakeWH(width(), height()), SkRegion::kIntersect_Op,
1514 false);
wangxianzhuef6c50a2015-09-17 20:38:02 -07001515 SkRect transformedRect = SkRect::Make(clip.getBounds());
1516
reedf70b5312016-03-04 16:36:20 -08001517 if (!strcmp(SkAnnotationKeys::URL_Key(), key)) {
wangxianzhuef6c50a2015-09-17 20:38:02 -07001518 if (!transformedRect.isEmpty()) {
reedf70b5312016-03-04 16:36:20 -08001519 fLinkToURLs.emplace_back(transformedRect, value);
wangxianzhuef6c50a2015-09-17 20:38:02 -07001520 }
reedf70b5312016-03-04 16:36:20 -08001521 } else if (!strcmp(SkAnnotationKeys::Link_Named_Dest_Key(), key)) {
reed16108352016-03-03 09:14:36 -08001522 if (!transformedRect.isEmpty()) {
reedf70b5312016-03-04 16:36:20 -08001523 fLinkToDestinations.emplace_back(transformedRect, value);
reed16108352016-03-03 09:14:36 -08001524 }
reed16108352016-03-03 09:14:36 -08001525 }
halcanary438de492015-04-28 06:21:01 -07001526}
1527
wangxianzhuef6c50a2015-09-17 20:38:02 -07001528void SkPDFDevice::appendAnnotations(SkPDFArray* array) const {
1529 array->reserve(fLinkToURLs.count() + fLinkToDestinations.count());
halcanary91fcb3e2016-03-04 13:53:22 -08001530 for (const RectWithData& rectWithURL : fLinkToURLs) {
wangxianzhuef6c50a2015-09-17 20:38:02 -07001531 SkRect r;
halcanary91fcb3e2016-03-04 13:53:22 -08001532 fInitialTransform.mapRect(&r, rectWithURL.rect);
halcanaryd7b28852016-03-07 12:39:14 -08001533 array->appendObject(create_link_to_url(rectWithURL.data.get(), r));
wangxianzhuef6c50a2015-09-17 20:38:02 -07001534 }
halcanary91fcb3e2016-03-04 13:53:22 -08001535 for (const RectWithData& linkToDestination : fLinkToDestinations) {
wangxianzhuef6c50a2015-09-17 20:38:02 -07001536 SkRect r;
halcanary91fcb3e2016-03-04 13:53:22 -08001537 fInitialTransform.mapRect(&r, linkToDestination.rect);
halcanaryd7b28852016-03-07 12:39:14 -08001538 array->appendObject(
1539 create_link_named_dest(linkToDestination.data.get(), r));
wangxianzhuef6c50a2015-09-17 20:38:02 -07001540 }
1541}
epoger@google.comb58772f2013-03-08 09:09:10 +00001542
halcanary6d622702015-03-25 08:45:42 -07001543void SkPDFDevice::appendDestinations(SkPDFDict* dict, SkPDFObject* page) const {
halcanary91fcb3e2016-03-04 13:53:22 -08001544 for (const NamedDestination& dest : fNamedDestinations) {
halcanaryece83922016-03-08 08:32:12 -08001545 auto pdfDest = sk_make_sp<SkPDFArray>();
epoger@google.comb58772f2013-03-08 09:09:10 +00001546 pdfDest->reserve(5);
halcanarye94ea622016-03-09 07:52:09 -08001547 pdfDest->appendObjRef(sk_ref_sp(page));
epoger@google.comb58772f2013-03-08 09:09:10 +00001548 pdfDest->appendName("XYZ");
halcanary91fcb3e2016-03-04 13:53:22 -08001549 SkPoint p = fInitialTransform.mapXY(dest.point.x(), dest.point.y());
wangxianzhuef6c50a2015-09-17 20:38:02 -07001550 pdfDest->appendScalar(p.x());
1551 pdfDest->appendScalar(p.y());
epoger@google.comb58772f2013-03-08 09:09:10 +00001552 pdfDest->appendInt(0); // Leave zoom unchanged
halcanary91fcb3e2016-03-04 13:53:22 -08001553 SkString name(static_cast<const char*>(dest.nameData->data()));
halcanary8103a342016-03-08 15:10:16 -08001554 dict->insertObject(name, std::move(pdfDest));
epoger@google.comb58772f2013-03-08 09:09:10 +00001555 }
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001556}
1557
reed@google.comfc641d02012-09-20 17:52:20 +00001558SkPDFFormXObject* SkPDFDevice::createFormXObjectFromDevice() {
halcanary385fe4d2015-08-26 13:07:48 -07001559 SkPDFFormXObject* xobject = new SkPDFFormXObject(this);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001560 // We always draw the form xobjects that we create back into the device, so
1561 // we simply preserve the font usage instead of pulling it out and merging
1562 // it back in later.
1563 cleanUp(false); // Reset this device to have no content.
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001564 init();
reed@google.comfc641d02012-09-20 17:52:20 +00001565 return xobject;
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001566}
1567
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001568void SkPDFDevice::drawFormXObjectWithMask(int xObjectIndex,
1569 SkPDFFormXObject* mask,
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001570 const SkClipStack* clipStack,
1571 const SkRegion& clipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001572 SkXfermode::Mode mode,
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001573 bool invertClip) {
1574 if (clipRegion.isEmpty() && !invertClip) {
1575 return;
1576 }
1577
halcanary1437c1e2016-03-13 18:30:24 -07001578 auto sMaskGS = SkPDFGraphicState::GetSMaskGraphicState(
halcanary989da4a2016-03-21 14:33:17 -07001579 mask, invertClip, SkPDFGraphicState::kAlpha_SMaskMode, fDocument->canon());
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001580
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001581 SkMatrix identity;
1582 identity.reset();
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001583 SkPaint paint;
1584 paint.setXfermodeMode(mode);
1585 ScopedContentEntry content(this, clipStack, clipRegion, identity, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001586 if (!content.entry()) {
1587 return;
1588 }
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001589 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001590 &content.entry()->fContent);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001591 SkPDFUtils::DrawFormXObject(xObjectIndex, &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001592
halcanary1437c1e2016-03-13 18:30:24 -07001593 // Call makeNoSmaskGraphicState() instead of
1594 // SkPDFGraphicState::MakeNoSmaskGraphicState so that the canon
1595 // can deduplicate.
halcanary989da4a2016-03-21 14:33:17 -07001596 sMaskGS = fDocument->canon()->makeNoSmaskGraphicState();
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001597 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001598 &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001599}
1600
halcanary2be7e012016-03-28 11:58:08 -07001601SkPDFDevice::ContentEntry* SkPDFDevice::setUpContentEntry(const SkClipStack* clipStack,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001602 const SkRegion& clipRegion,
1603 const SkMatrix& matrix,
1604 const SkPaint& paint,
1605 bool hasText,
reed@google.comfc641d02012-09-20 17:52:20 +00001606 SkPDFFormXObject** dst) {
halcanary96fcdcc2015-08-27 07:41:13 -07001607 *dst = nullptr;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001608 if (clipRegion.isEmpty()) {
halcanary96fcdcc2015-08-27 07:41:13 -07001609 return nullptr;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001610 }
1611
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001612 // The clip stack can come from an SkDraw where it is technically optional.
1613 SkClipStack synthesizedClipStack;
halcanary96fcdcc2015-08-27 07:41:13 -07001614 if (clipStack == nullptr) {
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001615 if (clipRegion == fExistingClipRegion) {
1616 clipStack = &fExistingClipStack;
1617 } else {
1618 // GraphicStackState::updateClip expects the clip stack to have
1619 // fExistingClip as a prefix, so start there, then set the clip
1620 // to the passed region.
1621 synthesizedClipStack = fExistingClipStack;
1622 SkPath clipPath;
1623 clipRegion.getBoundaryPath(&clipPath);
reed@google.com00177082011-10-12 14:34:30 +00001624 synthesizedClipStack.clipDevPath(clipPath, SkRegion::kReplace_Op,
1625 false);
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001626 clipStack = &synthesizedClipStack;
1627 }
1628 }
1629
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001630 SkXfermode::Mode xfermode = SkXfermode::kSrcOver_Mode;
1631 if (paint.getXfermode()) {
1632 paint.getXfermode()->asMode(&xfermode);
1633 }
1634
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001635 // For the following modes, we want to handle source and destination
1636 // separately, so make an object of what's already there.
1637 if (xfermode == SkXfermode::kClear_Mode ||
1638 xfermode == SkXfermode::kSrc_Mode ||
1639 xfermode == SkXfermode::kSrcIn_Mode ||
1640 xfermode == SkXfermode::kDstIn_Mode ||
1641 xfermode == SkXfermode::kSrcOut_Mode ||
1642 xfermode == SkXfermode::kDstOut_Mode ||
1643 xfermode == SkXfermode::kSrcATop_Mode ||
1644 xfermode == SkXfermode::kDstATop_Mode ||
1645 xfermode == SkXfermode::kModulate_Mode) {
1646 if (!isContentEmpty()) {
reed@google.comfc641d02012-09-20 17:52:20 +00001647 *dst = createFormXObjectFromDevice();
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001648 SkASSERT(isContentEmpty());
1649 } else if (xfermode != SkXfermode::kSrc_Mode &&
1650 xfermode != SkXfermode::kSrcOut_Mode) {
1651 // Except for Src and SrcOut, if there isn't anything already there,
1652 // then we're done.
halcanary96fcdcc2015-08-27 07:41:13 -07001653 return nullptr;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001654 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001655 }
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +00001656 // TODO(vandebo): Figure out how/if we can handle the following modes:
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001657 // Xor, Plus.
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001658
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001659 // Dst xfer mode doesn't draw source at all.
1660 if (xfermode == SkXfermode::kDst_Mode) {
halcanary96fcdcc2015-08-27 07:41:13 -07001661 return nullptr;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001662 }
1663
halcanary2be7e012016-03-28 11:58:08 -07001664 SkPDFDevice::ContentEntry* entry;
1665 if (fContentEntries.back() && fContentEntries.back()->fContent.getOffset() == 0) {
1666 entry = fContentEntries.back();
1667 } else if (xfermode != SkXfermode::kDstOver_Mode) {
1668 entry = fContentEntries.emplace_back();
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001669 } else {
halcanary2be7e012016-03-28 11:58:08 -07001670 entry = fContentEntries.emplace_front();
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001671 }
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001672 populateGraphicStateEntryFromPaint(matrix, *clipStack, clipRegion, paint,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001673 hasText, &entry->fState);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001674 return entry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001675}
1676
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001677void SkPDFDevice::finishContentEntry(SkXfermode::Mode xfermode,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001678 SkPDFFormXObject* dst,
1679 SkPath* shape) {
1680 if (xfermode != SkXfermode::kClear_Mode &&
1681 xfermode != SkXfermode::kSrc_Mode &&
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001682 xfermode != SkXfermode::kDstOver_Mode &&
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001683 xfermode != SkXfermode::kSrcIn_Mode &&
1684 xfermode != SkXfermode::kDstIn_Mode &&
1685 xfermode != SkXfermode::kSrcOut_Mode &&
1686 xfermode != SkXfermode::kDstOut_Mode &&
1687 xfermode != SkXfermode::kSrcATop_Mode &&
1688 xfermode != SkXfermode::kDstATop_Mode &&
1689 xfermode != SkXfermode::kModulate_Mode) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001690 SkASSERT(!dst);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001691 return;
1692 }
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001693 if (xfermode == SkXfermode::kDstOver_Mode) {
1694 SkASSERT(!dst);
halcanary2be7e012016-03-28 11:58:08 -07001695 if (fContentEntries.front()->fContent.getOffset() == 0) {
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001696 // For DstOver, an empty content entry was inserted before the rest
1697 // of the content entries. If nothing was drawn, it needs to be
1698 // removed.
halcanary2be7e012016-03-28 11:58:08 -07001699 fContentEntries.pop_front();
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001700 }
1701 return;
1702 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001703 if (!dst) {
1704 SkASSERT(xfermode == SkXfermode::kSrc_Mode ||
1705 xfermode == SkXfermode::kSrcOut_Mode);
1706 return;
1707 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001708
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001709 SkASSERT(dst);
halcanary2be7e012016-03-28 11:58:08 -07001710 SkASSERT(fContentEntries.count() == 1);
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001711 // Changing the current content into a form-xobject will destroy the clip
1712 // objects which is fine since the xobject will already be clipped. However
1713 // if source has shape, we need to clip it too, so a copy of the clip is
1714 // saved.
halcanary2be7e012016-03-28 11:58:08 -07001715
1716 SkClipStack clipStack = fContentEntries.front()->fState.fClipStack;
1717 SkRegion clipRegion = fContentEntries.front()->fState.fClipRegion;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001718
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001719 SkMatrix identity;
1720 identity.reset();
1721 SkPaint stockPaint;
1722
halcanary48810a02016-03-07 14:57:50 -08001723 sk_sp<SkPDFFormXObject> srcFormXObject;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001724 if (isContentEmpty()) {
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001725 // If nothing was drawn and there's no shape, then the draw was a
1726 // no-op, but dst needs to be restored for that to be true.
1727 // If there is shape, then an empty source with Src, SrcIn, SrcOut,
1728 // DstIn, DstAtop or Modulate reduces to Clear and DstOut or SrcAtop
1729 // reduces to Dst.
halcanary96fcdcc2015-08-27 07:41:13 -07001730 if (shape == nullptr || xfermode == SkXfermode::kDstOut_Mode ||
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001731 xfermode == SkXfermode::kSrcATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001732 ScopedContentEntry content(this, &fExistingClipStack,
1733 fExistingClipRegion, identity,
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001734 stockPaint);
1735 SkPDFUtils::DrawFormXObject(this->addXObjectResource(dst),
1736 &content.entry()->fContent);
1737 return;
1738 } else {
1739 xfermode = SkXfermode::kClear_Mode;
1740 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001741 } else {
halcanary2be7e012016-03-28 11:58:08 -07001742 SkASSERT(fContentEntries.count() == 1);
reed@google.comfc641d02012-09-20 17:52:20 +00001743 srcFormXObject.reset(createFormXObjectFromDevice());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001744 }
1745
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001746 // TODO(vandebo) srcFormXObject may contain alpha, but here we want it
1747 // without alpha.
1748 if (xfermode == SkXfermode::kSrcATop_Mode) {
1749 // TODO(vandebo): In order to properly support SrcATop we have to track
1750 // the shape of what's been drawn at all times. It's the intersection of
1751 // the non-transparent parts of the device and the outlines (shape) of
1752 // all images and devices drawn.
1753 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()), dst,
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001754 &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001755 SkXfermode::kSrcOver_Mode, true);
1756 } else {
halcanary48810a02016-03-07 14:57:50 -08001757 sk_sp<SkPDFFormXObject> dstMaskStorage;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001758 SkPDFFormXObject* dstMask = srcFormXObject.get();
halcanary96fcdcc2015-08-27 07:41:13 -07001759 if (shape != nullptr) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001760 // Draw shape into a form-xobject.
reed1e7f5e72016-04-27 07:49:17 -07001761 SkRasterClip rc(clipRegion);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001762 SkDraw d;
1763 d.fMatrix = &identity;
reed1e7f5e72016-04-27 07:49:17 -07001764 d.fRC = &rc;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001765 d.fClipStack = &clipStack;
1766 SkPaint filledPaint;
1767 filledPaint.setColor(SK_ColorBLACK);
1768 filledPaint.setStyle(SkPaint::kFill_Style);
halcanary96fcdcc2015-08-27 07:41:13 -07001769 this->drawPath(d, *shape, filledPaint, nullptr, true);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001770
1771 dstMaskStorage.reset(createFormXObjectFromDevice());
1772 dstMask = dstMaskStorage.get();
1773 }
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001774 drawFormXObjectWithMask(addXObjectResource(dst), dstMask,
1775 &fExistingClipStack, fExistingClipRegion,
1776 SkXfermode::kSrcOver_Mode, true);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001777 }
1778
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001779 if (xfermode == SkXfermode::kClear_Mode) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001780 return;
1781 } else if (xfermode == SkXfermode::kSrc_Mode ||
1782 xfermode == SkXfermode::kDstATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001783 ScopedContentEntry content(this, &fExistingClipStack,
1784 fExistingClipRegion, identity, stockPaint);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001785 if (content.entry()) {
1786 SkPDFUtils::DrawFormXObject(
1787 this->addXObjectResource(srcFormXObject.get()),
1788 &content.entry()->fContent);
1789 }
1790 if (xfermode == SkXfermode::kSrc_Mode) {
1791 return;
1792 }
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001793 } else if (xfermode == SkXfermode::kSrcATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001794 ScopedContentEntry content(this, &fExistingClipStack,
1795 fExistingClipRegion, identity, stockPaint);
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001796 if (content.entry()) {
1797 SkPDFUtils::DrawFormXObject(this->addXObjectResource(dst),
1798 &content.entry()->fContent);
1799 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001800 }
1801
1802 SkASSERT(xfermode == SkXfermode::kSrcIn_Mode ||
1803 xfermode == SkXfermode::kDstIn_Mode ||
1804 xfermode == SkXfermode::kSrcOut_Mode ||
1805 xfermode == SkXfermode::kDstOut_Mode ||
1806 xfermode == SkXfermode::kSrcATop_Mode ||
1807 xfermode == SkXfermode::kDstATop_Mode ||
1808 xfermode == SkXfermode::kModulate_Mode);
1809
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001810 if (xfermode == SkXfermode::kSrcIn_Mode ||
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001811 xfermode == SkXfermode::kSrcOut_Mode ||
1812 xfermode == SkXfermode::kSrcATop_Mode) {
1813 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()), dst,
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001814 &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001815 SkXfermode::kSrcOver_Mode,
1816 xfermode == SkXfermode::kSrcOut_Mode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001817 } else {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001818 SkXfermode::Mode mode = SkXfermode::kSrcOver_Mode;
1819 if (xfermode == SkXfermode::kModulate_Mode) {
1820 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()),
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001821 dst, &fExistingClipStack,
1822 fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001823 SkXfermode::kSrcOver_Mode, false);
1824 mode = SkXfermode::kMultiply_Mode;
1825 }
1826 drawFormXObjectWithMask(addXObjectResource(dst), srcFormXObject.get(),
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001827 &fExistingClipStack, fExistingClipRegion, mode,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001828 xfermode == SkXfermode::kDstOut_Mode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001829 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001830}
1831
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001832bool SkPDFDevice::isContentEmpty() {
halcanary2be7e012016-03-28 11:58:08 -07001833 if (!fContentEntries.front() || fContentEntries.front()->fContent.getOffset() == 0) {
1834 SkASSERT(fContentEntries.count() <= 1);
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001835 return true;
1836 }
1837 return false;
1838}
1839
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001840void SkPDFDevice::populateGraphicStateEntryFromPaint(
1841 const SkMatrix& matrix,
1842 const SkClipStack& clipStack,
1843 const SkRegion& clipRegion,
1844 const SkPaint& paint,
1845 bool hasText,
halcanary2be7e012016-03-28 11:58:08 -07001846 SkPDFDevice::GraphicStateEntry* entry) {
halcanary96fcdcc2015-08-27 07:41:13 -07001847 NOT_IMPLEMENTED(paint.getPathEffect() != nullptr, false);
1848 NOT_IMPLEMENTED(paint.getMaskFilter() != nullptr, false);
1849 NOT_IMPLEMENTED(paint.getColorFilter() != nullptr, false);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001850
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001851 entry->fMatrix = matrix;
1852 entry->fClipStack = clipStack;
1853 entry->fClipRegion = clipRegion;
vandebo@chromium.orgda6c5692012-06-28 21:37:20 +00001854 entry->fColor = SkColorSetA(paint.getColor(), 0xFF);
1855 entry->fShaderIndex = -1;
vandebo@chromium.org48543272011-02-08 19:28:07 +00001856
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001857 // PDF treats a shader as a color, so we only set one or the other.
halcanary48810a02016-03-07 14:57:50 -08001858 sk_sp<SkPDFObject> pdfShader;
reedfe630452016-03-25 09:08:00 -07001859 SkShader* shader = paint.getShader();
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001860 SkColor color = paint.getColor();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001861 if (shader) {
1862 // PDF positions patterns relative to the initial transform, so
1863 // we need to apply the current transform to the shader parameters.
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001864 SkMatrix transform = matrix;
vandebo@chromium.org75f97e42011-04-11 23:24:18 +00001865 transform.postConcat(fInitialTransform);
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001866
1867 // PDF doesn't support kClamp_TileMode, so we simulate it by making
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001868 // a pattern the size of the current clip.
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001869 SkIRect bounds = clipRegion.getBounds();
vandebo@chromium.org293a7582012-03-16 19:50:37 +00001870
1871 // We need to apply the initial transform to bounds in order to get
1872 // bounds in a consistent coordinate system.
1873 SkRect boundsTemp;
1874 boundsTemp.set(bounds);
1875 fInitialTransform.mapRect(&boundsTemp);
1876 boundsTemp.roundOut(&bounds);
1877
halcanary792c80f2015-02-20 07:21:05 -08001878 SkScalar rasterScale =
1879 SkIntToScalar(fRasterDpi) / DPI_FOR_RASTER_SCALE_ONE;
1880 pdfShader.reset(SkPDFShader::GetPDFShader(
reedfe630452016-03-25 09:08:00 -07001881 fDocument, fRasterDpi, shader, transform, bounds, rasterScale));
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001882
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00001883 if (pdfShader.get()) {
1884 // pdfShader has been canonicalized so we can directly compare
1885 // pointers.
1886 int resourceIndex = fShaderResources.find(pdfShader.get());
1887 if (resourceIndex < 0) {
1888 resourceIndex = fShaderResources.count();
1889 fShaderResources.push(pdfShader.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001890 pdfShader.get()->ref();
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00001891 }
1892 entry->fShaderIndex = resourceIndex;
1893 } else {
1894 // A color shader is treated as an invalid shader so we don't have
1895 // to set a shader just for a color.
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001896 SkShader::GradientInfo gradientInfo;
1897 SkColor gradientColor;
1898 gradientInfo.fColors = &gradientColor;
halcanary96fcdcc2015-08-27 07:41:13 -07001899 gradientInfo.fColorOffsets = nullptr;
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001900 gradientInfo.fColorCount = 1;
1901 if (shader->asAGradient(&gradientInfo) ==
1902 SkShader::kColor_GradientType) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001903 entry->fColor = SkColorSetA(gradientColor, 0xFF);
1904 color = gradientColor;
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001905 }
1906 }
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001907 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001908
halcanary48810a02016-03-07 14:57:50 -08001909 sk_sp<SkPDFGraphicState> newGraphicState;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001910 if (color == paint.getColor()) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001911 newGraphicState.reset(
halcanary989da4a2016-03-21 14:33:17 -07001912 SkPDFGraphicState::GetGraphicStateForPaint(fDocument->canon(), paint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001913 } else {
1914 SkPaint newPaint = paint;
1915 newPaint.setColor(color);
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001916 newGraphicState.reset(
halcanary989da4a2016-03-21 14:33:17 -07001917 SkPDFGraphicState::GetGraphicStateForPaint(fDocument->canon(), newPaint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001918 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001919 int resourceIndex = addGraphicStateResource(newGraphicState.get());
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001920 entry->fGraphicStateIndex = resourceIndex;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001921
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001922 if (hasText) {
1923 entry->fTextScaleX = paint.getTextScaleX();
1924 entry->fTextFill = paint.getStyle();
1925 } else {
1926 entry->fTextScaleX = 0;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001927 }
1928}
1929
halcanarybe27a112015-04-01 13:31:19 -07001930int SkPDFDevice::addGraphicStateResource(SkPDFObject* gs) {
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001931 // Assumes that gs has been canonicalized (so we can directly compare
1932 // pointers).
1933 int result = fGraphicStateResources.find(gs);
1934 if (result < 0) {
1935 result = fGraphicStateResources.count();
1936 fGraphicStateResources.push(gs);
1937 gs->ref();
1938 }
1939 return result;
1940}
1941
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001942int SkPDFDevice::addXObjectResource(SkPDFObject* xObject) {
1943 // Assumes that xobject has been canonicalized (so we can directly compare
1944 // pointers).
1945 int result = fXObjectResources.find(xObject);
1946 if (result < 0) {
1947 result = fXObjectResources.count();
1948 fXObjectResources.push(xObject);
1949 xObject->ref();
1950 }
1951 return result;
1952}
1953
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001954void SkPDFDevice::updateFont(const SkPaint& paint, uint16_t glyphID,
halcanary2be7e012016-03-28 11:58:08 -07001955 SkPDFDevice::ContentEntry* contentEntry) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00001956 SkTypeface* typeface = paint.getTypeface();
halcanary96fcdcc2015-08-27 07:41:13 -07001957 if (contentEntry->fState.fFont == nullptr ||
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001958 contentEntry->fState.fTextSize != paint.getTextSize() ||
1959 !contentEntry->fState.fFont->hasGlyph(glyphID)) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00001960 int fontIndex = getFontResourceIndex(typeface, glyphID);
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001961 contentEntry->fContent.writeText("/");
1962 contentEntry->fContent.writeText(SkPDFResourceDict::getResourceName(
1963 SkPDFResourceDict::kFont_ResourceType,
1964 fontIndex).c_str());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001965 contentEntry->fContent.writeText(" ");
halcanarybc4696b2015-05-06 10:56:04 -07001966 SkPDFUtils::AppendScalar(paint.getTextSize(), &contentEntry->fContent);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001967 contentEntry->fContent.writeText(" Tf\n");
1968 contentEntry->fState.fFont = fFontResources[fontIndex];
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001969 }
1970}
1971
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00001972int SkPDFDevice::getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID) {
halcanary48810a02016-03-07 14:57:50 -08001973 sk_sp<SkPDFFont> newFont(
halcanary989da4a2016-03-21 14:33:17 -07001974 SkPDFFont::GetFontResource(fDocument->canon(), typeface, glyphID));
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001975 int resourceIndex = fFontResources.find(newFont.get());
1976 if (resourceIndex < 0) {
1977 resourceIndex = fFontResources.count();
1978 fFontResources.push(newFont.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001979 newFont.get()->ref();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001980 }
1981 return resourceIndex;
1982}
1983
halcanary7a14b312015-10-01 07:28:13 -07001984static SkSize rect_to_size(const SkRect& r) {
1985 return SkSize::Make(r.width(), r.height());
1986}
1987
halcanarya50151d2016-03-25 11:57:49 -07001988static sk_sp<SkImage> color_filter(const SkImageBitmap& imageBitmap,
1989 SkColorFilter* colorFilter) {
halcanary9d524f22016-03-29 09:03:52 -07001990 auto surface =
halcanarya50151d2016-03-25 11:57:49 -07001991 SkSurface::MakeRaster(SkImageInfo::MakeN32Premul(imageBitmap.dimensions()));
1992 SkASSERT(surface);
halcanary7a14b312015-10-01 07:28:13 -07001993 SkCanvas* canvas = surface->getCanvas();
1994 canvas->clear(SK_ColorTRANSPARENT);
1995 SkPaint paint;
reedd053ce92016-03-22 10:17:23 -07001996 paint.setColorFilter(sk_ref_sp(colorFilter));
halcanarya50151d2016-03-25 11:57:49 -07001997 imageBitmap.draw(canvas, &paint);
halcanary7a14b312015-10-01 07:28:13 -07001998 canvas->flush();
halcanarya50151d2016-03-25 11:57:49 -07001999 return surface->makeImageSnapshot();
halcanary7a14b312015-10-01 07:28:13 -07002000}
2001
2002////////////////////////////////////////////////////////////////////////////////
2003void SkPDFDevice::internalDrawImage(const SkMatrix& origMatrix,
2004 const SkClipStack* clipStack,
2005 const SkRegion& origClipRegion,
halcanarya50151d2016-03-25 11:57:49 -07002006 SkImageBitmap imageBitmap,
halcanary7a14b312015-10-01 07:28:13 -07002007 const SkPaint& paint) {
halcanarya50151d2016-03-25 11:57:49 -07002008 if (imageBitmap.dimensions().isZero()) {
2009 return;
2010 }
halcanary7a14b312015-10-01 07:28:13 -07002011 #ifdef SK_PDF_IMAGE_STATS
2012 gDrawImageCalls.fetch_add(1);
2013 #endif
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002014 SkMatrix matrix = origMatrix;
2015 SkRegion perspectiveBounds;
2016 const SkRegion* clipRegion = &origClipRegion;
halcanarya50151d2016-03-25 11:57:49 -07002017 sk_sp<SkImage> autoImageUnref;
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002018
2019 // Rasterize the bitmap using perspective in a new bitmap.
2020 if (origMatrix.hasPerspective()) {
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002021 if (fRasterDpi == 0) {
2022 return;
2023 }
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002024 // Transform the bitmap in the new space, without taking into
2025 // account the initial transform.
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002026 SkPath perspectiveOutline;
halcanarya50151d2016-03-25 11:57:49 -07002027 SkRect imageBounds = SkRect::Make(imageBitmap.bounds());
halcanary7a14b312015-10-01 07:28:13 -07002028 perspectiveOutline.addRect(imageBounds);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002029 perspectiveOutline.transform(origMatrix);
2030
2031 // TODO(edisonn): perf - use current clip too.
2032 // Retrieve the bounds of the new shape.
2033 SkRect bounds = perspectiveOutline.getBounds();
2034
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002035 // Transform the bitmap in the new space, taking into
2036 // account the initial transform.
2037 SkMatrix total = origMatrix;
2038 total.postConcat(fInitialTransform);
halcanary7a14b312015-10-01 07:28:13 -07002039 SkScalar dpiScale = SkIntToScalar(fRasterDpi) /
2040 SkIntToScalar(DPI_FOR_RASTER_SCALE_ONE);
2041 total.postScale(dpiScale, dpiScale);
2042
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002043 SkPath physicalPerspectiveOutline;
halcanary7a14b312015-10-01 07:28:13 -07002044 physicalPerspectiveOutline.addRect(imageBounds);
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002045 physicalPerspectiveOutline.transform(total);
2046
halcanary7a14b312015-10-01 07:28:13 -07002047 SkRect physicalPerspectiveBounds =
2048 physicalPerspectiveOutline.getBounds();
2049 SkScalar scaleX = physicalPerspectiveBounds.width() / bounds.width();
2050 SkScalar scaleY = physicalPerspectiveBounds.height() / bounds.height();
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002051
2052 // TODO(edisonn): A better approach would be to use a bitmap shader
2053 // (in clamp mode) and draw a rect over the entire bounding box. Then
2054 // intersect perspectiveOutline to the clip. That will avoid introducing
2055 // alpha to the image while still giving good behavior at the edge of
2056 // the image. Avoiding alpha will reduce the pdf size and generation
2057 // CPU time some.
2058
halcanary7a14b312015-10-01 07:28:13 -07002059 SkISize wh = rect_to_size(physicalPerspectiveBounds).toCeil();
2060
reede8f30622016-03-23 18:59:25 -07002061 auto surface(SkSurface::MakeRaster(SkImageInfo::MakeN32Premul(wh)));
halcanary7a14b312015-10-01 07:28:13 -07002062 if (!surface) {
reed@google.com9ebcac52014-01-24 18:53:42 +00002063 return;
2064 }
halcanary7a14b312015-10-01 07:28:13 -07002065 SkCanvas* canvas = surface->getCanvas();
2066 canvas->clear(SK_ColorTRANSPARENT);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002067
2068 SkScalar deltaX = bounds.left();
2069 SkScalar deltaY = bounds.top();
2070
2071 SkMatrix offsetMatrix = origMatrix;
2072 offsetMatrix.postTranslate(-deltaX, -deltaY);
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002073 offsetMatrix.postScale(scaleX, scaleY);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002074
2075 // Translate the draw in the new canvas, so we perfectly fit the
2076 // shape in the bitmap.
halcanary7a14b312015-10-01 07:28:13 -07002077 canvas->setMatrix(offsetMatrix);
halcanarya50151d2016-03-25 11:57:49 -07002078 imageBitmap.draw(canvas, nullptr);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002079 // Make sure the final bits are in the bitmap.
halcanary7a14b312015-10-01 07:28:13 -07002080 canvas->flush();
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002081
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002082 // In the new space, we use the identity matrix translated
2083 // and scaled to reflect DPI.
2084 matrix.setScale(1 / scaleX, 1 / scaleY);
2085 matrix.postTranslate(deltaX, deltaY);
2086
halcanary7a14b312015-10-01 07:28:13 -07002087 perspectiveBounds.setRect(bounds.roundOut());
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002088 clipRegion = &perspectiveBounds;
halcanary7a14b312015-10-01 07:28:13 -07002089
halcanarya50151d2016-03-25 11:57:49 -07002090 autoImageUnref = surface->makeImageSnapshot();
2091 imageBitmap = SkImageBitmap(autoImageUnref.get());
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002092 }
2093
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002094 SkMatrix scaled;
2095 // Adjust for origin flip.
vandebo@chromium.org663515b2012-01-05 18:45:27 +00002096 scaled.setScale(SK_Scalar1, -SK_Scalar1);
2097 scaled.postTranslate(0, SK_Scalar1);
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002098 // Scale the image up from 1x1 to WxH.
halcanarya50151d2016-03-25 11:57:49 -07002099 SkIRect subset = imageBitmap.bounds();
2100 scaled.postScale(SkIntToScalar(imageBitmap.dimensions().width()),
2101 SkIntToScalar(imageBitmap.dimensions().height()));
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002102 scaled.postConcat(matrix);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002103 ScopedContentEntry content(this, clipStack, *clipRegion, scaled, paint);
halcanarya50151d2016-03-25 11:57:49 -07002104 if (!content.entry()) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002105 return;
2106 }
2107 if (content.needShape()) {
2108 SkPath shape;
halcanary7a14b312015-10-01 07:28:13 -07002109 shape.addRect(SkRect::Make(subset));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002110 shape.transform(matrix);
2111 content.setShape(shape);
2112 }
2113 if (!content.needSource()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00002114 return;
2115 }
2116
halcanary287d22d2015-09-24 10:20:05 -07002117 if (SkColorFilter* colorFilter = paint.getColorFilter()) {
halcanary6950de62015-11-07 05:29:00 -08002118 // TODO(https://bug.skia.org/4378): implement colorfilter on other
halcanary7a14b312015-10-01 07:28:13 -07002119 // draw calls. This code here works for all
2120 // drawBitmap*()/drawImage*() calls amd ImageFilters (which
2121 // rasterize a layer on this backend). Fortuanely, this seems
2122 // to be how Chromium impements most color-filters.
halcanarya50151d2016-03-25 11:57:49 -07002123 autoImageUnref = color_filter(imageBitmap, colorFilter);
2124 imageBitmap = SkImageBitmap(autoImageUnref.get());
halcanary7a14b312015-10-01 07:28:13 -07002125 // TODO(halcanary): de-dupe this by caching filtered images.
2126 // (maybe in the resource cache?)
2127 }
halcanarya50151d2016-03-25 11:57:49 -07002128
2129 SkBitmapKey key = imageBitmap.getKey();
2130 sk_sp<SkPDFObject> pdfimage = fDocument->canon()->findPDFBitmap(key);
halcanary7a14b312015-10-01 07:28:13 -07002131 if (!pdfimage) {
halcanarya50151d2016-03-25 11:57:49 -07002132 auto img = imageBitmap.makeImage();
2133 if (!img) {
2134 return;
2135 }
2136 pdfimage = SkPDFCreateBitmapObject(
2137 std::move(img), fDocument->canon()->getPixelSerializer());
halcanary7a14b312015-10-01 07:28:13 -07002138 if (!pdfimage) {
2139 return;
halcanary287d22d2015-09-24 10:20:05 -07002140 }
halcanarya50151d2016-03-25 11:57:49 -07002141 fDocument->serialize(pdfimage); // serialize images early.
2142 fDocument->canon()->addPDFBitmap(key, pdfimage);
halcanary287d22d2015-09-24 10:20:05 -07002143 }
halcanarya50151d2016-03-25 11:57:49 -07002144 // TODO(halcanary): addXObjectResource() should take a sk_sp<SkPDFObject>
halcanary3d8c33c2015-10-01 11:06:22 -07002145 SkPDFUtils::DrawFormXObject(this->addXObjectResource(pdfimage.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002146 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002147}