blob: 8e76c442befaabe89e492455c631285d141fdeab [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"
martina.kollarovab8d6af12016-06-29 05:12:31 -070011#include "SkBitmapKey.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000012#include "SkColor.h"
halcanary287d22d2015-09-24 10:20:05 -070013#include "SkColorFilter.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.orga5180862010-10-26 19:48:49 +000016#include "SkPath.h"
reeda4393342016-03-18 11:22:57 -070017#include "SkPathEffect.h"
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +000018#include "SkPathOps.h"
halcanarydb0dcc72015-03-20 12:31:52 -070019#include "SkPDFBitmap.h"
halcanary7a14b312015-10-01 07:28:13 -070020#include "SkPDFCanon.h"
halcanary989da4a2016-03-21 14:33:17 -070021#include "SkPDFDocument.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000022#include "SkPDFFont.h"
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000023#include "SkPDFFormXObject.h"
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +000024#include "SkPDFGraphicState.h"
commit-bot@chromium.org47401352013-07-23 21:49:29 +000025#include "SkPDFResourceDict.h"
vandebo@chromium.orgda912d62011-03-08 18:31:02 +000026#include "SkPDFShader.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000027#include "SkPDFStream.h"
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +000028#include "SkPDFTypes.h"
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +000029#include "SkPDFUtils.h"
wangxianzhuef6c50a2015-09-17 20:38:02 -070030#include "SkRasterClip.h"
scroggo@google.coma8e33a92013-11-08 18:02:53 +000031#include "SkRRect.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000032#include "SkString.h"
reed89443ab2014-06-27 11:34:19 -070033#include "SkSurface.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000034#include "SkTextFormatParams.h"
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +000035#include "SkTemplates.h"
reed@google.comfed86bd2013-03-14 15:04:57 +000036#include "SkTypefacePriv.h"
halcanarya6814332015-05-27 08:53:36 -070037#include "SkXfermodeInterpretation.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000038
edisonn@google.com73a7ea32013-11-11 20:55:15 +000039#define DPI_FOR_RASTER_SCALE_ONE 72
40
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000041// Utility functions
42
halcanarya6814332015-05-27 08:53:36 -070043// If the paint will definitely draw opaquely, replace kSrc_Mode with
44// kSrcOver_Mode. http://crbug.com/473572
45static void replace_srcmode_on_opaque_paint(SkPaint* paint) {
46 if (kSrcOver_SkXfermodeInterpretation
47 == SkInterpretXfermode(*paint, false)) {
halcanary96fcdcc2015-08-27 07:41:13 -070048 paint->setXfermode(nullptr);
halcanarya6814332015-05-27 08:53:36 -070049 }
50}
51
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000052static void emit_pdf_color(SkColor color, SkWStream* result) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000053 SkASSERT(SkColorGetA(color) == 0xFF); // We handle alpha elsewhere.
reed80ea19c2015-05-12 10:37:34 -070054 SkScalar colorScale = SkScalarInvert(0xFF);
55 SkPDFUtils::AppendScalar(SkColorGetR(color) * colorScale, result);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000056 result->writeText(" ");
reed80ea19c2015-05-12 10:37:34 -070057 SkPDFUtils::AppendScalar(SkColorGetG(color) * colorScale, result);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000058 result->writeText(" ");
reed80ea19c2015-05-12 10:37:34 -070059 SkPDFUtils::AppendScalar(SkColorGetB(color) * colorScale, result);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000060 result->writeText(" ");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000061}
62
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000063static SkPaint calculate_text_paint(const SkPaint& paint) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000064 SkPaint result = paint;
65 if (result.isFakeBoldText()) {
66 SkScalar fakeBoldScale = SkScalarInterpFunc(result.getTextSize(),
67 kStdFakeBoldInterpKeys,
68 kStdFakeBoldInterpValues,
69 kStdFakeBoldInterpLength);
70 SkScalar width = SkScalarMul(result.getTextSize(), fakeBoldScale);
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000071 if (result.getStyle() == SkPaint::kFill_Style) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000072 result.setStyle(SkPaint::kStrokeAndFill_Style);
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000073 } else {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000074 width += result.getStrokeWidth();
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000075 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000076 result.setStrokeWidth(width);
77 }
78 return result;
79}
80
81// Stolen from measure_text in SkDraw.cpp and then tweaked.
benjaminwagnerd936f632016-02-23 10:44:31 -080082static void align_text(SkPaint::GlyphCacheProc glyphCacheProc, const SkPaint& paint,
bungeman@google.com9a87cee2011-08-23 17:02:18 +000083 const uint16_t* glyphs, size_t len,
84 SkScalar* x, SkScalar* y) {
85 if (paint.getTextAlign() == SkPaint::kLeft_Align) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000086 return;
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000087 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000088
89 SkMatrix ident;
90 ident.reset();
halcanary96fcdcc2015-08-27 07:41:13 -070091 SkAutoGlyphCache autoCache(paint, nullptr, &ident);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000092 SkGlyphCache* cache = autoCache.getCache();
93
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +000094 const char* start = reinterpret_cast<const char*>(glyphs);
95 const char* stop = reinterpret_cast<const char*>(glyphs + len);
benjaminwagner6b3eacb2016-03-24 19:07:58 -070096 SkScalar xAdv = 0, yAdv = 0;
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000097
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000098 // TODO(vandebo): This probably needs to take kerning into account.
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000099 while (start < stop) {
benjaminwagnerd936f632016-02-23 10:44:31 -0800100 const SkGlyph& glyph = glyphCacheProc(cache, &start);
benjaminwagner6b3eacb2016-03-24 19:07:58 -0700101 xAdv += SkFloatToScalar(glyph.fAdvanceX);
102 yAdv += SkFloatToScalar(glyph.fAdvanceY);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000103 };
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000104 if (paint.getTextAlign() == SkPaint::kLeft_Align) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000105 return;
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000106 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000107
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000108 if (paint.getTextAlign() == SkPaint::kCenter_Align) {
benjaminwagner6b3eacb2016-03-24 19:07:58 -0700109 xAdv = SkScalarHalf(xAdv);
110 yAdv = SkScalarHalf(yAdv);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000111 }
benjaminwagner6b3eacb2016-03-24 19:07:58 -0700112 *x = *x - xAdv;
113 *y = *y - yAdv;
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000114}
115
robertphillips@google.coma4662862013-11-21 14:24:16 +0000116static int max_glyphid_for_typeface(SkTypeface* typeface) {
reed@google.comfed86bd2013-03-14 15:04:57 +0000117 SkAutoResolveDefaultTypeface autoResolve(typeface);
118 typeface = autoResolve.get();
commit-bot@chromium.org6a4ba5b2013-07-17 21:55:08 +0000119 return typeface->countGlyphs() - 1;
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000120}
121
122typedef SkAutoSTMalloc<128, uint16_t> SkGlyphStorage;
123
reed@google.comaec40662014-04-18 19:29:07 +0000124static int force_glyph_encoding(const SkPaint& paint, const void* text,
125 size_t len, SkGlyphStorage* storage,
bungeman22edc832014-10-03 07:55:58 -0700126 const uint16_t** glyphIDs) {
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000127 // Make sure we have a glyph id encoding.
128 if (paint.getTextEncoding() != SkPaint::kGlyphID_TextEncoding) {
halcanary96fcdcc2015-08-27 07:41:13 -0700129 int numGlyphs = paint.textToGlyphs(text, len, nullptr);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000130 storage->reset(numGlyphs);
131 paint.textToGlyphs(text, len, storage->get());
132 *glyphIDs = storage->get();
133 return numGlyphs;
134 }
135
136 // For user supplied glyph ids we need to validate them.
137 SkASSERT((len & 1) == 0);
reed@google.comaec40662014-04-18 19:29:07 +0000138 int numGlyphs = SkToInt(len / 2);
bungeman22edc832014-10-03 07:55:58 -0700139 const uint16_t* input = static_cast<const uint16_t*>(text);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000140
141 int maxGlyphID = max_glyphid_for_typeface(paint.getTypeface());
reed@google.comaec40662014-04-18 19:29:07 +0000142 int validated;
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000143 for (validated = 0; validated < numGlyphs; ++validated) {
144 if (input[validated] > maxGlyphID) {
145 break;
146 }
147 }
148 if (validated >= numGlyphs) {
bungeman22edc832014-10-03 07:55:58 -0700149 *glyphIDs = static_cast<const uint16_t*>(text);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000150 return numGlyphs;
151 }
152
153 // Silently drop anything out of range.
154 storage->reset(numGlyphs);
155 if (validated > 0) {
156 memcpy(storage->get(), input, validated * sizeof(uint16_t));
157 }
158
reed@google.comaec40662014-04-18 19:29:07 +0000159 for (int i = validated; i < numGlyphs; ++i) {
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000160 storage->get()[i] = input[i];
161 if (input[i] > maxGlyphID) {
162 storage->get()[i] = 0;
163 }
164 }
165 *glyphIDs = storage->get();
166 return numGlyphs;
167}
168
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000169static void set_text_transform(SkScalar x, SkScalar y, SkScalar textSkewX,
170 SkWStream* content) {
171 // Flip the text about the x-axis to account for origin swap and include
172 // the passed parameters.
173 content->writeText("1 0 ");
halcanarybc4696b2015-05-06 10:56:04 -0700174 SkPDFUtils::AppendScalar(0 - textSkewX, content);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000175 content->writeText(" -1 ");
halcanarybc4696b2015-05-06 10:56:04 -0700176 SkPDFUtils::AppendScalar(x, content);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000177 content->writeText(" ");
halcanarybc4696b2015-05-06 10:56:04 -0700178 SkPDFUtils::AppendScalar(y, content);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000179 content->writeText(" Tm\n");
180}
181
halcanary2be7e012016-03-28 11:58:08 -0700182SkPDFDevice::GraphicStateEntry::GraphicStateEntry()
183 : fColor(SK_ColorBLACK)
184 , fTextScaleX(SK_Scalar1)
185 , fTextFill(SkPaint::kFill_Style)
186 , fShaderIndex(-1)
187 , fGraphicStateIndex(-1)
188 , fFont(nullptr)
189 , fTextSize(SK_ScalarNaN) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000190 fMatrix.reset();
191}
192
halcanary2be7e012016-03-28 11:58:08 -0700193bool SkPDFDevice::GraphicStateEntry::compareInitialState(
194 const GraphicStateEntry& cur) {
commit-bot@chromium.orgb000d762014-02-07 19:39:57 +0000195 return fColor == cur.fColor &&
196 fShaderIndex == cur.fShaderIndex &&
197 fGraphicStateIndex == cur.fGraphicStateIndex &&
198 fMatrix == cur.fMatrix &&
199 fClipStack == cur.fClipStack &&
200 (fTextScaleX == 0 ||
201 (fTextScaleX == cur.fTextScaleX && fTextFill == cur.fTextFill));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000202}
203
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000204class GraphicStackState {
205public:
206 GraphicStackState(const SkClipStack& existingClipStack,
207 const SkRegion& existingClipRegion,
208 SkWStream* contentStream)
209 : fStackDepth(0),
210 fContentStream(contentStream) {
211 fEntries[0].fClipStack = existingClipStack;
212 fEntries[0].fClipRegion = existingClipRegion;
213 }
214
215 void updateClip(const SkClipStack& clipStack, const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000216 const SkPoint& translation);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000217 void updateMatrix(const SkMatrix& matrix);
halcanary2be7e012016-03-28 11:58:08 -0700218 void updateDrawingState(const SkPDFDevice::GraphicStateEntry& state);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000219
220 void drainStack();
221
222private:
223 void push();
224 void pop();
halcanary2be7e012016-03-28 11:58:08 -0700225 SkPDFDevice::GraphicStateEntry* currentEntry() { return &fEntries[fStackDepth]; }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000226
227 // Conservative limit on save depth, see impl. notes in PDF 1.4 spec.
228 static const int kMaxStackDepth = 12;
halcanary2be7e012016-03-28 11:58:08 -0700229 SkPDFDevice::GraphicStateEntry fEntries[kMaxStackDepth + 1];
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000230 int fStackDepth;
231 SkWStream* fContentStream;
232};
233
234void GraphicStackState::drainStack() {
235 while (fStackDepth) {
236 pop();
237 }
238}
239
240void GraphicStackState::push() {
241 SkASSERT(fStackDepth < kMaxStackDepth);
242 fContentStream->writeText("q\n");
243 fStackDepth++;
244 fEntries[fStackDepth] = fEntries[fStackDepth - 1];
245}
246
247void GraphicStackState::pop() {
248 SkASSERT(fStackDepth > 0);
249 fContentStream->writeText("Q\n");
250 fStackDepth--;
251}
252
robertphillips@google.com80214e22012-07-20 15:33:18 +0000253// This function initializes iter to be an iterator on the "stack" argument
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000254// and then skips over the leading entries as specified in prefix. It requires
255// and asserts that "prefix" will be a prefix to "stack."
256static void skip_clip_stack_prefix(const SkClipStack& prefix,
257 const SkClipStack& stack,
robertphillips@google.comc0290622012-07-16 21:20:03 +0000258 SkClipStack::Iter* iter) {
robertphillips@google.com80214e22012-07-20 15:33:18 +0000259 SkClipStack::B2TIter prefixIter(prefix);
260 iter->reset(stack, SkClipStack::Iter::kBottom_IterStart);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000261
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000262 const SkClipStack::Element* prefixEntry;
263 const SkClipStack::Element* iterEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000264
265 for (prefixEntry = prefixIter.next(); prefixEntry;
robertphillips@google.comc0290622012-07-16 21:20:03 +0000266 prefixEntry = prefixIter.next()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000267 iterEntry = iter->next();
268 SkASSERT(iterEntry);
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000269 // Because of SkClipStack does internal intersection, the last clip
270 // entry may differ.
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +0000271 if (*prefixEntry != *iterEntry) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000272 SkASSERT(prefixEntry->getOp() == SkRegion::kIntersect_Op);
273 SkASSERT(iterEntry->getOp() == SkRegion::kIntersect_Op);
274 SkASSERT(iterEntry->getType() == prefixEntry->getType());
robertphillips@google.comc0290622012-07-16 21:20:03 +0000275 // back up the iterator by one
276 iter->prev();
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000277 prefixEntry = prefixIter.next();
278 break;
279 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000280 }
281
halcanary96fcdcc2015-08-27 07:41:13 -0700282 SkASSERT(prefixEntry == nullptr);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000283}
284
285static void emit_clip(SkPath* clipPath, SkRect* clipRect,
286 SkWStream* contentStream) {
287 SkASSERT(clipPath || clipRect);
288
289 SkPath::FillType clipFill;
290 if (clipPath) {
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000291 SkPDFUtils::EmitPath(*clipPath, SkPaint::kFill_Style, contentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000292 clipFill = clipPath->getFillType();
vandebo@chromium.org3e7b2802011-06-27 18:12:31 +0000293 } else {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000294 SkPDFUtils::AppendRectangle(*clipRect, contentStream);
295 clipFill = SkPath::kWinding_FillType;
296 }
297
298 NOT_IMPLEMENTED(clipFill == SkPath::kInverseEvenOdd_FillType, false);
299 NOT_IMPLEMENTED(clipFill == SkPath::kInverseWinding_FillType, false);
300 if (clipFill == SkPath::kEvenOdd_FillType) {
301 contentStream->writeText("W* n\n");
302 } else {
303 contentStream->writeText("W n\n");
304 }
305}
306
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000307/* Calculate an inverted path's equivalent non-inverted path, given the
308 * canvas bounds.
309 * outPath may alias with invPath (since this is supported by PathOps).
310 */
311static bool calculate_inverse_path(const SkRect& bounds, const SkPath& invPath,
312 SkPath* outPath) {
313 SkASSERT(invPath.isInverseFillType());
314
315 SkPath clipPath;
316 clipPath.addRect(bounds);
317
reedcdb42bb2015-06-26 10:23:07 -0700318 return Op(clipPath, invPath, kIntersect_SkPathOp, outPath);
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000319}
320
321// Sanity check the numerical values of the SkRegion ops and PathOps ops
322// enums so region_op_to_pathops_op can do a straight passthrough cast.
323// If these are failing, it may be necessary to make region_op_to_pathops_op
324// do more.
bungeman99fe8222015-08-20 07:57:51 -0700325static_assert(SkRegion::kDifference_Op == (int)kDifference_SkPathOp, "region_pathop_mismatch");
326static_assert(SkRegion::kIntersect_Op == (int)kIntersect_SkPathOp, "region_pathop_mismatch");
327static_assert(SkRegion::kUnion_Op == (int)kUnion_SkPathOp, "region_pathop_mismatch");
328static_assert(SkRegion::kXOR_Op == (int)kXOR_SkPathOp, "region_pathop_mismatch");
329static_assert(SkRegion::kReverseDifference_Op == (int)kReverseDifference_SkPathOp,
330 "region_pathop_mismatch");
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000331
332static SkPathOp region_op_to_pathops_op(SkRegion::Op op) {
333 SkASSERT(op >= 0);
334 SkASSERT(op <= SkRegion::kReverseDifference_Op);
335 return (SkPathOp)op;
336}
337
338/* Uses Path Ops to calculate a vector SkPath clip from a clip stack.
339 * Returns true if successful, or false if not successful.
340 * If successful, the resulting clip is stored in outClipPath.
341 * If not successful, outClipPath is undefined, and a fallback method
342 * should be used.
343 */
344static bool get_clip_stack_path(const SkMatrix& transform,
345 const SkClipStack& clipStack,
346 const SkRegion& clipRegion,
347 SkPath* outClipPath) {
348 outClipPath->reset();
349 outClipPath->setFillType(SkPath::kInverseWinding_FillType);
350
351 const SkClipStack::Element* clipEntry;
352 SkClipStack::Iter iter;
353 iter.reset(clipStack, SkClipStack::Iter::kBottom_IterStart);
354 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
355 SkPath entryPath;
356 if (SkClipStack::Element::kEmpty_Type == clipEntry->getType()) {
357 outClipPath->reset();
358 outClipPath->setFillType(SkPath::kInverseWinding_FillType);
359 continue;
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000360 } else {
361 clipEntry->asPath(&entryPath);
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000362 }
363 entryPath.transform(transform);
364
365 if (SkRegion::kReplace_Op == clipEntry->getOp()) {
366 *outClipPath = entryPath;
367 } else {
368 SkPathOp op = region_op_to_pathops_op(clipEntry->getOp());
369 if (!Op(*outClipPath, entryPath, op, outClipPath)) {
370 return false;
371 }
372 }
373 }
374
375 if (outClipPath->isInverseFillType()) {
376 // The bounds are slightly outset to ensure this is correct in the
377 // face of floating-point accuracy and possible SkRegion bitmap
378 // approximations.
379 SkRect clipBounds = SkRect::Make(clipRegion.getBounds());
380 clipBounds.outset(SK_Scalar1, SK_Scalar1);
381 if (!calculate_inverse_path(clipBounds, *outClipPath, outClipPath)) {
382 return false;
383 }
384 }
385 return true;
386}
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000387
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000388// TODO(vandebo): Take advantage of SkClipStack::getSaveCount(), the PDF
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000389// graphic state stack, and the fact that we can know all the clips used
390// on the page to optimize this.
391void GraphicStackState::updateClip(const SkClipStack& clipStack,
392 const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000393 const SkPoint& translation) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000394 if (clipStack == currentEntry()->fClipStack) {
395 return;
396 }
397
398 while (fStackDepth > 0) {
399 pop();
400 if (clipStack == currentEntry()->fClipStack) {
401 return;
402 }
403 }
404 push();
405
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000406 currentEntry()->fClipStack = clipStack;
407 currentEntry()->fClipRegion = clipRegion;
408
409 SkMatrix transform;
410 transform.setTranslate(translation.fX, translation.fY);
411
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000412 SkPath clipPath;
413 if (get_clip_stack_path(transform, clipStack, clipRegion, &clipPath)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700414 emit_clip(&clipPath, nullptr, fContentStream);
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000415 return;
416 }
halcanarydda239e2016-03-31 07:33:57 -0700417
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000418 // gsState->initialEntry()->fClipStack/Region specifies the clip that has
419 // already been applied. (If this is a top level device, then it specifies
420 // a clip to the content area. If this is a layer, then it specifies
421 // the clip in effect when the layer was created.) There's no need to
422 // reapply that clip; SKCanvas's SkDrawIter will draw anything outside the
423 // initial clip on the parent layer. (This means there's a bug if the user
424 // expands the clip and then uses any xfer mode that uses dst:
425 // http://code.google.com/p/skia/issues/detail?id=228 )
robertphillips@google.comc0290622012-07-16 21:20:03 +0000426 SkClipStack::Iter iter;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000427 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
428
429 // If the clip stack does anything other than intersect or if it uses
430 // an inverse fill type, we have to fall back to the clip region.
431 bool needRegion = false;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000432 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000433 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000434 if (clipEntry->getOp() != SkRegion::kIntersect_Op ||
435 clipEntry->isInverseFilled()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000436 needRegion = true;
437 break;
438 }
439 }
440
441 if (needRegion) {
442 SkPath clipPath;
443 SkAssertResult(clipRegion.getBoundaryPath(&clipPath));
halcanary96fcdcc2015-08-27 07:41:13 -0700444 emit_clip(&clipPath, nullptr, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000445 } else {
446 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000447 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000448 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000449 SkASSERT(clipEntry->getOp() == SkRegion::kIntersect_Op);
450 switch (clipEntry->getType()) {
451 case SkClipStack::Element::kRect_Type: {
452 SkRect translatedClip;
453 transform.mapRect(&translatedClip, clipEntry->getRect());
halcanary96fcdcc2015-08-27 07:41:13 -0700454 emit_clip(nullptr, &translatedClip, fContentStream);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000455 break;
456 }
commit-bot@chromium.org5a346a82014-02-16 16:01:14 +0000457 default: {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000458 SkPath translatedPath;
commit-bot@chromium.org5a346a82014-02-16 16:01:14 +0000459 clipEntry->asPath(&translatedPath);
460 translatedPath.transform(transform, &translatedPath);
halcanary96fcdcc2015-08-27 07:41:13 -0700461 emit_clip(&translatedPath, nullptr, fContentStream);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000462 break;
463 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000464 }
465 }
466 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000467}
468
469void GraphicStackState::updateMatrix(const SkMatrix& matrix) {
470 if (matrix == currentEntry()->fMatrix) {
471 return;
472 }
473
474 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) {
475 SkASSERT(fStackDepth > 0);
476 SkASSERT(fEntries[fStackDepth].fClipStack ==
477 fEntries[fStackDepth -1].fClipStack);
478 pop();
479
480 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask);
481 }
482 if (matrix.getType() == SkMatrix::kIdentity_Mask) {
483 return;
484 }
485
486 push();
487 SkPDFUtils::AppendTransform(matrix, fContentStream);
488 currentEntry()->fMatrix = matrix;
489}
490
halcanary2be7e012016-03-28 11:58:08 -0700491void GraphicStackState::updateDrawingState(const SkPDFDevice::GraphicStateEntry& state) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000492 // PDF treats a shader as a color, so we only set one or the other.
493 if (state.fShaderIndex >= 0) {
494 if (state.fShaderIndex != currentEntry()->fShaderIndex) {
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +0000495 SkPDFUtils::ApplyPattern(state.fShaderIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000496 currentEntry()->fShaderIndex = state.fShaderIndex;
497 }
498 } else {
499 if (state.fColor != currentEntry()->fColor ||
500 currentEntry()->fShaderIndex >= 0) {
501 emit_pdf_color(state.fColor, fContentStream);
502 fContentStream->writeText("RG ");
503 emit_pdf_color(state.fColor, fContentStream);
504 fContentStream->writeText("rg\n");
505 currentEntry()->fColor = state.fColor;
506 currentEntry()->fShaderIndex = -1;
507 }
508 }
509
510 if (state.fGraphicStateIndex != currentEntry()->fGraphicStateIndex) {
vandebo@chromium.org6112c212011-05-13 03:50:38 +0000511 SkPDFUtils::ApplyGraphicState(state.fGraphicStateIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000512 currentEntry()->fGraphicStateIndex = state.fGraphicStateIndex;
513 }
514
515 if (state.fTextScaleX) {
516 if (state.fTextScaleX != currentEntry()->fTextScaleX) {
517 SkScalar pdfScale = SkScalarMul(state.fTextScaleX,
518 SkIntToScalar(100));
halcanarybc4696b2015-05-06 10:56:04 -0700519 SkPDFUtils::AppendScalar(pdfScale, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000520 fContentStream->writeText(" Tz\n");
521 currentEntry()->fTextScaleX = state.fTextScaleX;
522 }
523 if (state.fTextFill != currentEntry()->fTextFill) {
bungeman99fe8222015-08-20 07:57:51 -0700524 static_assert(SkPaint::kFill_Style == 0, "enum_must_match_value");
525 static_assert(SkPaint::kStroke_Style == 1, "enum_must_match_value");
526 static_assert(SkPaint::kStrokeAndFill_Style == 2, "enum_must_match_value");
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000527 fContentStream->writeDecAsText(state.fTextFill);
528 fContentStream->writeText(" Tr\n");
529 currentEntry()->fTextFill = state.fTextFill;
530 }
531 }
532}
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000533
reed76033be2015-03-14 10:54:31 -0700534static bool not_supported_for_layers(const SkPaint& layerPaint) {
senorblancob0e89dc2014-10-20 14:03:12 -0700535 // PDF does not support image filters, so render them on CPU.
536 // Note that this rendering is done at "screen" resolution (100dpi), not
537 // printer resolution.
halcanary7a14b312015-10-01 07:28:13 -0700538 // TODO: It may be possible to express some filters natively using PDF
halcanary6950de62015-11-07 05:29:00 -0800539 // to improve quality and file size (https://bug.skia.org/3043)
reed76033be2015-03-14 10:54:31 -0700540
541 // TODO: should we return true if there is a colorfilter?
halcanary96fcdcc2015-08-27 07:41:13 -0700542 return layerPaint.getImageFilter() != nullptr;
reed76033be2015-03-14 10:54:31 -0700543}
544
545SkBaseDevice* SkPDFDevice::onCreateDevice(const CreateInfo& cinfo, const SkPaint* layerPaint) {
reedcd4051e2016-07-15 09:41:26 -0700546 if (layerPaint && not_supported_for_layers(*layerPaint)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700547 return nullptr;
senorblancob0e89dc2014-10-20 14:03:12 -0700548 }
fmalita6987dca2014-11-13 08:33:37 -0800549 SkISize size = SkISize::Make(cinfo.fInfo.width(), cinfo.fInfo.height());
halcanary989da4a2016-03-21 14:33:17 -0700550 return SkPDFDevice::Create(size, fRasterDpi, fDocument);
bsalomon@google.come97f0852011-06-17 13:10:25 +0000551}
552
halcanary989da4a2016-03-21 14:33:17 -0700553SkPDFCanon* SkPDFDevice::getCanon() const { return fDocument->canon(); }
554
bsalomon@google.come97f0852011-06-17 13:10:25 +0000555
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000556
557// A helper class to automatically finish a ContentEntry at the end of a
558// drawing method and maintain the state needed between set up and finish.
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000559class ScopedContentEntry {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000560public:
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000561 ScopedContentEntry(SkPDFDevice* device, const SkDraw& draw,
562 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000563 : fDevice(device),
halcanary96fcdcc2015-08-27 07:41:13 -0700564 fContentEntry(nullptr),
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000565 fXfermode(SkXfermode::kSrcOver_Mode),
halcanary96fcdcc2015-08-27 07:41:13 -0700566 fDstFormXObject(nullptr) {
reed1e7f5e72016-04-27 07:49:17 -0700567 init(draw.fClipStack, draw.fRC->bwRgn(), *draw.fMatrix, paint, hasText);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000568 }
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000569 ScopedContentEntry(SkPDFDevice* device, const SkClipStack* clipStack,
570 const SkRegion& clipRegion, const SkMatrix& matrix,
571 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000572 : fDevice(device),
halcanary96fcdcc2015-08-27 07:41:13 -0700573 fContentEntry(nullptr),
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000574 fXfermode(SkXfermode::kSrcOver_Mode),
halcanary96fcdcc2015-08-27 07:41:13 -0700575 fDstFormXObject(nullptr) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000576 init(clipStack, clipRegion, matrix, paint, hasText);
577 }
578
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000579 ~ScopedContentEntry() {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000580 if (fContentEntry) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000581 SkPath* shape = &fShape;
582 if (shape->isEmpty()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700583 shape = nullptr;
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000584 }
585 fDevice->finishContentEntry(fXfermode, fDstFormXObject, shape);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000586 }
reed@google.comfc641d02012-09-20 17:52:20 +0000587 SkSafeUnref(fDstFormXObject);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000588 }
589
halcanary2be7e012016-03-28 11:58:08 -0700590 SkPDFDevice::ContentEntry* entry() { return fContentEntry; }
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000591
592 /* Returns true when we explicitly need the shape of the drawing. */
593 bool needShape() {
594 switch (fXfermode) {
595 case SkXfermode::kClear_Mode:
596 case SkXfermode::kSrc_Mode:
597 case SkXfermode::kSrcIn_Mode:
598 case SkXfermode::kSrcOut_Mode:
599 case SkXfermode::kDstIn_Mode:
600 case SkXfermode::kDstOut_Mode:
601 case SkXfermode::kSrcATop_Mode:
602 case SkXfermode::kDstATop_Mode:
603 case SkXfermode::kModulate_Mode:
604 return true;
605 default:
606 return false;
607 }
608 }
609
610 /* Returns true unless we only need the shape of the drawing. */
611 bool needSource() {
612 if (fXfermode == SkXfermode::kClear_Mode) {
613 return false;
614 }
615 return true;
616 }
617
618 /* If the shape is different than the alpha component of the content, then
619 * setShape should be called with the shape. In particular, images and
620 * devices have rectangular shape.
621 */
622 void setShape(const SkPath& shape) {
623 fShape = shape;
624 }
625
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000626private:
627 SkPDFDevice* fDevice;
halcanary2be7e012016-03-28 11:58:08 -0700628 SkPDFDevice::ContentEntry* fContentEntry;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000629 SkXfermode::Mode fXfermode;
reed@google.comfc641d02012-09-20 17:52:20 +0000630 SkPDFFormXObject* fDstFormXObject;
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000631 SkPath fShape;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000632
633 void init(const SkClipStack* clipStack, const SkRegion& clipRegion,
634 const SkMatrix& matrix, const SkPaint& paint, bool hasText) {
edisonn@google.com83d8eda2013-10-24 13:19:28 +0000635 // Shape has to be flatten before we get here.
636 if (matrix.hasPerspective()) {
637 NOT_IMPLEMENTED(!matrix.hasPerspective(), false);
vandebo@chromium.orgdc37e202013-10-18 20:16:34 +0000638 return;
639 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000640 if (paint.getXfermode()) {
641 paint.getXfermode()->asMode(&fXfermode);
642 }
643 fContentEntry = fDevice->setUpContentEntry(clipStack, clipRegion,
644 matrix, paint, hasText,
645 &fDstFormXObject);
646 }
647};
648
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000649////////////////////////////////////////////////////////////////////////////////
650
halcanary989da4a2016-03-21 14:33:17 -0700651SkPDFDevice::SkPDFDevice(SkISize pageSize, SkScalar rasterDpi, SkPDFDocument* doc, bool flip)
robertphillips9a53fd72015-06-22 09:46:59 -0700652 : INHERITED(SkSurfaceProps(0, kUnknown_SkPixelGeometry))
653 , fPageSize(pageSize)
halcanarya1f1ee92015-02-20 06:17:26 -0800654 , fContentSize(pageSize)
655 , fExistingClipRegion(SkIRect::MakeSize(pageSize))
halcanary96fcdcc2015-08-27 07:41:13 -0700656 , fClipStack(nullptr)
halcanarya1f1ee92015-02-20 06:17:26 -0800657 , fRasterDpi(rasterDpi)
halcanary989da4a2016-03-21 14:33:17 -0700658 , fDocument(doc) {
halcanarya1f1ee92015-02-20 06:17:26 -0800659 SkASSERT(pageSize.width() > 0);
660 SkASSERT(pageSize.height() > 0);
661 fLegacyBitmap.setInfo(
662 SkImageInfo::MakeUnknown(pageSize.width(), pageSize.height()));
663 if (flip) {
664 // Skia generally uses the top left as the origin but PDF
665 // natively has the origin at the bottom left. This matrix
666 // corrects for that. But that only needs to be done once, we
667 // don't do it when layering.
668 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight));
669 fInitialTransform.preScale(SK_Scalar1, -SK_Scalar1);
670 } else {
671 fInitialTransform.setIdentity();
672 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000673}
674
675SkPDFDevice::~SkPDFDevice() {
halcanary3c35fb32016-06-30 11:55:07 -0700676 this->cleanUp();
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000677}
678
679void SkPDFDevice::init() {
mtklein852f15d2016-03-17 10:51:27 -0700680 fContentEntries.reset();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000681}
682
halcanary3c35fb32016-06-30 11:55:07 -0700683void SkPDFDevice::cleanUp() {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000684 fGraphicStateResources.unrefAll();
685 fXObjectResources.unrefAll();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000686 fFontResources.unrefAll();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +0000687 fShaderResources.unrefAll();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000688}
689
reedf70b5312016-03-04 16:36:20 -0800690void SkPDFDevice::drawAnnotation(const SkDraw& d, const SkRect& rect, const char key[],
691 SkData* value) {
692 if (0 == rect.width() && 0 == rect.height()) {
693 handlePointAnnotation({ rect.x(), rect.y() }, *d.fMatrix, key, value);
694 } else {
695 SkPath path;
696 path.addRect(rect);
697 handlePathAnnotation(path, d, key, value);
698 }
699}
700
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000701void SkPDFDevice::drawPaint(const SkDraw& d, const SkPaint& paint) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000702 SkPaint newPaint = paint;
halcanarya6814332015-05-27 08:53:36 -0700703 replace_srcmode_on_opaque_paint(&newPaint);
704
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000705 newPaint.setStyle(SkPaint::kFill_Style);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000706 ScopedContentEntry content(this, d, newPaint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000707 internalDrawPaint(newPaint, content.entry());
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000708}
709
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000710void SkPDFDevice::internalDrawPaint(const SkPaint& paint,
halcanary2be7e012016-03-28 11:58:08 -0700711 SkPDFDevice::ContentEntry* contentEntry) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000712 if (!contentEntry) {
713 return;
714 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000715 SkRect bbox = SkRect::MakeWH(SkIntToScalar(this->width()),
716 SkIntToScalar(this->height()));
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000717 SkMatrix inverse;
commit-bot@chromium.orgd2cfa742013-09-20 18:58:30 +0000718 if (!contentEntry->fState.fMatrix.invert(&inverse)) {
vandebo@chromium.org386dfc02012-04-17 22:31:52 +0000719 return;
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000720 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000721 inverse.mapRect(&bbox);
722
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000723 SkPDFUtils::AppendRectangle(bbox, &contentEntry->fContent);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000724 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000725 &contentEntry->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000726}
727
halcanary682ee012016-01-28 10:59:34 -0800728void SkPDFDevice::drawPoints(const SkDraw& d,
halcanarya6814332015-05-27 08:53:36 -0700729 SkCanvas::PointMode mode,
730 size_t count,
731 const SkPoint* points,
732 const SkPaint& srcPaint) {
733 SkPaint passedPaint = srcPaint;
734 replace_srcmode_on_opaque_paint(&passedPaint);
735
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000736 if (count == 0) {
737 return;
738 }
739
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000740 // SkDraw::drawPoints converts to multiple calls to fDevice->drawPath.
741 // We only use this when there's a path effect because of the overhead
742 // of multiple calls to setUpContentEntry it causes.
743 if (passedPaint.getPathEffect()) {
reed1e7f5e72016-04-27 07:49:17 -0700744 if (d.fRC->isEmpty()) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000745 return;
746 }
747 SkDraw pointDraw(d);
748 pointDraw.fDevice = this;
749 pointDraw.drawPoints(mode, count, points, passedPaint, true);
750 return;
751 }
752
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000753 const SkPaint* paint = &passedPaint;
754 SkPaint modifiedPaint;
755
756 if (mode == SkCanvas::kPoints_PointMode &&
757 paint->getStrokeCap() != SkPaint::kRound_Cap) {
758 modifiedPaint = *paint;
759 paint = &modifiedPaint;
760 if (paint->getStrokeWidth()) {
761 // PDF won't draw a single point with square/butt caps because the
762 // orientation is ambiguous. Draw a rectangle instead.
763 modifiedPaint.setStyle(SkPaint::kFill_Style);
764 SkScalar strokeWidth = paint->getStrokeWidth();
765 SkScalar halfStroke = SkScalarHalf(strokeWidth);
766 for (size_t i = 0; i < count; i++) {
767 SkRect r = SkRect::MakeXYWH(points[i].fX, points[i].fY, 0, 0);
768 r.inset(-halfStroke, -halfStroke);
769 drawRect(d, r, modifiedPaint);
770 }
771 return;
772 } else {
773 modifiedPaint.setStrokeCap(SkPaint::kRound_Cap);
774 }
775 }
776
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000777 ScopedContentEntry content(this, d, *paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000778 if (!content.entry()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000779 return;
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +0000780 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000781
782 switch (mode) {
783 case SkCanvas::kPolygon_PointMode:
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000784 SkPDFUtils::MoveTo(points[0].fX, points[0].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000785 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000786 for (size_t i = 1; i < count; i++) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000787 SkPDFUtils::AppendLine(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000788 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000789 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000790 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000791 break;
792 case SkCanvas::kLines_PointMode:
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000793 for (size_t i = 0; i < count/2; i++) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000794 SkPDFUtils::MoveTo(points[i * 2].fX, points[i * 2].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000795 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000796 SkPDFUtils::AppendLine(points[i * 2 + 1].fX,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000797 points[i * 2 + 1].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000798 &content.entry()->fContent);
799 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000800 }
801 break;
802 case SkCanvas::kPoints_PointMode:
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000803 SkASSERT(paint->getStrokeCap() == SkPaint::kRound_Cap);
804 for (size_t i = 0; i < count; i++) {
805 SkPDFUtils::MoveTo(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000806 &content.entry()->fContent);
807 SkPDFUtils::ClosePath(&content.entry()->fContent);
808 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000809 }
810 break;
811 default:
812 SkASSERT(false);
813 }
814}
815
halcanary8103a342016-03-08 15:10:16 -0800816static sk_sp<SkPDFDict> create_link_annotation(const SkRect& translatedRect) {
halcanaryece83922016-03-08 08:32:12 -0800817 auto annotation = sk_make_sp<SkPDFDict>("Annot");
wangxianzhud76665d2015-07-17 17:23:15 -0700818 annotation->insertName("Subtype", "Link");
halcanary488165e2016-04-22 06:10:21 -0700819 annotation->insertInt("F", 4); // required by ISO 19005
wangxianzhud76665d2015-07-17 17:23:15 -0700820
halcanaryece83922016-03-08 08:32:12 -0800821 auto border = sk_make_sp<SkPDFArray>();
wangxianzhud76665d2015-07-17 17:23:15 -0700822 border->reserve(3);
823 border->appendInt(0); // Horizontal corner radius.
824 border->appendInt(0); // Vertical corner radius.
825 border->appendInt(0); // Width, 0 = no border.
halcanary8103a342016-03-08 15:10:16 -0800826 annotation->insertObject("Border", std::move(border));
wangxianzhud76665d2015-07-17 17:23:15 -0700827
halcanaryece83922016-03-08 08:32:12 -0800828 auto rect = sk_make_sp<SkPDFArray>();
wangxianzhud76665d2015-07-17 17:23:15 -0700829 rect->reserve(4);
830 rect->appendScalar(translatedRect.fLeft);
831 rect->appendScalar(translatedRect.fTop);
832 rect->appendScalar(translatedRect.fRight);
833 rect->appendScalar(translatedRect.fBottom);
halcanary8103a342016-03-08 15:10:16 -0800834 annotation->insertObject("Rect", std::move(rect));
wangxianzhud76665d2015-07-17 17:23:15 -0700835
halcanary8103a342016-03-08 15:10:16 -0800836 return annotation;
wangxianzhud76665d2015-07-17 17:23:15 -0700837}
838
halcanary8103a342016-03-08 15:10:16 -0800839static sk_sp<SkPDFDict> create_link_to_url(const SkData* urlData, const SkRect& r) {
840 auto annotation = create_link_annotation(r);
wangxianzhud76665d2015-07-17 17:23:15 -0700841 SkString url(static_cast<const char *>(urlData->data()),
842 urlData->size() - 1);
halcanaryece83922016-03-08 08:32:12 -0800843 auto action = sk_make_sp<SkPDFDict>("Action");
wangxianzhud76665d2015-07-17 17:23:15 -0700844 action->insertName("S", "URI");
845 action->insertString("URI", url);
halcanary8103a342016-03-08 15:10:16 -0800846 annotation->insertObject("A", std::move(action));
847 return annotation;
wangxianzhud76665d2015-07-17 17:23:15 -0700848}
849
halcanary8103a342016-03-08 15:10:16 -0800850static sk_sp<SkPDFDict> create_link_named_dest(const SkData* nameData,
851 const SkRect& r) {
852 auto annotation = create_link_annotation(r);
wangxianzhud76665d2015-07-17 17:23:15 -0700853 SkString name(static_cast<const char *>(nameData->data()),
854 nameData->size() - 1);
855 annotation->insertName("Dest", name);
halcanary8103a342016-03-08 15:10:16 -0800856 return annotation;
wangxianzhud76665d2015-07-17 17:23:15 -0700857}
858
halcanary682ee012016-01-28 10:59:34 -0800859void SkPDFDevice::drawRect(const SkDraw& d,
halcanarya6814332015-05-27 08:53:36 -0700860 const SkRect& rect,
861 const SkPaint& srcPaint) {
862 SkPaint paint = srcPaint;
863 replace_srcmode_on_opaque_paint(&paint);
commit-bot@chromium.org969fd6a2013-05-14 18:16:40 +0000864 SkRect r = rect;
865 r.sort();
866
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000867 if (paint.getPathEffect()) {
reed1e7f5e72016-04-27 07:49:17 -0700868 if (d.fRC->isEmpty()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000869 return;
870 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000871 SkPath path;
872 path.addRect(r);
halcanary96fcdcc2015-08-27 07:41:13 -0700873 drawPath(d, path, paint, nullptr, true);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000874 return;
875 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000876
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000877 ScopedContentEntry content(this, d, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000878 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000879 return;
880 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000881 SkPDFUtils::AppendRectangle(r, &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000882 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000883 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000884}
885
halcanarya6814332015-05-27 08:53:36 -0700886void SkPDFDevice::drawRRect(const SkDraw& draw,
887 const SkRRect& rrect,
888 const SkPaint& srcPaint) {
889 SkPaint paint = srcPaint;
890 replace_srcmode_on_opaque_paint(&paint);
scroggo@google.coma8e33a92013-11-08 18:02:53 +0000891 SkPath path;
892 path.addRRect(rrect);
halcanary96fcdcc2015-08-27 07:41:13 -0700893 this->drawPath(draw, path, paint, nullptr, true);
scroggo@google.coma8e33a92013-11-08 18:02:53 +0000894}
895
halcanarya6814332015-05-27 08:53:36 -0700896void SkPDFDevice::drawOval(const SkDraw& draw,
897 const SkRect& oval,
898 const SkPaint& srcPaint) {
899 SkPaint paint = srcPaint;
900 replace_srcmode_on_opaque_paint(&paint);
reed89443ab2014-06-27 11:34:19 -0700901 SkPath path;
902 path.addOval(oval);
halcanary96fcdcc2015-08-27 07:41:13 -0700903 this->drawPath(draw, path, paint, nullptr, true);
reed89443ab2014-06-27 11:34:19 -0700904}
905
halcanary682ee012016-01-28 10:59:34 -0800906void SkPDFDevice::drawPath(const SkDraw& d,
halcanarya6814332015-05-27 08:53:36 -0700907 const SkPath& origPath,
908 const SkPaint& srcPaint,
909 const SkMatrix* prePathMatrix,
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000910 bool pathIsMutable) {
halcanarya6814332015-05-27 08:53:36 -0700911 SkPaint paint = srcPaint;
912 replace_srcmode_on_opaque_paint(&paint);
halcanary682ee012016-01-28 10:59:34 -0800913 SkPath modifiedPath;
914 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000915
916 SkMatrix matrix = *d.fMatrix;
917 if (prePathMatrix) {
918 if (paint.getPathEffect() || paint.getStyle() != SkPaint::kFill_Style) {
halcanary682ee012016-01-28 10:59:34 -0800919 if (!pathIsMutable) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000920 pathPtr = &modifiedPath;
921 pathIsMutable = true;
922 }
halcanary682ee012016-01-28 10:59:34 -0800923 origPath.transform(*prePathMatrix, pathPtr);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000924 } else {
commit-bot@chromium.org92362382014-03-18 12:51:48 +0000925 matrix.preConcat(*prePathMatrix);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000926 }
927 }
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000928
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000929 if (paint.getPathEffect()) {
reed1e7f5e72016-04-27 07:49:17 -0700930 if (d.fRC->isEmpty()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000931 return;
932 }
halcanary682ee012016-01-28 10:59:34 -0800933 if (!pathIsMutable) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000934 pathPtr = &modifiedPath;
935 pathIsMutable = true;
936 }
halcanary682ee012016-01-28 10:59:34 -0800937 bool fill = paint.getFillPath(origPath, pathPtr);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000938
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +0000939 SkPaint noEffectPaint(paint);
halcanary96fcdcc2015-08-27 07:41:13 -0700940 noEffectPaint.setPathEffect(nullptr);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000941 if (fill) {
942 noEffectPaint.setStyle(SkPaint::kFill_Style);
943 } else {
944 noEffectPaint.setStyle(SkPaint::kStroke_Style);
945 noEffectPaint.setStrokeWidth(0);
946 }
halcanary96fcdcc2015-08-27 07:41:13 -0700947 drawPath(d, *pathPtr, noEffectPaint, nullptr, true);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000948 return;
949 }
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000950
edisonn@google.coma9ebd162013-10-07 13:22:21 +0000951 if (handleInversePath(d, origPath, paint, pathIsMutable, prePathMatrix)) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +0000952 return;
953 }
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +0000954
reed1e7f5e72016-04-27 07:49:17 -0700955 ScopedContentEntry content(this, d.fClipStack, d.fRC->bwRgn(), matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000956 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000957 return;
958 }
halcanary8b2bc252015-10-06 09:41:47 -0700959 bool consumeDegeratePathSegments =
960 paint.getStyle() == SkPaint::kFill_Style ||
961 (paint.getStrokeCap() != SkPaint::kRound_Cap &&
962 paint.getStrokeCap() != SkPaint::kSquare_Cap);
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000963 SkPDFUtils::EmitPath(*pathPtr, paint.getStyle(),
halcanary8b2bc252015-10-06 09:41:47 -0700964 consumeDegeratePathSegments,
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000965 &content.entry()->fContent);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000966 SkPDFUtils::PaintPath(paint.getStyle(), pathPtr->getFillType(),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000967 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000968}
969
halcanary7a14b312015-10-01 07:28:13 -0700970void SkPDFDevice::drawBitmapRect(const SkDraw& draw,
971 const SkBitmap& bitmap,
972 const SkRect* src,
973 const SkRect& dst,
974 const SkPaint& srcPaint,
975 SkCanvas::SrcRectConstraint constraint) {
halcanary66be6262016-03-21 13:01:34 -0700976 SkASSERT(false);
halcanary7a14b312015-10-01 07:28:13 -0700977}
978
979void SkPDFDevice::drawBitmap(const SkDraw& d,
980 const SkBitmap& bitmap,
981 const SkMatrix& matrix,
982 const SkPaint& srcPaint) {
halcanarya6814332015-05-27 08:53:36 -0700983 SkPaint paint = srcPaint;
984 if (bitmap.isOpaque()) {
985 replace_srcmode_on_opaque_paint(&paint);
986 }
987
reed1e7f5e72016-04-27 07:49:17 -0700988 if (d.fRC->isEmpty()) {
halcanary7a14b312015-10-01 07:28:13 -0700989 return;
990 }
edisonn@google.com2ae67e72013-02-12 01:06:38 +0000991
halcanary7a14b312015-10-01 07:28:13 -0700992 SkMatrix transform = matrix;
993 transform.postConcat(*d.fMatrix);
halcanarya50151d2016-03-25 11:57:49 -0700994 SkImageBitmap imageBitmap(bitmap);
995 this->internalDrawImage(
reed1e7f5e72016-04-27 07:49:17 -0700996 transform, d.fClipStack, d.fRC->bwRgn(), imageBitmap, paint);
halcanary7a14b312015-10-01 07:28:13 -0700997}
998
999void SkPDFDevice::drawSprite(const SkDraw& d,
1000 const SkBitmap& bitmap,
1001 int x,
1002 int y,
1003 const SkPaint& srcPaint) {
1004 SkPaint paint = srcPaint;
1005 if (bitmap.isOpaque()) {
1006 replace_srcmode_on_opaque_paint(&paint);
1007 }
1008
reed1e7f5e72016-04-27 07:49:17 -07001009 if (d.fRC->isEmpty()) {
halcanary7a14b312015-10-01 07:28:13 -07001010 return;
1011 }
1012
1013 SkMatrix matrix;
1014 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
halcanarya50151d2016-03-25 11:57:49 -07001015 SkImageBitmap imageBitmap(bitmap);
1016 this->internalDrawImage(
reed1e7f5e72016-04-27 07:49:17 -07001017 matrix, d.fClipStack, d.fRC->bwRgn(), imageBitmap, paint);
halcanary7a14b312015-10-01 07:28:13 -07001018}
1019
1020void SkPDFDevice::drawImage(const SkDraw& draw,
1021 const SkImage* image,
1022 SkScalar x,
1023 SkScalar y,
1024 const SkPaint& srcPaint) {
1025 SkPaint paint = srcPaint;
1026 if (!image) {
1027 return;
1028 }
1029 if (image->isOpaque()) {
1030 replace_srcmode_on_opaque_paint(&paint);
1031 }
reed1e7f5e72016-04-27 07:49:17 -07001032 if (draw.fRC->isEmpty()) {
halcanary7a14b312015-10-01 07:28:13 -07001033 return;
1034 }
1035 SkMatrix transform = SkMatrix::MakeTrans(x, y);
1036 transform.postConcat(*draw.fMatrix);
halcanarya50151d2016-03-25 11:57:49 -07001037 SkImageBitmap imageBitmap(const_cast<SkImage*>(image));
1038 this->internalDrawImage(
reed1e7f5e72016-04-27 07:49:17 -07001039 transform, draw.fClipStack, draw.fRC->bwRgn(), imageBitmap, paint);
halcanary7a14b312015-10-01 07:28:13 -07001040}
1041
1042void SkPDFDevice::drawImageRect(const SkDraw& draw,
1043 const SkImage* image,
1044 const SkRect* src,
1045 const SkRect& dst,
1046 const SkPaint& srcPaint,
1047 SkCanvas::SrcRectConstraint constraint) {
halcanary66be6262016-03-21 13:01:34 -07001048 SkASSERT(false);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001049}
1050
halcanarybb264b72015-04-07 10:40:03 -07001051// Create a PDF string. Maximum length (in bytes) is 65,535.
1052// @param input A string value.
1053// @param len The length of the input array.
1054// @param wideChars True iff the upper byte in each uint16_t is
1055// significant and should be encoded and not
1056// discarded. If true, the upper byte is encoded
1057// first. Otherwise, we assert the upper byte is
1058// zero.
halcanaryee41b752016-06-23 14:08:11 -07001059static void write_wide_string(SkDynamicMemoryWStream* wStream,
1060 const uint16_t* input,
1061 size_t len,
1062 bool wideChars) {
halcanarybb264b72015-04-07 10:40:03 -07001063 if (wideChars) {
1064 SkASSERT(2 * len < 65535);
halcanaryee41b752016-06-23 14:08:11 -07001065 wStream->writeText("<");
halcanarybb264b72015-04-07 10:40:03 -07001066 for (size_t i = 0; i < len; i++) {
halcanarya76a10b72016-07-07 12:31:55 -07001067 SkPDFUtils::WriteUInt16BE(wStream, input[i]);
halcanarybb264b72015-04-07 10:40:03 -07001068 }
halcanaryee41b752016-06-23 14:08:11 -07001069 wStream->writeText(">");
halcanarybb264b72015-04-07 10:40:03 -07001070 } else {
1071 SkASSERT(len <= 65535);
halcanaryee41b752016-06-23 14:08:11 -07001072 SkAutoMalloc buffer(len); // Remove every other byte.
1073 uint8_t* ptr = (uint8_t*)buffer.get();
halcanarybb264b72015-04-07 10:40:03 -07001074 for (size_t i = 0; i < len; i++) {
1075 SkASSERT(0 == input[i] >> 8);
halcanaryee41b752016-06-23 14:08:11 -07001076 ptr[i] = static_cast<uint8_t>(input[i]);
halcanarybb264b72015-04-07 10:40:03 -07001077 }
halcanaryee41b752016-06-23 14:08:11 -07001078 SkPDFUtils::WriteString(wStream, (char*)buffer.get(), len);
halcanarybb264b72015-04-07 10:40:03 -07001079 }
1080}
1081
halcanaryf0c30f52016-07-15 13:35:45 -07001082namespace {
1083class GlyphPositioner {
1084public:
1085 GlyphPositioner(SkDynamicMemoryWStream* content,
1086 SkScalar textSkewX,
1087 bool wideChars)
1088 : fContent(content)
1089 , fCurrentMatrixX(0.0f)
1090 , fCurrentMatrixY(0.0f)
1091 , fXAdvance(0.0f)
1092 , fWideChars(wideChars)
1093 , fInText(false) {
1094 set_text_transform(0.0f, 0.0f, textSkewX, fContent);
1095 }
1096 ~GlyphPositioner() { SkASSERT(!fInText); /* flush first */ }
1097 void flush() {
1098 if (fInText) {
1099 fContent->writeText("> Tj\n");
1100 fInText = false;
1101 }
1102 }
1103 void setWideChars(bool wideChars) {
1104 if (fWideChars != wideChars) {
1105 SkASSERT(!fInText);
1106 fWideChars = wideChars;
1107 }
1108 }
1109 void writeGlyph(SkScalar x,
1110 SkScalar y,
1111 SkScalar advanceWidth,
1112 uint16_t glyph) {
1113 SkScalar xPosition = x - fCurrentMatrixX;
1114 SkScalar yPosition = y - fCurrentMatrixY;
1115 if (xPosition != fXAdvance || yPosition != 0) {
1116 this->flush();
1117 SkPDFUtils::AppendScalar(xPosition, fContent);
1118 fContent->writeText(" ");
1119 SkPDFUtils::AppendScalar(-yPosition, fContent);
1120 fContent->writeText(" Td ");
1121 fCurrentMatrixX = x;
1122 fCurrentMatrixY = y;
1123 fXAdvance = 0;
1124 }
1125 if (!fInText) {
1126 fContent->writeText("<");
1127 fInText = true;
1128 }
1129 if (fWideChars) {
1130 SkPDFUtils::WriteUInt16BE(fContent, glyph);
1131 } else {
1132 SkASSERT(0 == glyph >> 8);
1133 SkPDFUtils::WriteUInt8(fContent, static_cast<uint8_t>(glyph));
1134 }
1135 fXAdvance += advanceWidth;
1136 }
1137
1138private:
1139 SkDynamicMemoryWStream* fContent;
1140 SkScalar fCurrentMatrixX;
1141 SkScalar fCurrentMatrixY;
1142 SkScalar fXAdvance;
1143 bool fWideChars;
1144 bool fInText;
1145};
1146} // namespace
1147
halcanary66a82f32015-10-12 13:05:04 -07001148static void draw_transparent_text(SkPDFDevice* device,
1149 const SkDraw& d,
1150 const void* text, size_t len,
1151 SkScalar x, SkScalar y,
1152 const SkPaint& srcPaint) {
1153
1154 SkPaint transparent;
1155 if (!SkPDFFont::CanEmbedTypeface(transparent.getTypeface(),
1156 device->getCanon())) {
1157 SkDEBUGFAIL("default typeface should be embeddable");
1158 return; // Avoid infinite loop in release.
1159 }
1160 transparent.setTextSize(srcPaint.getTextSize());
1161 transparent.setColor(SK_ColorTRANSPARENT);
1162 switch (srcPaint.getTextEncoding()) {
1163 case SkPaint::kGlyphID_TextEncoding: {
1164 // Since a glyphId<->Unicode mapping is typeface-specific,
1165 // map back to Unicode first.
1166 size_t glyphCount = len / 2;
1167 SkAutoTMalloc<SkUnichar> unichars(glyphCount);
1168 srcPaint.glyphsToUnichars(
1169 (const uint16_t*)text, SkToInt(glyphCount), &unichars[0]);
1170 transparent.setTextEncoding(SkPaint::kUTF32_TextEncoding);
1171 device->drawText(d, &unichars[0],
1172 glyphCount * sizeof(SkUnichar),
1173 x, y, transparent);
1174 break;
1175 }
1176 case SkPaint::kUTF8_TextEncoding:
1177 case SkPaint::kUTF16_TextEncoding:
1178 case SkPaint::kUTF32_TextEncoding:
1179 transparent.setTextEncoding(srcPaint.getTextEncoding());
1180 device->drawText(d, text, len, x, y, transparent);
1181 break;
1182 default:
1183 SkFAIL("unknown text encoding");
1184 }
1185}
1186
1187
halcanary682ee012016-01-28 10:59:34 -08001188void SkPDFDevice::drawText(const SkDraw& d, const void* text, size_t len,
halcanarya6814332015-05-27 08:53:36 -07001189 SkScalar x, SkScalar y, const SkPaint& srcPaint) {
halcanary989da4a2016-03-21 14:33:17 -07001190 if (!SkPDFFont::CanEmbedTypeface(srcPaint.getTypeface(), fDocument->canon())) {
halcanary6950de62015-11-07 05:29:00 -08001191 // https://bug.skia.org/3866
halcanary66a82f32015-10-12 13:05:04 -07001192 SkPath path;
1193 srcPaint.getTextPath(text, len, x, y, &path);
1194 this->drawPath(d, path, srcPaint, &SkMatrix::I(), true);
1195 // Draw text transparently to make it copyable/searchable/accessable.
1196 draw_transparent_text(this, d, text, len, x, y, srcPaint);
1197 return;
1198 }
halcanarya6814332015-05-27 08:53:36 -07001199 SkPaint paint = srcPaint;
1200 replace_srcmode_on_opaque_paint(&paint);
1201
halcanary96fcdcc2015-08-27 07:41:13 -07001202 NOT_IMPLEMENTED(paint.getMaskFilter() != nullptr, false);
1203 if (paint.getMaskFilter() != nullptr) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001204 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1205 // making text unreadable (e.g. same text twice when using CSS shadows).
1206 return;
1207 }
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001208 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001209 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001210 if (!content.entry()) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001211 return;
1212 }
1213
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001214 SkGlyphStorage storage(0);
halcanary96fcdcc2015-08-27 07:41:13 -07001215 const uint16_t* glyphIDs = nullptr;
reed@google.comaec40662014-04-18 19:29:07 +00001216 int numGlyphs = force_glyph_encoding(paint, text, len, &storage, &glyphIDs);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001217 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001218
benjaminwagnerd936f632016-02-23 10:44:31 -08001219 SkPaint::GlyphCacheProc glyphCacheProc = textPaint.getGlyphCacheProc(true);
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001220 align_text(glyphCacheProc, textPaint, glyphIDs, numGlyphs, &x, &y);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001221 content.entry()->fContent.writeText("BT\n");
1222 set_text_transform(x, y, textPaint.getTextSkewX(),
1223 &content.entry()->fContent);
reed@google.comaec40662014-04-18 19:29:07 +00001224 int consumedGlyphCount = 0;
halcanary2f912f32014-10-16 09:53:20 -07001225
1226 SkTDArray<uint16_t> glyphIDsCopy(glyphIDs, numGlyphs);
1227
halcanary3c35fb32016-06-30 11:55:07 -07001228 SkPDFGlyphSetMap* fontGlyphUsage = fDocument->getGlyphUsage();
1229
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001230 while (numGlyphs > consumedGlyphCount) {
robertphillips8e0c1502015-07-07 10:28:43 -07001231 this->updateFont(textPaint, glyphIDs[consumedGlyphCount], content.entry());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001232 SkPDFFont* font = content.entry()->fState.fFont;
halcanary2f912f32014-10-16 09:53:20 -07001233
1234 int availableGlyphs = font->glyphsToPDFFontEncoding(
1235 glyphIDsCopy.begin() + consumedGlyphCount,
1236 numGlyphs - consumedGlyphCount);
halcanary3c35fb32016-06-30 11:55:07 -07001237 fontGlyphUsage->noteGlyphUsage(
halcanary2f912f32014-10-16 09:53:20 -07001238 font, glyphIDsCopy.begin() + consumedGlyphCount,
1239 availableGlyphs);
halcanaryee41b752016-06-23 14:08:11 -07001240 write_wide_string(&content.entry()->fContent,
1241 glyphIDsCopy.begin() + consumedGlyphCount,
1242 availableGlyphs, font->multiByteGlyphs());
vandebo@chromium.org01294102011-02-28 19:52:18 +00001243 consumedGlyphCount += availableGlyphs;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001244 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001245 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001246 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001247}
1248
halcanary682ee012016-01-28 10:59:34 -08001249void SkPDFDevice::drawPosText(const SkDraw& d, const void* text, size_t len,
fmalita05c4a432014-09-29 06:29:53 -07001250 const SkScalar pos[], int scalarsPerPos,
halcanary682ee012016-01-28 10:59:34 -08001251 const SkPoint& offset, const SkPaint& srcPaint) {
halcanary989da4a2016-03-21 14:33:17 -07001252 if (!SkPDFFont::CanEmbedTypeface(srcPaint.getTypeface(), fDocument->canon())) {
halcanary66a82f32015-10-12 13:05:04 -07001253 const SkPoint* positions = reinterpret_cast<const SkPoint*>(pos);
1254 SkAutoTMalloc<SkPoint> positionsBuffer;
1255 if (2 != scalarsPerPos) {
1256 int glyphCount = srcPaint.textToGlyphs(text, len, NULL);
1257 positionsBuffer.reset(glyphCount);
1258 for (int i = 0; i < glyphCount; ++i) {
1259 positionsBuffer[i].set(pos[i], 0.0f);
1260 }
1261 positions = &positionsBuffer[0];
1262 }
1263 SkPath path;
1264 srcPaint.getPosTextPath(text, len, positions, &path);
1265 SkMatrix matrix;
1266 matrix.setTranslate(offset);
1267 this->drawPath(d, path, srcPaint, &matrix, true);
1268 // Draw text transparently to make it copyable/searchable/accessable.
1269 draw_transparent_text(
1270 this, d, text, len, offset.x() + positions[0].x(),
1271 offset.y() + positions[0].y(), srcPaint);
1272 return;
1273 }
1274
halcanarya6814332015-05-27 08:53:36 -07001275 SkPaint paint = srcPaint;
1276 replace_srcmode_on_opaque_paint(&paint);
1277
halcanary96fcdcc2015-08-27 07:41:13 -07001278 NOT_IMPLEMENTED(paint.getMaskFilter() != nullptr, false);
1279 if (paint.getMaskFilter() != nullptr) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001280 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1281 // making text unreadable (e.g. same text twice when using CSS shadows).
1282 return;
1283 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001284 SkASSERT(1 == scalarsPerPos || 2 == scalarsPerPos);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001285 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001286 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001287 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001288 return;
1289 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001290
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001291 SkGlyphStorage storage(0);
halcanary96fcdcc2015-08-27 07:41:13 -07001292 const uint16_t* glyphIDs = nullptr;
bungeman22edc832014-10-03 07:55:58 -07001293 size_t numGlyphs = force_glyph_encoding(paint, text, len, &storage, &glyphIDs);
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001294 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001295
benjaminwagnerd936f632016-02-23 10:44:31 -08001296 SkPaint::GlyphCacheProc glyphCacheProc = textPaint.getGlyphCacheProc(true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001297 content.entry()->fContent.writeText("BT\n");
robertphillips8e0c1502015-07-07 10:28:43 -07001298 this->updateFont(textPaint, glyphIDs[0], content.entry());
halcanaryf0c30f52016-07-15 13:35:45 -07001299 GlyphPositioner glyphPositioner(&content.entry()->fContent,
1300 textPaint.getTextSkewX(),
1301 content.entry()->fState.fFont->multiByteGlyphs());
halcanary3c35fb32016-06-30 11:55:07 -07001302 SkPDFGlyphSetMap* fontGlyphUsage = fDocument->getGlyphUsage();
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001303 for (size_t i = 0; i < numGlyphs; i++) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001304 SkPDFFont* font = content.entry()->fState.fFont;
vandebo@chromium.org01294102011-02-28 19:52:18 +00001305 uint16_t encodedValue = glyphIDs[i];
1306 if (font->glyphsToPDFFontEncoding(&encodedValue, 1) != 1) {
bungeman22edc832014-10-03 07:55:58 -07001307 // The current pdf font cannot encode the current glyph.
1308 // Try to get a pdf font which can encode the current glyph.
halcanaryf0c30f52016-07-15 13:35:45 -07001309 glyphPositioner.flush();
robertphillips8e0c1502015-07-07 10:28:43 -07001310 this->updateFont(textPaint, glyphIDs[i], content.entry());
bungeman22edc832014-10-03 07:55:58 -07001311 font = content.entry()->fState.fFont;
halcanaryf0c30f52016-07-15 13:35:45 -07001312 glyphPositioner.setWideChars(font->multiByteGlyphs());
bungeman22edc832014-10-03 07:55:58 -07001313 if (font->glyphsToPDFFontEncoding(&encodedValue, 1) != 1) {
1314 SkDEBUGFAIL("PDF could not encode glyph.");
1315 continue;
1316 }
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001317 }
bungeman22edc832014-10-03 07:55:58 -07001318
halcanary3c35fb32016-06-30 11:55:07 -07001319 fontGlyphUsage->noteGlyphUsage(font, &encodedValue, 1);
fmalita05c4a432014-09-29 06:29:53 -07001320 SkScalar x = offset.x() + pos[i * scalarsPerPos];
1321 SkScalar y = offset.y() + (2 == scalarsPerPos ? pos[i * scalarsPerPos + 1] : 0);
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001322 align_text(glyphCacheProc, textPaint, glyphIDs + i, 1, &x, &y);
halcanaryf0c30f52016-07-15 13:35:45 -07001323
1324 SkScalar advanceWidth = textPaint.measureText(&encodedValue, sizeof(uint16_t));
1325 glyphPositioner.writeGlyph(x, y, advanceWidth, encodedValue);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001326 }
halcanaryf0c30f52016-07-15 13:35:45 -07001327 glyphPositioner.flush(); // Must flush before ending text object.
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001328 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001329}
1330
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001331void SkPDFDevice::drawVertices(const SkDraw& d, SkCanvas::VertexMode,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001332 int vertexCount, const SkPoint verts[],
1333 const SkPoint texs[], const SkColor colors[],
1334 SkXfermode* xmode, const uint16_t indices[],
1335 int indexCount, const SkPaint& paint) {
reed1e7f5e72016-04-27 07:49:17 -07001336 if (d.fRC->isEmpty()) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001337 return;
1338 }
reed@google.com85e143c2013-12-30 15:51:25 +00001339 // TODO: implement drawVertices
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001340}
1341
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001342void SkPDFDevice::drawDevice(const SkDraw& d, SkBaseDevice* device,
1343 int x, int y, const SkPaint& paint) {
fmalita6987dca2014-11-13 08:33:37 -08001344 // our onCreateCompatibleDevice() always creates SkPDFDevice subclasses.
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001345 SkPDFDevice* pdfDevice = static_cast<SkPDFDevice*>(device);
wangxianzhuef6c50a2015-09-17 20:38:02 -07001346
1347 SkScalar scalarX = SkIntToScalar(x);
1348 SkScalar scalarY = SkIntToScalar(y);
halcanary91fcb3e2016-03-04 13:53:22 -08001349 for (const RectWithData& l : pdfDevice->fLinkToURLs) {
1350 SkRect r = l.rect.makeOffset(scalarX, scalarY);
halcanaryd7b28852016-03-07 12:39:14 -08001351 fLinkToURLs.emplace_back(r, l.data.get());
wangxianzhuef6c50a2015-09-17 20:38:02 -07001352 }
halcanary91fcb3e2016-03-04 13:53:22 -08001353 for (const RectWithData& l : pdfDevice->fLinkToDestinations) {
1354 SkRect r = l.rect.makeOffset(scalarX, scalarY);
halcanaryd7b28852016-03-07 12:39:14 -08001355 fLinkToDestinations.emplace_back(r, l.data.get());
wangxianzhuef6c50a2015-09-17 20:38:02 -07001356 }
halcanary91fcb3e2016-03-04 13:53:22 -08001357 for (const NamedDestination& d : pdfDevice->fNamedDestinations) {
1358 SkPoint p = d.point + SkPoint::Make(scalarX, scalarY);
halcanaryd7b28852016-03-07 12:39:14 -08001359 fNamedDestinations.emplace_back(d.nameData.get(), p);
wangxianzhuef6c50a2015-09-17 20:38:02 -07001360 }
1361
ctguil@chromium.orgf4ff39c2011-05-24 19:55:05 +00001362 if (pdfDevice->isContentEmpty()) {
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001363 return;
1364 }
1365
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001366 SkMatrix matrix;
reed@google.coma6d59f62011-03-07 21:29:21 +00001367 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
reed1e7f5e72016-04-27 07:49:17 -07001368 ScopedContentEntry content(this, d.fClipStack, d.fRC->bwRgn(), matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001369 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001370 return;
1371 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001372 if (content.needShape()) {
1373 SkPath shape;
1374 shape.addRect(SkRect::MakeXYWH(SkIntToScalar(x), SkIntToScalar(y),
vandebo@chromium.orgfd3c8c22013-10-30 21:00:47 +00001375 SkIntToScalar(device->width()),
1376 SkIntToScalar(device->height())));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001377 content.setShape(shape);
1378 }
1379 if (!content.needSource()) {
1380 return;
1381 }
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001382
halcanaryece83922016-03-08 08:32:12 -08001383 auto xObject = sk_make_sp<SkPDFFormXObject>(pdfDevice);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001384 SkPDFUtils::DrawFormXObject(this->addXObjectResource(xObject.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001385 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001386}
1387
reed89443ab2014-06-27 11:34:19 -07001388SkImageInfo SkPDFDevice::imageInfo() const {
1389 return fLegacyBitmap.info();
1390}
1391
robertphillips@google.com40a1ae42012-07-13 15:36:15 +00001392void SkPDFDevice::onAttachToCanvas(SkCanvas* canvas) {
1393 INHERITED::onAttachToCanvas(canvas);
1394
1395 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
1396 fClipStack = canvas->getClipStack();
1397}
1398
1399void SkPDFDevice::onDetachFromCanvas() {
1400 INHERITED::onDetachFromCanvas();
1401
halcanary96fcdcc2015-08-27 07:41:13 -07001402 fClipStack = nullptr;
robertphillips@google.com40a1ae42012-07-13 15:36:15 +00001403}
1404
reede8f30622016-03-23 18:59:25 -07001405sk_sp<SkSurface> SkPDFDevice::makeSurface(const SkImageInfo& info, const SkSurfaceProps& props) {
1406 return SkSurface::MakeRaster(info, &props);
reed89443ab2014-06-27 11:34:19 -07001407}
1408
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001409
halcanary8103a342016-03-08 15:10:16 -08001410sk_sp<SkPDFDict> SkPDFDevice::makeResourceDict() const {
halcanary2b861552015-04-09 13:27:40 -07001411 SkTDArray<SkPDFObject*> fonts;
1412 fonts.setReserve(fFontResources.count());
1413 for (SkPDFFont* font : fFontResources) {
1414 fonts.push(font);
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001415 }
halcanary8103a342016-03-08 15:10:16 -08001416 return SkPDFResourceDict::Make(
halcanary2b861552015-04-09 13:27:40 -07001417 &fGraphicStateResources,
1418 &fShaderResources,
1419 &fXObjectResources,
1420 &fonts);
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001421}
1422
vandebo@chromium.orgf0ec2662011-05-29 05:55:42 +00001423const SkTDArray<SkPDFFont*>& SkPDFDevice::getFontResources() const {
1424 return fFontResources;
1425}
1426
halcanary8103a342016-03-08 15:10:16 -08001427sk_sp<SkPDFArray> SkPDFDevice::copyMediaBox() const {
halcanaryece83922016-03-08 08:32:12 -08001428 auto mediaBox = sk_make_sp<SkPDFArray>();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001429 mediaBox->reserve(4);
halcanary130444f2015-04-25 06:45:07 -07001430 mediaBox->appendInt(0);
1431 mediaBox->appendInt(0);
halcanary8103a342016-03-08 15:10:16 -08001432 mediaBox->appendInt(fPageSize.width());
1433 mediaBox->appendInt(fPageSize.height());
1434 return mediaBox;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001435}
1436
mtklein5f939ab2016-03-16 10:28:35 -07001437std::unique_ptr<SkStreamAsset> SkPDFDevice::content() const {
halcanary334fcbc2015-02-24 12:56:16 -08001438 SkDynamicMemoryWStream buffer;
1439 this->writeContent(&buffer);
mtklein5f939ab2016-03-16 10:28:35 -07001440 return std::unique_ptr<SkStreamAsset>(
halcanary8103a342016-03-08 15:10:16 -08001441 buffer.bytesWritten() > 0
1442 ? buffer.detachAsStream()
1443 : new SkMemoryStream);
reed@google.com5667afc2011-06-27 14:42:15 +00001444}
1445
halcanary334fcbc2015-02-24 12:56:16 -08001446void SkPDFDevice::writeContent(SkWStream* out) const {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001447 if (fInitialTransform.getType() != SkMatrix::kIdentity_Mask) {
halcanary334fcbc2015-02-24 12:56:16 -08001448 SkPDFUtils::AppendTransform(fInitialTransform, out);
vandebo@chromium.orgc2a9b7f2011-02-24 23:22:30 +00001449 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001450
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001451 // If the content area is the entire page, then we don't need to clip
1452 // the content area (PDF area clips to the page size). Otherwise,
1453 // we have to clip to the content area; we've already applied the
1454 // initial transform, so just clip to the device size.
1455 if (fPageSize != fContentSize) {
robertphillips@google.com8637a362012-04-10 18:32:35 +00001456 SkRect r = SkRect::MakeWH(SkIntToScalar(this->width()),
1457 SkIntToScalar(this->height()));
halcanary96fcdcc2015-08-27 07:41:13 -07001458 emit_clip(nullptr, &r, out);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001459 }
vandebo@chromium.org98594282011-07-25 22:34:12 +00001460
halcanary2be7e012016-03-28 11:58:08 -07001461 GraphicStackState gsState(fExistingClipStack, fExistingClipRegion, out);
1462 for (const auto& entry : fContentEntries) {
1463 SkPoint translation;
1464 translation.iset(this->getOrigin());
1465 translation.negate();
1466 gsState.updateClip(entry.fState.fClipStack, entry.fState.fClipRegion,
1467 translation);
1468 gsState.updateMatrix(entry.fState.fMatrix);
1469 gsState.updateDrawingState(entry.fState);
1470
1471 entry.fContent.writeToStream(out);
1472 }
1473 gsState.drainStack();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001474}
1475
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001476/* Draws an inverse filled path by using Path Ops to compute the positive
1477 * inverse using the current clip as the inverse bounds.
1478 * Return true if this was an inverse path and was properly handled,
1479 * otherwise returns false and the normal drawing routine should continue,
1480 * either as a (incorrect) fallback or because the path was not inverse
1481 * in the first place.
1482 */
1483bool SkPDFDevice::handleInversePath(const SkDraw& d, const SkPath& origPath,
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001484 const SkPaint& paint, bool pathIsMutable,
1485 const SkMatrix* prePathMatrix) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001486 if (!origPath.isInverseFillType()) {
1487 return false;
1488 }
1489
reed1e7f5e72016-04-27 07:49:17 -07001490 if (d.fRC->isEmpty()) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001491 return false;
1492 }
1493
1494 SkPath modifiedPath;
1495 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
1496 SkPaint noInversePaint(paint);
1497
1498 // Merge stroking operations into final path.
1499 if (SkPaint::kStroke_Style == paint.getStyle() ||
1500 SkPaint::kStrokeAndFill_Style == paint.getStyle()) {
1501 bool doFillPath = paint.getFillPath(origPath, &modifiedPath);
1502 if (doFillPath) {
1503 noInversePaint.setStyle(SkPaint::kFill_Style);
1504 noInversePaint.setStrokeWidth(0);
1505 pathPtr = &modifiedPath;
1506 } else {
1507 // To be consistent with the raster output, hairline strokes
1508 // are rendered as non-inverted.
1509 modifiedPath.toggleInverseFillType();
halcanary96fcdcc2015-08-27 07:41:13 -07001510 drawPath(d, modifiedPath, paint, nullptr, true);
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001511 return true;
1512 }
1513 }
1514
1515 // Get bounds of clip in current transform space
1516 // (clip bounds are given in device space).
1517 SkRect bounds;
1518 SkMatrix transformInverse;
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001519 SkMatrix totalMatrix = *d.fMatrix;
1520 if (prePathMatrix) {
1521 totalMatrix.preConcat(*prePathMatrix);
1522 }
1523 if (!totalMatrix.invert(&transformInverse)) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001524 return false;
1525 }
reed1e7f5e72016-04-27 07:49:17 -07001526 bounds.set(d.fRC->getBounds());
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001527 transformInverse.mapRect(&bounds);
1528
1529 // Extend the bounds by the line width (plus some padding)
1530 // so the edge doesn't cause a visible stroke.
1531 bounds.outset(paint.getStrokeWidth() + SK_Scalar1,
1532 paint.getStrokeWidth() + SK_Scalar1);
1533
1534 if (!calculate_inverse_path(bounds, *pathPtr, &modifiedPath)) {
1535 return false;
1536 }
1537
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001538 drawPath(d, modifiedPath, noInversePaint, prePathMatrix, true);
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001539 return true;
1540}
1541
reedf70b5312016-03-04 16:36:20 -08001542void SkPDFDevice::handlePointAnnotation(const SkPoint& point,
epoger@google.comb58772f2013-03-08 09:09:10 +00001543 const SkMatrix& matrix,
reedf70b5312016-03-04 16:36:20 -08001544 const char key[], SkData* value) {
1545 if (!value) {
1546 return;
epoger@google.comb58772f2013-03-08 09:09:10 +00001547 }
reedf70b5312016-03-04 16:36:20 -08001548
1549 if (!strcmp(SkAnnotationKeys::Define_Named_Dest_Key(), key)) {
1550 SkPoint transformedPoint;
1551 matrix.mapXY(point.x(), point.y(), &transformedPoint);
1552 fNamedDestinations.emplace_back(value, transformedPoint);
1553 }
epoger@google.comb58772f2013-03-08 09:09:10 +00001554}
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001555
reedf70b5312016-03-04 16:36:20 -08001556void SkPDFDevice::handlePathAnnotation(const SkPath& path,
wangxianzhuef6c50a2015-09-17 20:38:02 -07001557 const SkDraw& d,
reedf70b5312016-03-04 16:36:20 -08001558 const char key[], SkData* value) {
1559 if (!value) {
1560 return;
1561 }
wangxianzhuef6c50a2015-09-17 20:38:02 -07001562
1563 SkPath transformedPath = path;
1564 transformedPath.transform(*d.fMatrix);
1565 SkRasterClip clip = *d.fRC;
senorblancoafc7cce2016-02-02 18:44:15 -08001566 clip.op(transformedPath, SkIRect::MakeWH(width(), height()), SkRegion::kIntersect_Op,
1567 false);
wangxianzhuef6c50a2015-09-17 20:38:02 -07001568 SkRect transformedRect = SkRect::Make(clip.getBounds());
1569
reedf70b5312016-03-04 16:36:20 -08001570 if (!strcmp(SkAnnotationKeys::URL_Key(), key)) {
wangxianzhuef6c50a2015-09-17 20:38:02 -07001571 if (!transformedRect.isEmpty()) {
reedf70b5312016-03-04 16:36:20 -08001572 fLinkToURLs.emplace_back(transformedRect, value);
wangxianzhuef6c50a2015-09-17 20:38:02 -07001573 }
reedf70b5312016-03-04 16:36:20 -08001574 } else if (!strcmp(SkAnnotationKeys::Link_Named_Dest_Key(), key)) {
reed16108352016-03-03 09:14:36 -08001575 if (!transformedRect.isEmpty()) {
reedf70b5312016-03-04 16:36:20 -08001576 fLinkToDestinations.emplace_back(transformedRect, value);
reed16108352016-03-03 09:14:36 -08001577 }
reed16108352016-03-03 09:14:36 -08001578 }
halcanary438de492015-04-28 06:21:01 -07001579}
1580
wangxianzhuef6c50a2015-09-17 20:38:02 -07001581void SkPDFDevice::appendAnnotations(SkPDFArray* array) const {
1582 array->reserve(fLinkToURLs.count() + fLinkToDestinations.count());
halcanary91fcb3e2016-03-04 13:53:22 -08001583 for (const RectWithData& rectWithURL : fLinkToURLs) {
wangxianzhuef6c50a2015-09-17 20:38:02 -07001584 SkRect r;
halcanary91fcb3e2016-03-04 13:53:22 -08001585 fInitialTransform.mapRect(&r, rectWithURL.rect);
halcanaryd7b28852016-03-07 12:39:14 -08001586 array->appendObject(create_link_to_url(rectWithURL.data.get(), r));
wangxianzhuef6c50a2015-09-17 20:38:02 -07001587 }
halcanary91fcb3e2016-03-04 13:53:22 -08001588 for (const RectWithData& linkToDestination : fLinkToDestinations) {
wangxianzhuef6c50a2015-09-17 20:38:02 -07001589 SkRect r;
halcanary91fcb3e2016-03-04 13:53:22 -08001590 fInitialTransform.mapRect(&r, linkToDestination.rect);
halcanaryd7b28852016-03-07 12:39:14 -08001591 array->appendObject(
1592 create_link_named_dest(linkToDestination.data.get(), r));
wangxianzhuef6c50a2015-09-17 20:38:02 -07001593 }
1594}
epoger@google.comb58772f2013-03-08 09:09:10 +00001595
halcanary6d622702015-03-25 08:45:42 -07001596void SkPDFDevice::appendDestinations(SkPDFDict* dict, SkPDFObject* page) const {
halcanary91fcb3e2016-03-04 13:53:22 -08001597 for (const NamedDestination& dest : fNamedDestinations) {
halcanaryece83922016-03-08 08:32:12 -08001598 auto pdfDest = sk_make_sp<SkPDFArray>();
epoger@google.comb58772f2013-03-08 09:09:10 +00001599 pdfDest->reserve(5);
halcanarye94ea622016-03-09 07:52:09 -08001600 pdfDest->appendObjRef(sk_ref_sp(page));
epoger@google.comb58772f2013-03-08 09:09:10 +00001601 pdfDest->appendName("XYZ");
halcanary91fcb3e2016-03-04 13:53:22 -08001602 SkPoint p = fInitialTransform.mapXY(dest.point.x(), dest.point.y());
wangxianzhuef6c50a2015-09-17 20:38:02 -07001603 pdfDest->appendScalar(p.x());
1604 pdfDest->appendScalar(p.y());
epoger@google.comb58772f2013-03-08 09:09:10 +00001605 pdfDest->appendInt(0); // Leave zoom unchanged
halcanary91fcb3e2016-03-04 13:53:22 -08001606 SkString name(static_cast<const char*>(dest.nameData->data()));
halcanary8103a342016-03-08 15:10:16 -08001607 dict->insertObject(name, std::move(pdfDest));
epoger@google.comb58772f2013-03-08 09:09:10 +00001608 }
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001609}
1610
reed@google.comfc641d02012-09-20 17:52:20 +00001611SkPDFFormXObject* SkPDFDevice::createFormXObjectFromDevice() {
halcanary385fe4d2015-08-26 13:07:48 -07001612 SkPDFFormXObject* xobject = new SkPDFFormXObject(this);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001613 // We always draw the form xobjects that we create back into the device, so
1614 // we simply preserve the font usage instead of pulling it out and merging
1615 // it back in later.
halcanary3c35fb32016-06-30 11:55:07 -07001616 cleanUp(); // Reset this device to have no content.
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001617 init();
reed@google.comfc641d02012-09-20 17:52:20 +00001618 return xobject;
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001619}
1620
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001621void SkPDFDevice::drawFormXObjectWithMask(int xObjectIndex,
1622 SkPDFFormXObject* mask,
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001623 const SkClipStack* clipStack,
1624 const SkRegion& clipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001625 SkXfermode::Mode mode,
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001626 bool invertClip) {
1627 if (clipRegion.isEmpty() && !invertClip) {
1628 return;
1629 }
1630
halcanary1437c1e2016-03-13 18:30:24 -07001631 auto sMaskGS = SkPDFGraphicState::GetSMaskGraphicState(
halcanary989da4a2016-03-21 14:33:17 -07001632 mask, invertClip, SkPDFGraphicState::kAlpha_SMaskMode, fDocument->canon());
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001633
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001634 SkMatrix identity;
1635 identity.reset();
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001636 SkPaint paint;
1637 paint.setXfermodeMode(mode);
1638 ScopedContentEntry content(this, clipStack, clipRegion, identity, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001639 if (!content.entry()) {
1640 return;
1641 }
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001642 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001643 &content.entry()->fContent);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001644 SkPDFUtils::DrawFormXObject(xObjectIndex, &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001645
halcanary1437c1e2016-03-13 18:30:24 -07001646 // Call makeNoSmaskGraphicState() instead of
1647 // SkPDFGraphicState::MakeNoSmaskGraphicState so that the canon
1648 // can deduplicate.
halcanary989da4a2016-03-21 14:33:17 -07001649 sMaskGS = fDocument->canon()->makeNoSmaskGraphicState();
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001650 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001651 &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001652}
1653
halcanary2be7e012016-03-28 11:58:08 -07001654SkPDFDevice::ContentEntry* SkPDFDevice::setUpContentEntry(const SkClipStack* clipStack,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001655 const SkRegion& clipRegion,
1656 const SkMatrix& matrix,
1657 const SkPaint& paint,
1658 bool hasText,
reed@google.comfc641d02012-09-20 17:52:20 +00001659 SkPDFFormXObject** dst) {
halcanary96fcdcc2015-08-27 07:41:13 -07001660 *dst = nullptr;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001661 if (clipRegion.isEmpty()) {
halcanary96fcdcc2015-08-27 07:41:13 -07001662 return nullptr;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001663 }
1664
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001665 // The clip stack can come from an SkDraw where it is technically optional.
1666 SkClipStack synthesizedClipStack;
halcanary96fcdcc2015-08-27 07:41:13 -07001667 if (clipStack == nullptr) {
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001668 if (clipRegion == fExistingClipRegion) {
1669 clipStack = &fExistingClipStack;
1670 } else {
1671 // GraphicStackState::updateClip expects the clip stack to have
1672 // fExistingClip as a prefix, so start there, then set the clip
1673 // to the passed region.
1674 synthesizedClipStack = fExistingClipStack;
1675 SkPath clipPath;
1676 clipRegion.getBoundaryPath(&clipPath);
reed@google.com00177082011-10-12 14:34:30 +00001677 synthesizedClipStack.clipDevPath(clipPath, SkRegion::kReplace_Op,
1678 false);
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001679 clipStack = &synthesizedClipStack;
1680 }
1681 }
1682
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001683 SkXfermode::Mode xfermode = SkXfermode::kSrcOver_Mode;
1684 if (paint.getXfermode()) {
1685 paint.getXfermode()->asMode(&xfermode);
1686 }
1687
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001688 // For the following modes, we want to handle source and destination
1689 // separately, so make an object of what's already there.
1690 if (xfermode == SkXfermode::kClear_Mode ||
1691 xfermode == SkXfermode::kSrc_Mode ||
1692 xfermode == SkXfermode::kSrcIn_Mode ||
1693 xfermode == SkXfermode::kDstIn_Mode ||
1694 xfermode == SkXfermode::kSrcOut_Mode ||
1695 xfermode == SkXfermode::kDstOut_Mode ||
1696 xfermode == SkXfermode::kSrcATop_Mode ||
1697 xfermode == SkXfermode::kDstATop_Mode ||
1698 xfermode == SkXfermode::kModulate_Mode) {
1699 if (!isContentEmpty()) {
reed@google.comfc641d02012-09-20 17:52:20 +00001700 *dst = createFormXObjectFromDevice();
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001701 SkASSERT(isContentEmpty());
1702 } else if (xfermode != SkXfermode::kSrc_Mode &&
1703 xfermode != SkXfermode::kSrcOut_Mode) {
1704 // Except for Src and SrcOut, if there isn't anything already there,
1705 // then we're done.
halcanary96fcdcc2015-08-27 07:41:13 -07001706 return nullptr;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001707 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001708 }
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +00001709 // TODO(vandebo): Figure out how/if we can handle the following modes:
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001710 // Xor, Plus.
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001711
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001712 // Dst xfer mode doesn't draw source at all.
1713 if (xfermode == SkXfermode::kDst_Mode) {
halcanary96fcdcc2015-08-27 07:41:13 -07001714 return nullptr;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001715 }
1716
halcanary2be7e012016-03-28 11:58:08 -07001717 SkPDFDevice::ContentEntry* entry;
1718 if (fContentEntries.back() && fContentEntries.back()->fContent.getOffset() == 0) {
1719 entry = fContentEntries.back();
1720 } else if (xfermode != SkXfermode::kDstOver_Mode) {
1721 entry = fContentEntries.emplace_back();
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001722 } else {
halcanary2be7e012016-03-28 11:58:08 -07001723 entry = fContentEntries.emplace_front();
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001724 }
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001725 populateGraphicStateEntryFromPaint(matrix, *clipStack, clipRegion, paint,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001726 hasText, &entry->fState);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001727 return entry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001728}
1729
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001730void SkPDFDevice::finishContentEntry(SkXfermode::Mode xfermode,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001731 SkPDFFormXObject* dst,
1732 SkPath* shape) {
1733 if (xfermode != SkXfermode::kClear_Mode &&
1734 xfermode != SkXfermode::kSrc_Mode &&
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001735 xfermode != SkXfermode::kDstOver_Mode &&
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001736 xfermode != SkXfermode::kSrcIn_Mode &&
1737 xfermode != SkXfermode::kDstIn_Mode &&
1738 xfermode != SkXfermode::kSrcOut_Mode &&
1739 xfermode != SkXfermode::kDstOut_Mode &&
1740 xfermode != SkXfermode::kSrcATop_Mode &&
1741 xfermode != SkXfermode::kDstATop_Mode &&
1742 xfermode != SkXfermode::kModulate_Mode) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001743 SkASSERT(!dst);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001744 return;
1745 }
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001746 if (xfermode == SkXfermode::kDstOver_Mode) {
1747 SkASSERT(!dst);
halcanary2be7e012016-03-28 11:58:08 -07001748 if (fContentEntries.front()->fContent.getOffset() == 0) {
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001749 // For DstOver, an empty content entry was inserted before the rest
1750 // of the content entries. If nothing was drawn, it needs to be
1751 // removed.
halcanary2be7e012016-03-28 11:58:08 -07001752 fContentEntries.pop_front();
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001753 }
1754 return;
1755 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001756 if (!dst) {
1757 SkASSERT(xfermode == SkXfermode::kSrc_Mode ||
1758 xfermode == SkXfermode::kSrcOut_Mode);
1759 return;
1760 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001761
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001762 SkASSERT(dst);
halcanary2be7e012016-03-28 11:58:08 -07001763 SkASSERT(fContentEntries.count() == 1);
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001764 // Changing the current content into a form-xobject will destroy the clip
1765 // objects which is fine since the xobject will already be clipped. However
1766 // if source has shape, we need to clip it too, so a copy of the clip is
1767 // saved.
halcanary2be7e012016-03-28 11:58:08 -07001768
1769 SkClipStack clipStack = fContentEntries.front()->fState.fClipStack;
1770 SkRegion clipRegion = fContentEntries.front()->fState.fClipRegion;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001771
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001772 SkMatrix identity;
1773 identity.reset();
1774 SkPaint stockPaint;
1775
halcanary48810a02016-03-07 14:57:50 -08001776 sk_sp<SkPDFFormXObject> srcFormXObject;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001777 if (isContentEmpty()) {
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001778 // If nothing was drawn and there's no shape, then the draw was a
1779 // no-op, but dst needs to be restored for that to be true.
1780 // If there is shape, then an empty source with Src, SrcIn, SrcOut,
1781 // DstIn, DstAtop or Modulate reduces to Clear and DstOut or SrcAtop
1782 // reduces to Dst.
halcanary96fcdcc2015-08-27 07:41:13 -07001783 if (shape == nullptr || xfermode == SkXfermode::kDstOut_Mode ||
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001784 xfermode == SkXfermode::kSrcATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001785 ScopedContentEntry content(this, &fExistingClipStack,
1786 fExistingClipRegion, identity,
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001787 stockPaint);
1788 SkPDFUtils::DrawFormXObject(this->addXObjectResource(dst),
1789 &content.entry()->fContent);
1790 return;
1791 } else {
1792 xfermode = SkXfermode::kClear_Mode;
1793 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001794 } else {
halcanary2be7e012016-03-28 11:58:08 -07001795 SkASSERT(fContentEntries.count() == 1);
reed@google.comfc641d02012-09-20 17:52:20 +00001796 srcFormXObject.reset(createFormXObjectFromDevice());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001797 }
1798
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001799 // TODO(vandebo) srcFormXObject may contain alpha, but here we want it
1800 // without alpha.
1801 if (xfermode == SkXfermode::kSrcATop_Mode) {
1802 // TODO(vandebo): In order to properly support SrcATop we have to track
1803 // the shape of what's been drawn at all times. It's the intersection of
1804 // the non-transparent parts of the device and the outlines (shape) of
1805 // all images and devices drawn.
1806 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()), dst,
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001807 &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001808 SkXfermode::kSrcOver_Mode, true);
1809 } else {
halcanary48810a02016-03-07 14:57:50 -08001810 sk_sp<SkPDFFormXObject> dstMaskStorage;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001811 SkPDFFormXObject* dstMask = srcFormXObject.get();
halcanary96fcdcc2015-08-27 07:41:13 -07001812 if (shape != nullptr) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001813 // Draw shape into a form-xobject.
reed1e7f5e72016-04-27 07:49:17 -07001814 SkRasterClip rc(clipRegion);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001815 SkDraw d;
1816 d.fMatrix = &identity;
reed1e7f5e72016-04-27 07:49:17 -07001817 d.fRC = &rc;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001818 d.fClipStack = &clipStack;
1819 SkPaint filledPaint;
1820 filledPaint.setColor(SK_ColorBLACK);
1821 filledPaint.setStyle(SkPaint::kFill_Style);
halcanary96fcdcc2015-08-27 07:41:13 -07001822 this->drawPath(d, *shape, filledPaint, nullptr, true);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001823
1824 dstMaskStorage.reset(createFormXObjectFromDevice());
1825 dstMask = dstMaskStorage.get();
1826 }
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001827 drawFormXObjectWithMask(addXObjectResource(dst), dstMask,
1828 &fExistingClipStack, fExistingClipRegion,
1829 SkXfermode::kSrcOver_Mode, true);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001830 }
1831
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001832 if (xfermode == SkXfermode::kClear_Mode) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001833 return;
1834 } else if (xfermode == SkXfermode::kSrc_Mode ||
1835 xfermode == SkXfermode::kDstATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001836 ScopedContentEntry content(this, &fExistingClipStack,
1837 fExistingClipRegion, identity, stockPaint);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001838 if (content.entry()) {
1839 SkPDFUtils::DrawFormXObject(
1840 this->addXObjectResource(srcFormXObject.get()),
1841 &content.entry()->fContent);
1842 }
1843 if (xfermode == SkXfermode::kSrc_Mode) {
1844 return;
1845 }
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001846 } else if (xfermode == SkXfermode::kSrcATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001847 ScopedContentEntry content(this, &fExistingClipStack,
1848 fExistingClipRegion, identity, stockPaint);
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001849 if (content.entry()) {
1850 SkPDFUtils::DrawFormXObject(this->addXObjectResource(dst),
1851 &content.entry()->fContent);
1852 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001853 }
1854
1855 SkASSERT(xfermode == SkXfermode::kSrcIn_Mode ||
1856 xfermode == SkXfermode::kDstIn_Mode ||
1857 xfermode == SkXfermode::kSrcOut_Mode ||
1858 xfermode == SkXfermode::kDstOut_Mode ||
1859 xfermode == SkXfermode::kSrcATop_Mode ||
1860 xfermode == SkXfermode::kDstATop_Mode ||
1861 xfermode == SkXfermode::kModulate_Mode);
1862
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001863 if (xfermode == SkXfermode::kSrcIn_Mode ||
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001864 xfermode == SkXfermode::kSrcOut_Mode ||
1865 xfermode == SkXfermode::kSrcATop_Mode) {
1866 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()), dst,
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001867 &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001868 SkXfermode::kSrcOver_Mode,
1869 xfermode == SkXfermode::kSrcOut_Mode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001870 } else {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001871 SkXfermode::Mode mode = SkXfermode::kSrcOver_Mode;
1872 if (xfermode == SkXfermode::kModulate_Mode) {
1873 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()),
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001874 dst, &fExistingClipStack,
1875 fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001876 SkXfermode::kSrcOver_Mode, false);
1877 mode = SkXfermode::kMultiply_Mode;
1878 }
1879 drawFormXObjectWithMask(addXObjectResource(dst), srcFormXObject.get(),
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001880 &fExistingClipStack, fExistingClipRegion, mode,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001881 xfermode == SkXfermode::kDstOut_Mode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001882 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001883}
1884
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001885bool SkPDFDevice::isContentEmpty() {
halcanary2be7e012016-03-28 11:58:08 -07001886 if (!fContentEntries.front() || fContentEntries.front()->fContent.getOffset() == 0) {
1887 SkASSERT(fContentEntries.count() <= 1);
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001888 return true;
1889 }
1890 return false;
1891}
1892
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001893void SkPDFDevice::populateGraphicStateEntryFromPaint(
1894 const SkMatrix& matrix,
1895 const SkClipStack& clipStack,
1896 const SkRegion& clipRegion,
1897 const SkPaint& paint,
1898 bool hasText,
halcanary2be7e012016-03-28 11:58:08 -07001899 SkPDFDevice::GraphicStateEntry* entry) {
halcanary96fcdcc2015-08-27 07:41:13 -07001900 NOT_IMPLEMENTED(paint.getPathEffect() != nullptr, false);
1901 NOT_IMPLEMENTED(paint.getMaskFilter() != nullptr, false);
1902 NOT_IMPLEMENTED(paint.getColorFilter() != nullptr, false);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001903
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001904 entry->fMatrix = matrix;
1905 entry->fClipStack = clipStack;
1906 entry->fClipRegion = clipRegion;
vandebo@chromium.orgda6c5692012-06-28 21:37:20 +00001907 entry->fColor = SkColorSetA(paint.getColor(), 0xFF);
1908 entry->fShaderIndex = -1;
vandebo@chromium.org48543272011-02-08 19:28:07 +00001909
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001910 // PDF treats a shader as a color, so we only set one or the other.
halcanary48810a02016-03-07 14:57:50 -08001911 sk_sp<SkPDFObject> pdfShader;
reedfe630452016-03-25 09:08:00 -07001912 SkShader* shader = paint.getShader();
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001913 SkColor color = paint.getColor();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001914 if (shader) {
1915 // PDF positions patterns relative to the initial transform, so
1916 // we need to apply the current transform to the shader parameters.
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001917 SkMatrix transform = matrix;
vandebo@chromium.org75f97e42011-04-11 23:24:18 +00001918 transform.postConcat(fInitialTransform);
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001919
1920 // PDF doesn't support kClamp_TileMode, so we simulate it by making
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001921 // a pattern the size of the current clip.
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001922 SkIRect bounds = clipRegion.getBounds();
vandebo@chromium.org293a7582012-03-16 19:50:37 +00001923
1924 // We need to apply the initial transform to bounds in order to get
1925 // bounds in a consistent coordinate system.
1926 SkRect boundsTemp;
1927 boundsTemp.set(bounds);
1928 fInitialTransform.mapRect(&boundsTemp);
1929 boundsTemp.roundOut(&bounds);
1930
halcanary792c80f2015-02-20 07:21:05 -08001931 SkScalar rasterScale =
1932 SkIntToScalar(fRasterDpi) / DPI_FOR_RASTER_SCALE_ONE;
1933 pdfShader.reset(SkPDFShader::GetPDFShader(
reedfe630452016-03-25 09:08:00 -07001934 fDocument, fRasterDpi, shader, transform, bounds, rasterScale));
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001935
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00001936 if (pdfShader.get()) {
1937 // pdfShader has been canonicalized so we can directly compare
1938 // pointers.
1939 int resourceIndex = fShaderResources.find(pdfShader.get());
1940 if (resourceIndex < 0) {
1941 resourceIndex = fShaderResources.count();
1942 fShaderResources.push(pdfShader.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001943 pdfShader.get()->ref();
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00001944 }
1945 entry->fShaderIndex = resourceIndex;
1946 } else {
1947 // A color shader is treated as an invalid shader so we don't have
1948 // to set a shader just for a color.
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001949 SkShader::GradientInfo gradientInfo;
1950 SkColor gradientColor;
1951 gradientInfo.fColors = &gradientColor;
halcanary96fcdcc2015-08-27 07:41:13 -07001952 gradientInfo.fColorOffsets = nullptr;
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001953 gradientInfo.fColorCount = 1;
1954 if (shader->asAGradient(&gradientInfo) ==
1955 SkShader::kColor_GradientType) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001956 entry->fColor = SkColorSetA(gradientColor, 0xFF);
1957 color = gradientColor;
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001958 }
1959 }
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001960 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001961
halcanary48810a02016-03-07 14:57:50 -08001962 sk_sp<SkPDFGraphicState> newGraphicState;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001963 if (color == paint.getColor()) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001964 newGraphicState.reset(
halcanary989da4a2016-03-21 14:33:17 -07001965 SkPDFGraphicState::GetGraphicStateForPaint(fDocument->canon(), paint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001966 } else {
1967 SkPaint newPaint = paint;
1968 newPaint.setColor(color);
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001969 newGraphicState.reset(
halcanary989da4a2016-03-21 14:33:17 -07001970 SkPDFGraphicState::GetGraphicStateForPaint(fDocument->canon(), newPaint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001971 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001972 int resourceIndex = addGraphicStateResource(newGraphicState.get());
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001973 entry->fGraphicStateIndex = resourceIndex;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001974
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001975 if (hasText) {
1976 entry->fTextScaleX = paint.getTextScaleX();
1977 entry->fTextFill = paint.getStyle();
1978 } else {
1979 entry->fTextScaleX = 0;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001980 }
1981}
1982
halcanarybe27a112015-04-01 13:31:19 -07001983int SkPDFDevice::addGraphicStateResource(SkPDFObject* gs) {
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001984 // Assumes that gs has been canonicalized (so we can directly compare
1985 // pointers).
1986 int result = fGraphicStateResources.find(gs);
1987 if (result < 0) {
1988 result = fGraphicStateResources.count();
1989 fGraphicStateResources.push(gs);
1990 gs->ref();
1991 }
1992 return result;
1993}
1994
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001995int SkPDFDevice::addXObjectResource(SkPDFObject* xObject) {
1996 // Assumes that xobject has been canonicalized (so we can directly compare
1997 // pointers).
1998 int result = fXObjectResources.find(xObject);
1999 if (result < 0) {
2000 result = fXObjectResources.count();
2001 fXObjectResources.push(xObject);
2002 xObject->ref();
2003 }
2004 return result;
2005}
2006
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002007void SkPDFDevice::updateFont(const SkPaint& paint, uint16_t glyphID,
halcanary2be7e012016-03-28 11:58:08 -07002008 SkPDFDevice::ContentEntry* contentEntry) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002009 SkTypeface* typeface = paint.getTypeface();
halcanary96fcdcc2015-08-27 07:41:13 -07002010 if (contentEntry->fState.fFont == nullptr ||
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002011 contentEntry->fState.fTextSize != paint.getTextSize() ||
2012 !contentEntry->fState.fFont->hasGlyph(glyphID)) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002013 int fontIndex = getFontResourceIndex(typeface, glyphID);
commit-bot@chromium.org47401352013-07-23 21:49:29 +00002014 contentEntry->fContent.writeText("/");
2015 contentEntry->fContent.writeText(SkPDFResourceDict::getResourceName(
2016 SkPDFResourceDict::kFont_ResourceType,
2017 fontIndex).c_str());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002018 contentEntry->fContent.writeText(" ");
halcanarybc4696b2015-05-06 10:56:04 -07002019 SkPDFUtils::AppendScalar(paint.getTextSize(), &contentEntry->fContent);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002020 contentEntry->fContent.writeText(" Tf\n");
2021 contentEntry->fState.fFont = fFontResources[fontIndex];
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00002022 }
2023}
2024
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002025int SkPDFDevice::getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID) {
halcanary48810a02016-03-07 14:57:50 -08002026 sk_sp<SkPDFFont> newFont(
halcanary989da4a2016-03-21 14:33:17 -07002027 SkPDFFont::GetFontResource(fDocument->canon(), typeface, glyphID));
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00002028 int resourceIndex = fFontResources.find(newFont.get());
2029 if (resourceIndex < 0) {
2030 resourceIndex = fFontResources.count();
2031 fFontResources.push(newFont.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002032 newFont.get()->ref();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00002033 }
2034 return resourceIndex;
2035}
2036
halcanary7a14b312015-10-01 07:28:13 -07002037static SkSize rect_to_size(const SkRect& r) {
2038 return SkSize::Make(r.width(), r.height());
2039}
2040
halcanarya50151d2016-03-25 11:57:49 -07002041static sk_sp<SkImage> color_filter(const SkImageBitmap& imageBitmap,
2042 SkColorFilter* colorFilter) {
halcanary9d524f22016-03-29 09:03:52 -07002043 auto surface =
halcanarya50151d2016-03-25 11:57:49 -07002044 SkSurface::MakeRaster(SkImageInfo::MakeN32Premul(imageBitmap.dimensions()));
2045 SkASSERT(surface);
halcanary7a14b312015-10-01 07:28:13 -07002046 SkCanvas* canvas = surface->getCanvas();
2047 canvas->clear(SK_ColorTRANSPARENT);
2048 SkPaint paint;
reedd053ce92016-03-22 10:17:23 -07002049 paint.setColorFilter(sk_ref_sp(colorFilter));
halcanarya50151d2016-03-25 11:57:49 -07002050 imageBitmap.draw(canvas, &paint);
halcanary7a14b312015-10-01 07:28:13 -07002051 canvas->flush();
halcanarya50151d2016-03-25 11:57:49 -07002052 return surface->makeImageSnapshot();
halcanary7a14b312015-10-01 07:28:13 -07002053}
2054
2055////////////////////////////////////////////////////////////////////////////////
2056void SkPDFDevice::internalDrawImage(const SkMatrix& origMatrix,
2057 const SkClipStack* clipStack,
2058 const SkRegion& origClipRegion,
halcanarya50151d2016-03-25 11:57:49 -07002059 SkImageBitmap imageBitmap,
halcanary7a14b312015-10-01 07:28:13 -07002060 const SkPaint& paint) {
halcanarya50151d2016-03-25 11:57:49 -07002061 if (imageBitmap.dimensions().isZero()) {
2062 return;
2063 }
halcanary7a14b312015-10-01 07:28:13 -07002064 #ifdef SK_PDF_IMAGE_STATS
2065 gDrawImageCalls.fetch_add(1);
2066 #endif
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002067 SkMatrix matrix = origMatrix;
2068 SkRegion perspectiveBounds;
2069 const SkRegion* clipRegion = &origClipRegion;
halcanarya50151d2016-03-25 11:57:49 -07002070 sk_sp<SkImage> autoImageUnref;
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002071
2072 // Rasterize the bitmap using perspective in a new bitmap.
2073 if (origMatrix.hasPerspective()) {
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002074 if (fRasterDpi == 0) {
2075 return;
2076 }
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002077 // Transform the bitmap in the new space, without taking into
2078 // account the initial transform.
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002079 SkPath perspectiveOutline;
halcanarya50151d2016-03-25 11:57:49 -07002080 SkRect imageBounds = SkRect::Make(imageBitmap.bounds());
halcanary7a14b312015-10-01 07:28:13 -07002081 perspectiveOutline.addRect(imageBounds);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002082 perspectiveOutline.transform(origMatrix);
2083
2084 // TODO(edisonn): perf - use current clip too.
2085 // Retrieve the bounds of the new shape.
2086 SkRect bounds = perspectiveOutline.getBounds();
2087
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002088 // Transform the bitmap in the new space, taking into
2089 // account the initial transform.
2090 SkMatrix total = origMatrix;
2091 total.postConcat(fInitialTransform);
halcanary7a14b312015-10-01 07:28:13 -07002092 SkScalar dpiScale = SkIntToScalar(fRasterDpi) /
2093 SkIntToScalar(DPI_FOR_RASTER_SCALE_ONE);
2094 total.postScale(dpiScale, dpiScale);
2095
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002096 SkPath physicalPerspectiveOutline;
halcanary7a14b312015-10-01 07:28:13 -07002097 physicalPerspectiveOutline.addRect(imageBounds);
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002098 physicalPerspectiveOutline.transform(total);
2099
halcanary7a14b312015-10-01 07:28:13 -07002100 SkRect physicalPerspectiveBounds =
2101 physicalPerspectiveOutline.getBounds();
2102 SkScalar scaleX = physicalPerspectiveBounds.width() / bounds.width();
2103 SkScalar scaleY = physicalPerspectiveBounds.height() / bounds.height();
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002104
2105 // TODO(edisonn): A better approach would be to use a bitmap shader
2106 // (in clamp mode) and draw a rect over the entire bounding box. Then
2107 // intersect perspectiveOutline to the clip. That will avoid introducing
2108 // alpha to the image while still giving good behavior at the edge of
2109 // the image. Avoiding alpha will reduce the pdf size and generation
2110 // CPU time some.
2111
halcanary7a14b312015-10-01 07:28:13 -07002112 SkISize wh = rect_to_size(physicalPerspectiveBounds).toCeil();
2113
reede8f30622016-03-23 18:59:25 -07002114 auto surface(SkSurface::MakeRaster(SkImageInfo::MakeN32Premul(wh)));
halcanary7a14b312015-10-01 07:28:13 -07002115 if (!surface) {
reed@google.com9ebcac52014-01-24 18:53:42 +00002116 return;
2117 }
halcanary7a14b312015-10-01 07:28:13 -07002118 SkCanvas* canvas = surface->getCanvas();
2119 canvas->clear(SK_ColorTRANSPARENT);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002120
2121 SkScalar deltaX = bounds.left();
2122 SkScalar deltaY = bounds.top();
2123
2124 SkMatrix offsetMatrix = origMatrix;
2125 offsetMatrix.postTranslate(-deltaX, -deltaY);
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002126 offsetMatrix.postScale(scaleX, scaleY);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002127
2128 // Translate the draw in the new canvas, so we perfectly fit the
2129 // shape in the bitmap.
halcanary7a14b312015-10-01 07:28:13 -07002130 canvas->setMatrix(offsetMatrix);
halcanarya50151d2016-03-25 11:57:49 -07002131 imageBitmap.draw(canvas, nullptr);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002132 // Make sure the final bits are in the bitmap.
halcanary7a14b312015-10-01 07:28:13 -07002133 canvas->flush();
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002134
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002135 // In the new space, we use the identity matrix translated
2136 // and scaled to reflect DPI.
2137 matrix.setScale(1 / scaleX, 1 / scaleY);
2138 matrix.postTranslate(deltaX, deltaY);
2139
halcanary7a14b312015-10-01 07:28:13 -07002140 perspectiveBounds.setRect(bounds.roundOut());
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002141 clipRegion = &perspectiveBounds;
halcanary7a14b312015-10-01 07:28:13 -07002142
halcanarya50151d2016-03-25 11:57:49 -07002143 autoImageUnref = surface->makeImageSnapshot();
2144 imageBitmap = SkImageBitmap(autoImageUnref.get());
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002145 }
2146
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002147 SkMatrix scaled;
2148 // Adjust for origin flip.
vandebo@chromium.org663515b2012-01-05 18:45:27 +00002149 scaled.setScale(SK_Scalar1, -SK_Scalar1);
2150 scaled.postTranslate(0, SK_Scalar1);
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002151 // Scale the image up from 1x1 to WxH.
halcanarya50151d2016-03-25 11:57:49 -07002152 SkIRect subset = imageBitmap.bounds();
2153 scaled.postScale(SkIntToScalar(imageBitmap.dimensions().width()),
2154 SkIntToScalar(imageBitmap.dimensions().height()));
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002155 scaled.postConcat(matrix);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002156 ScopedContentEntry content(this, clipStack, *clipRegion, scaled, paint);
halcanarya50151d2016-03-25 11:57:49 -07002157 if (!content.entry()) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002158 return;
2159 }
2160 if (content.needShape()) {
2161 SkPath shape;
halcanary7a14b312015-10-01 07:28:13 -07002162 shape.addRect(SkRect::Make(subset));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002163 shape.transform(matrix);
2164 content.setShape(shape);
2165 }
2166 if (!content.needSource()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00002167 return;
2168 }
2169
halcanary287d22d2015-09-24 10:20:05 -07002170 if (SkColorFilter* colorFilter = paint.getColorFilter()) {
halcanary6950de62015-11-07 05:29:00 -08002171 // TODO(https://bug.skia.org/4378): implement colorfilter on other
halcanary7a14b312015-10-01 07:28:13 -07002172 // draw calls. This code here works for all
2173 // drawBitmap*()/drawImage*() calls amd ImageFilters (which
2174 // rasterize a layer on this backend). Fortuanely, this seems
2175 // to be how Chromium impements most color-filters.
halcanarya50151d2016-03-25 11:57:49 -07002176 autoImageUnref = color_filter(imageBitmap, colorFilter);
2177 imageBitmap = SkImageBitmap(autoImageUnref.get());
halcanary7a14b312015-10-01 07:28:13 -07002178 // TODO(halcanary): de-dupe this by caching filtered images.
2179 // (maybe in the resource cache?)
2180 }
halcanarya50151d2016-03-25 11:57:49 -07002181
2182 SkBitmapKey key = imageBitmap.getKey();
2183 sk_sp<SkPDFObject> pdfimage = fDocument->canon()->findPDFBitmap(key);
halcanary7a14b312015-10-01 07:28:13 -07002184 if (!pdfimage) {
halcanarya50151d2016-03-25 11:57:49 -07002185 auto img = imageBitmap.makeImage();
2186 if (!img) {
2187 return;
2188 }
2189 pdfimage = SkPDFCreateBitmapObject(
2190 std::move(img), fDocument->canon()->getPixelSerializer());
halcanary7a14b312015-10-01 07:28:13 -07002191 if (!pdfimage) {
2192 return;
halcanary287d22d2015-09-24 10:20:05 -07002193 }
halcanarya50151d2016-03-25 11:57:49 -07002194 fDocument->serialize(pdfimage); // serialize images early.
2195 fDocument->canon()->addPDFBitmap(key, pdfimage);
halcanary287d22d2015-09-24 10:20:05 -07002196 }
halcanarya50151d2016-03-25 11:57:49 -07002197 // TODO(halcanary): addXObjectResource() should take a sk_sp<SkPDFObject>
halcanary3d8c33c2015-10-01 11:06:22 -07002198 SkPDFUtils::DrawFormXObject(this->addXObjectResource(pdfimage.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002199 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002200}