blob: d227dd7d1cb9f5c7eb9e141826b6d180205c8ff2 [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
vandebo@chromium.org238be8c2012-07-13 20:06:02 +000010#include "SkAnnotation.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000011#include "SkColor.h"
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000012#include "SkClipStack.h"
reed@google.com8a85d0c2011-06-24 19:12:12 +000013#include "SkData.h"
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +000014#include "SkDraw.h"
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +000015#include "SkFontHost.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000016#include "SkGlyphCache.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000017#include "SkPaint.h"
vandebo@chromium.orga5180862010-10-26 19:48:49 +000018#include "SkPath.h"
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +000019#include "SkPathOps.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000020#include "SkPDFFont.h"
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +000021#include "SkPDFFormXObject.h"
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +000022#include "SkPDFGraphicState.h"
23#include "SkPDFImage.h"
commit-bot@chromium.org47401352013-07-23 21:49:29 +000024#include "SkPDFResourceDict.h"
vandebo@chromium.orgda912d62011-03-08 18:31:02 +000025#include "SkPDFShader.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000026#include "SkPDFStream.h"
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +000027#include "SkPDFTypes.h"
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +000028#include "SkPDFUtils.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000029#include "SkRect.h"
scroggo@google.coma8e33a92013-11-08 18:02:53 +000030#include "SkRRect.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000031#include "SkString.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000032#include "SkTextFormatParams.h"
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +000033#include "SkTemplates.h"
reed@google.comfed86bd2013-03-14 15:04:57 +000034#include "SkTypefacePriv.h"
edisonn@google.com6addb192013-04-02 15:33:08 +000035#include "SkTSet.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000036
djsollen@google.com5df5e612013-10-03 14:42:24 +000037#ifdef SK_BUILD_FOR_ANDROID
38#include "SkTypeface_android.h"
39
40struct TypefaceFallbackData {
41 SkTypeface* typeface;
42 int lowerBounds;
43 int upperBounds;
44
45 bool operator==(const TypefaceFallbackData& b) const {
46 return typeface == b.typeface &&
47 lowerBounds == b.lowerBounds &&
48 upperBounds == b.upperBounds;
49 }
50};
51#endif
52
edisonn@google.com73a7ea32013-11-11 20:55:15 +000053#define DPI_FOR_RASTER_SCALE_ONE 72
54
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000055// Utility functions
56
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000057static void emit_pdf_color(SkColor color, SkWStream* result) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000058 SkASSERT(SkColorGetA(color) == 0xFF); // We handle alpha elsewhere.
59 SkScalar colorMax = SkIntToScalar(0xFF);
vandebo@chromium.org094316b2011-03-04 03:15:13 +000060 SkPDFScalar::Append(
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000061 SkScalarDiv(SkIntToScalar(SkColorGetR(color)), colorMax), result);
62 result->writeText(" ");
vandebo@chromium.org094316b2011-03-04 03:15:13 +000063 SkPDFScalar::Append(
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000064 SkScalarDiv(SkIntToScalar(SkColorGetG(color)), colorMax), result);
65 result->writeText(" ");
vandebo@chromium.org094316b2011-03-04 03:15:13 +000066 SkPDFScalar::Append(
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000067 SkScalarDiv(SkIntToScalar(SkColorGetB(color)), colorMax), result);
68 result->writeText(" ");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000069}
70
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000071static SkPaint calculate_text_paint(const SkPaint& paint) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000072 SkPaint result = paint;
73 if (result.isFakeBoldText()) {
74 SkScalar fakeBoldScale = SkScalarInterpFunc(result.getTextSize(),
75 kStdFakeBoldInterpKeys,
76 kStdFakeBoldInterpValues,
77 kStdFakeBoldInterpLength);
78 SkScalar width = SkScalarMul(result.getTextSize(), fakeBoldScale);
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000079 if (result.getStyle() == SkPaint::kFill_Style) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000080 result.setStyle(SkPaint::kStrokeAndFill_Style);
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000081 } else {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000082 width += result.getStrokeWidth();
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000083 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000084 result.setStrokeWidth(width);
85 }
86 return result;
87}
88
89// Stolen from measure_text in SkDraw.cpp and then tweaked.
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000090static void align_text(SkDrawCacheProc glyphCacheProc, const SkPaint& paint,
bungeman@google.com9a87cee2011-08-23 17:02:18 +000091 const uint16_t* glyphs, size_t len,
92 SkScalar* x, SkScalar* y) {
93 if (paint.getTextAlign() == SkPaint::kLeft_Align) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000094 return;
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000095 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000096
97 SkMatrix ident;
98 ident.reset();
bungeman@google.com532470f2013-01-22 19:25:14 +000099 SkAutoGlyphCache autoCache(paint, NULL, &ident);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000100 SkGlyphCache* cache = autoCache.getCache();
101
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +0000102 const char* start = reinterpret_cast<const char*>(glyphs);
103 const char* stop = reinterpret_cast<const char*>(glyphs + len);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000104 SkFixed xAdv = 0, yAdv = 0;
105
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000106 // TODO(vandebo): This probably needs to take kerning into account.
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000107 while (start < stop) {
108 const SkGlyph& glyph = glyphCacheProc(cache, &start, 0, 0);
109 xAdv += glyph.fAdvanceX;
110 yAdv += glyph.fAdvanceY;
111 };
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000112 if (paint.getTextAlign() == SkPaint::kLeft_Align) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000113 return;
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000114 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000115
116 SkScalar xAdj = SkFixedToScalar(xAdv);
117 SkScalar yAdj = SkFixedToScalar(yAdv);
118 if (paint.getTextAlign() == SkPaint::kCenter_Align) {
119 xAdj = SkScalarHalf(xAdj);
120 yAdj = SkScalarHalf(yAdj);
121 }
122 *x = *x - xAdj;
123 *y = *y - yAdj;
124}
125
robertphillips@google.coma4662862013-11-21 14:24:16 +0000126static int max_glyphid_for_typeface(SkTypeface* typeface) {
reed@google.comfed86bd2013-03-14 15:04:57 +0000127 SkAutoResolveDefaultTypeface autoResolve(typeface);
128 typeface = autoResolve.get();
commit-bot@chromium.org6a4ba5b2013-07-17 21:55:08 +0000129 return typeface->countGlyphs() - 1;
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000130}
131
132typedef SkAutoSTMalloc<128, uint16_t> SkGlyphStorage;
133
134static size_t force_glyph_encoding(const SkPaint& paint, const void* text,
135 size_t len, SkGlyphStorage* storage,
136 uint16_t** glyphIDs) {
137 // Make sure we have a glyph id encoding.
138 if (paint.getTextEncoding() != SkPaint::kGlyphID_TextEncoding) {
139 size_t numGlyphs = paint.textToGlyphs(text, len, NULL);
140 storage->reset(numGlyphs);
141 paint.textToGlyphs(text, len, storage->get());
142 *glyphIDs = storage->get();
143 return numGlyphs;
144 }
145
146 // For user supplied glyph ids we need to validate them.
147 SkASSERT((len & 1) == 0);
148 size_t numGlyphs = len / 2;
149 const uint16_t* input =
150 reinterpret_cast<uint16_t*>(const_cast<void*>((text)));
151
152 int maxGlyphID = max_glyphid_for_typeface(paint.getTypeface());
153 size_t validated;
154 for (validated = 0; validated < numGlyphs; ++validated) {
155 if (input[validated] > maxGlyphID) {
156 break;
157 }
158 }
159 if (validated >= numGlyphs) {
160 *glyphIDs = reinterpret_cast<uint16_t*>(const_cast<void*>((text)));
161 return numGlyphs;
162 }
163
164 // Silently drop anything out of range.
165 storage->reset(numGlyphs);
166 if (validated > 0) {
167 memcpy(storage->get(), input, validated * sizeof(uint16_t));
168 }
169
170 for (size_t i = validated; i < numGlyphs; ++i) {
171 storage->get()[i] = input[i];
172 if (input[i] > maxGlyphID) {
173 storage->get()[i] = 0;
174 }
175 }
176 *glyphIDs = storage->get();
177 return numGlyphs;
178}
179
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000180static void set_text_transform(SkScalar x, SkScalar y, SkScalar textSkewX,
181 SkWStream* content) {
182 // Flip the text about the x-axis to account for origin swap and include
183 // the passed parameters.
184 content->writeText("1 0 ");
185 SkPDFScalar::Append(0 - textSkewX, content);
186 content->writeText(" -1 ");
187 SkPDFScalar::Append(x, content);
188 content->writeText(" ");
189 SkPDFScalar::Append(y, content);
190 content->writeText(" Tm\n");
191}
192
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000193// It is important to not confuse GraphicStateEntry with SkPDFGraphicState, the
194// later being our representation of an object in the PDF file.
195struct GraphicStateEntry {
196 GraphicStateEntry();
197
198 // Compare the fields we care about when setting up a new content entry.
199 bool compareInitialState(const GraphicStateEntry& b);
200
201 SkMatrix fMatrix;
202 // We can't do set operations on Paths, though PDF natively supports
203 // intersect. If the clip stack does anything other than intersect,
204 // we have to fall back to the region. Treat fClipStack as authoritative.
205 // See http://code.google.com/p/skia/issues/detail?id=221
206 SkClipStack fClipStack;
207 SkRegion fClipRegion;
208
209 // When emitting the content entry, we will ensure the graphic state
210 // is set to these values first.
211 SkColor fColor;
212 SkScalar fTextScaleX; // Zero means we don't care what the value is.
213 SkPaint::Style fTextFill; // Only if TextScaleX is non-zero.
214 int fShaderIndex;
215 int fGraphicStateIndex;
216
217 // We may change the font (i.e. for Type1 support) within a
218 // ContentEntry. This is the one currently in effect, or NULL if none.
219 SkPDFFont* fFont;
220 // In PDF, text size has no default value. It is only valid if fFont is
221 // not NULL.
222 SkScalar fTextSize;
223};
224
225GraphicStateEntry::GraphicStateEntry() : fColor(SK_ColorBLACK),
226 fTextScaleX(SK_Scalar1),
227 fTextFill(SkPaint::kFill_Style),
228 fShaderIndex(-1),
229 fGraphicStateIndex(-1),
230 fFont(NULL),
231 fTextSize(SK_ScalarNaN) {
232 fMatrix.reset();
233}
234
commit-bot@chromium.orgb000d762014-02-07 19:39:57 +0000235bool GraphicStateEntry::compareInitialState(const GraphicStateEntry& cur) {
236 return fColor == cur.fColor &&
237 fShaderIndex == cur.fShaderIndex &&
238 fGraphicStateIndex == cur.fGraphicStateIndex &&
239 fMatrix == cur.fMatrix &&
240 fClipStack == cur.fClipStack &&
241 (fTextScaleX == 0 ||
242 (fTextScaleX == cur.fTextScaleX && fTextFill == cur.fTextFill));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000243}
244
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000245class GraphicStackState {
246public:
247 GraphicStackState(const SkClipStack& existingClipStack,
248 const SkRegion& existingClipRegion,
249 SkWStream* contentStream)
250 : fStackDepth(0),
251 fContentStream(contentStream) {
252 fEntries[0].fClipStack = existingClipStack;
253 fEntries[0].fClipRegion = existingClipRegion;
254 }
255
256 void updateClip(const SkClipStack& clipStack, const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000257 const SkPoint& translation);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000258 void updateMatrix(const SkMatrix& matrix);
259 void updateDrawingState(const GraphicStateEntry& state);
260
261 void drainStack();
262
263private:
264 void push();
265 void pop();
266 GraphicStateEntry* currentEntry() { return &fEntries[fStackDepth]; }
267
268 // Conservative limit on save depth, see impl. notes in PDF 1.4 spec.
269 static const int kMaxStackDepth = 12;
270 GraphicStateEntry fEntries[kMaxStackDepth + 1];
271 int fStackDepth;
272 SkWStream* fContentStream;
273};
274
275void GraphicStackState::drainStack() {
276 while (fStackDepth) {
277 pop();
278 }
279}
280
281void GraphicStackState::push() {
282 SkASSERT(fStackDepth < kMaxStackDepth);
283 fContentStream->writeText("q\n");
284 fStackDepth++;
285 fEntries[fStackDepth] = fEntries[fStackDepth - 1];
286}
287
288void GraphicStackState::pop() {
289 SkASSERT(fStackDepth > 0);
290 fContentStream->writeText("Q\n");
291 fStackDepth--;
292}
293
robertphillips@google.com80214e22012-07-20 15:33:18 +0000294// This function initializes iter to be an iterator on the "stack" argument
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000295// and then skips over the leading entries as specified in prefix. It requires
296// and asserts that "prefix" will be a prefix to "stack."
297static void skip_clip_stack_prefix(const SkClipStack& prefix,
298 const SkClipStack& stack,
robertphillips@google.comc0290622012-07-16 21:20:03 +0000299 SkClipStack::Iter* iter) {
robertphillips@google.com80214e22012-07-20 15:33:18 +0000300 SkClipStack::B2TIter prefixIter(prefix);
301 iter->reset(stack, SkClipStack::Iter::kBottom_IterStart);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000302
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000303 const SkClipStack::Element* prefixEntry;
304 const SkClipStack::Element* iterEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000305
306 for (prefixEntry = prefixIter.next(); prefixEntry;
robertphillips@google.comc0290622012-07-16 21:20:03 +0000307 prefixEntry = prefixIter.next()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000308 iterEntry = iter->next();
309 SkASSERT(iterEntry);
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000310 // Because of SkClipStack does internal intersection, the last clip
311 // entry may differ.
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +0000312 if (*prefixEntry != *iterEntry) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000313 SkASSERT(prefixEntry->getOp() == SkRegion::kIntersect_Op);
314 SkASSERT(iterEntry->getOp() == SkRegion::kIntersect_Op);
315 SkASSERT(iterEntry->getType() == prefixEntry->getType());
robertphillips@google.comc0290622012-07-16 21:20:03 +0000316 // back up the iterator by one
317 iter->prev();
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000318 prefixEntry = prefixIter.next();
319 break;
320 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000321 }
322
323 SkASSERT(prefixEntry == NULL);
324}
325
326static void emit_clip(SkPath* clipPath, SkRect* clipRect,
327 SkWStream* contentStream) {
328 SkASSERT(clipPath || clipRect);
329
330 SkPath::FillType clipFill;
331 if (clipPath) {
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000332 SkPDFUtils::EmitPath(*clipPath, SkPaint::kFill_Style, contentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000333 clipFill = clipPath->getFillType();
vandebo@chromium.org3e7b2802011-06-27 18:12:31 +0000334 } else {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000335 SkPDFUtils::AppendRectangle(*clipRect, contentStream);
336 clipFill = SkPath::kWinding_FillType;
337 }
338
339 NOT_IMPLEMENTED(clipFill == SkPath::kInverseEvenOdd_FillType, false);
340 NOT_IMPLEMENTED(clipFill == SkPath::kInverseWinding_FillType, false);
341 if (clipFill == SkPath::kEvenOdd_FillType) {
342 contentStream->writeText("W* n\n");
343 } else {
344 contentStream->writeText("W n\n");
345 }
346}
347
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000348#ifdef SK_PDF_USE_PATHOPS
349/* Calculate an inverted path's equivalent non-inverted path, given the
350 * canvas bounds.
351 * outPath may alias with invPath (since this is supported by PathOps).
352 */
353static bool calculate_inverse_path(const SkRect& bounds, const SkPath& invPath,
354 SkPath* outPath) {
355 SkASSERT(invPath.isInverseFillType());
356
357 SkPath clipPath;
358 clipPath.addRect(bounds);
359
360 return Op(clipPath, invPath, kIntersect_PathOp, outPath);
361}
362
363// Sanity check the numerical values of the SkRegion ops and PathOps ops
364// enums so region_op_to_pathops_op can do a straight passthrough cast.
365// If these are failing, it may be necessary to make region_op_to_pathops_op
366// do more.
367SK_COMPILE_ASSERT(SkRegion::kDifference_Op == (int)kDifference_PathOp,
368 region_pathop_mismatch);
369SK_COMPILE_ASSERT(SkRegion::kIntersect_Op == (int)kIntersect_PathOp,
370 region_pathop_mismatch);
371SK_COMPILE_ASSERT(SkRegion::kUnion_Op == (int)kUnion_PathOp,
372 region_pathop_mismatch);
373SK_COMPILE_ASSERT(SkRegion::kXOR_Op == (int)kXOR_PathOp,
374 region_pathop_mismatch);
375SK_COMPILE_ASSERT(SkRegion::kReverseDifference_Op ==
376 (int)kReverseDifference_PathOp,
377 region_pathop_mismatch);
378
379static SkPathOp region_op_to_pathops_op(SkRegion::Op op) {
380 SkASSERT(op >= 0);
381 SkASSERT(op <= SkRegion::kReverseDifference_Op);
382 return (SkPathOp)op;
383}
384
385/* Uses Path Ops to calculate a vector SkPath clip from a clip stack.
386 * Returns true if successful, or false if not successful.
387 * If successful, the resulting clip is stored in outClipPath.
388 * If not successful, outClipPath is undefined, and a fallback method
389 * should be used.
390 */
391static bool get_clip_stack_path(const SkMatrix& transform,
392 const SkClipStack& clipStack,
393 const SkRegion& clipRegion,
394 SkPath* outClipPath) {
395 outClipPath->reset();
396 outClipPath->setFillType(SkPath::kInverseWinding_FillType);
397
398 const SkClipStack::Element* clipEntry;
399 SkClipStack::Iter iter;
400 iter.reset(clipStack, SkClipStack::Iter::kBottom_IterStart);
401 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
402 SkPath entryPath;
403 if (SkClipStack::Element::kEmpty_Type == clipEntry->getType()) {
404 outClipPath->reset();
405 outClipPath->setFillType(SkPath::kInverseWinding_FillType);
406 continue;
407 } else if (SkClipStack::Element::kRect_Type == clipEntry->getType()) {
408 entryPath.addRect(clipEntry->getRect());
409 } else if (SkClipStack::Element::kPath_Type == clipEntry->getType()) {
410 entryPath = clipEntry->getPath();
411 }
412 entryPath.transform(transform);
413
414 if (SkRegion::kReplace_Op == clipEntry->getOp()) {
415 *outClipPath = entryPath;
416 } else {
417 SkPathOp op = region_op_to_pathops_op(clipEntry->getOp());
418 if (!Op(*outClipPath, entryPath, op, outClipPath)) {
419 return false;
420 }
421 }
422 }
423
424 if (outClipPath->isInverseFillType()) {
425 // The bounds are slightly outset to ensure this is correct in the
426 // face of floating-point accuracy and possible SkRegion bitmap
427 // approximations.
428 SkRect clipBounds = SkRect::Make(clipRegion.getBounds());
429 clipBounds.outset(SK_Scalar1, SK_Scalar1);
430 if (!calculate_inverse_path(clipBounds, *outClipPath, outClipPath)) {
431 return false;
432 }
433 }
434 return true;
435}
436#endif
437
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000438// TODO(vandebo): Take advantage of SkClipStack::getSaveCount(), the PDF
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000439// graphic state stack, and the fact that we can know all the clips used
440// on the page to optimize this.
441void GraphicStackState::updateClip(const SkClipStack& clipStack,
442 const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000443 const SkPoint& translation) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000444 if (clipStack == currentEntry()->fClipStack) {
445 return;
446 }
447
448 while (fStackDepth > 0) {
449 pop();
450 if (clipStack == currentEntry()->fClipStack) {
451 return;
452 }
453 }
454 push();
455
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000456 currentEntry()->fClipStack = clipStack;
457 currentEntry()->fClipRegion = clipRegion;
458
459 SkMatrix transform;
460 transform.setTranslate(translation.fX, translation.fY);
461
462#ifdef SK_PDF_USE_PATHOPS
463 SkPath clipPath;
464 if (get_clip_stack_path(transform, clipStack, clipRegion, &clipPath)) {
465 emit_clip(&clipPath, NULL, fContentStream);
466 return;
467 }
468#endif
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000469 // gsState->initialEntry()->fClipStack/Region specifies the clip that has
470 // already been applied. (If this is a top level device, then it specifies
471 // a clip to the content area. If this is a layer, then it specifies
472 // the clip in effect when the layer was created.) There's no need to
473 // reapply that clip; SKCanvas's SkDrawIter will draw anything outside the
474 // initial clip on the parent layer. (This means there's a bug if the user
475 // expands the clip and then uses any xfer mode that uses dst:
476 // http://code.google.com/p/skia/issues/detail?id=228 )
robertphillips@google.comc0290622012-07-16 21:20:03 +0000477 SkClipStack::Iter iter;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000478 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
479
480 // If the clip stack does anything other than intersect or if it uses
481 // an inverse fill type, we have to fall back to the clip region.
482 bool needRegion = false;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000483 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000484 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000485 if (clipEntry->getOp() != SkRegion::kIntersect_Op ||
486 clipEntry->isInverseFilled()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000487 needRegion = true;
488 break;
489 }
490 }
491
492 if (needRegion) {
493 SkPath clipPath;
494 SkAssertResult(clipRegion.getBoundaryPath(&clipPath));
495 emit_clip(&clipPath, NULL, fContentStream);
496 } else {
497 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000498 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000499 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000500 SkASSERT(clipEntry->getOp() == SkRegion::kIntersect_Op);
501 switch (clipEntry->getType()) {
502 case SkClipStack::Element::kRect_Type: {
503 SkRect translatedClip;
504 transform.mapRect(&translatedClip, clipEntry->getRect());
505 emit_clip(NULL, &translatedClip, fContentStream);
506 break;
507 }
508 case SkClipStack::Element::kPath_Type: {
509 SkPath translatedPath;
510 clipEntry->getPath().transform(transform, &translatedPath);
511 emit_clip(&translatedPath, NULL, fContentStream);
512 break;
513 }
514 default:
515 SkASSERT(false);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000516 }
517 }
518 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000519}
520
521void GraphicStackState::updateMatrix(const SkMatrix& matrix) {
522 if (matrix == currentEntry()->fMatrix) {
523 return;
524 }
525
526 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) {
527 SkASSERT(fStackDepth > 0);
528 SkASSERT(fEntries[fStackDepth].fClipStack ==
529 fEntries[fStackDepth -1].fClipStack);
530 pop();
531
532 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask);
533 }
534 if (matrix.getType() == SkMatrix::kIdentity_Mask) {
535 return;
536 }
537
538 push();
539 SkPDFUtils::AppendTransform(matrix, fContentStream);
540 currentEntry()->fMatrix = matrix;
541}
542
543void GraphicStackState::updateDrawingState(const GraphicStateEntry& state) {
544 // PDF treats a shader as a color, so we only set one or the other.
545 if (state.fShaderIndex >= 0) {
546 if (state.fShaderIndex != currentEntry()->fShaderIndex) {
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +0000547 SkPDFUtils::ApplyPattern(state.fShaderIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000548 currentEntry()->fShaderIndex = state.fShaderIndex;
549 }
550 } else {
551 if (state.fColor != currentEntry()->fColor ||
552 currentEntry()->fShaderIndex >= 0) {
553 emit_pdf_color(state.fColor, fContentStream);
554 fContentStream->writeText("RG ");
555 emit_pdf_color(state.fColor, fContentStream);
556 fContentStream->writeText("rg\n");
557 currentEntry()->fColor = state.fColor;
558 currentEntry()->fShaderIndex = -1;
559 }
560 }
561
562 if (state.fGraphicStateIndex != currentEntry()->fGraphicStateIndex) {
vandebo@chromium.org6112c212011-05-13 03:50:38 +0000563 SkPDFUtils::ApplyGraphicState(state.fGraphicStateIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000564 currentEntry()->fGraphicStateIndex = state.fGraphicStateIndex;
565 }
566
567 if (state.fTextScaleX) {
568 if (state.fTextScaleX != currentEntry()->fTextScaleX) {
569 SkScalar pdfScale = SkScalarMul(state.fTextScaleX,
570 SkIntToScalar(100));
571 SkPDFScalar::Append(pdfScale, fContentStream);
572 fContentStream->writeText(" Tz\n");
573 currentEntry()->fTextScaleX = state.fTextScaleX;
574 }
575 if (state.fTextFill != currentEntry()->fTextFill) {
576 SK_COMPILE_ASSERT(SkPaint::kFill_Style == 0, enum_must_match_value);
577 SK_COMPILE_ASSERT(SkPaint::kStroke_Style == 1,
578 enum_must_match_value);
579 SK_COMPILE_ASSERT(SkPaint::kStrokeAndFill_Style == 2,
580 enum_must_match_value);
581 fContentStream->writeDecAsText(state.fTextFill);
582 fContentStream->writeText(" Tr\n");
583 currentEntry()->fTextFill = state.fTextFill;
584 }
585 }
586}
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000587
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000588SkBaseDevice* SkPDFDevice::onCreateCompatibleDevice(SkBitmap::Config config,
589 int width, int height,
590 bool isOpaque,
591 Usage usage) {
bsalomon@google.come97f0852011-06-17 13:10:25 +0000592 SkMatrix initialTransform;
593 initialTransform.reset();
594 SkISize size = SkISize::Make(width, height);
595 return SkNEW_ARGS(SkPDFDevice, (size, size, initialTransform));
596}
597
598
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000599struct ContentEntry {
600 GraphicStateEntry fState;
601 SkDynamicMemoryWStream fContent;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000602 SkAutoTDelete<ContentEntry> fNext;
edisonn@google.com2e6a69b2013-02-05 23:13:39 +0000603
604 // If the stack is too deep we could get Stack Overflow.
605 // So we manually destruct the object.
606 ~ContentEntry() {
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000607 ContentEntry* val = fNext.detach();
edisonn@google.com2e6a69b2013-02-05 23:13:39 +0000608 while (val != NULL) {
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000609 ContentEntry* valNext = val->fNext.detach();
edisonn@google.com2e6a69b2013-02-05 23:13:39 +0000610 // When the destructor is called, fNext is NULL and exits.
611 delete val;
612 val = valNext;
613 }
614 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000615};
616
617// A helper class to automatically finish a ContentEntry at the end of a
618// drawing method and maintain the state needed between set up and finish.
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000619class ScopedContentEntry {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000620public:
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000621 ScopedContentEntry(SkPDFDevice* device, const SkDraw& draw,
622 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000623 : fDevice(device),
624 fContentEntry(NULL),
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000625 fXfermode(SkXfermode::kSrcOver_Mode),
626 fDstFormXObject(NULL) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000627 init(draw.fClipStack, *draw.fClip, *draw.fMatrix, paint, hasText);
628 }
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000629 ScopedContentEntry(SkPDFDevice* device, const SkClipStack* clipStack,
630 const SkRegion& clipRegion, const SkMatrix& matrix,
631 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000632 : fDevice(device),
633 fContentEntry(NULL),
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000634 fXfermode(SkXfermode::kSrcOver_Mode),
635 fDstFormXObject(NULL) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000636 init(clipStack, clipRegion, matrix, paint, hasText);
637 }
638
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000639 ~ScopedContentEntry() {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000640 if (fContentEntry) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000641 SkPath* shape = &fShape;
642 if (shape->isEmpty()) {
643 shape = NULL;
644 }
645 fDevice->finishContentEntry(fXfermode, fDstFormXObject, shape);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000646 }
reed@google.comfc641d02012-09-20 17:52:20 +0000647 SkSafeUnref(fDstFormXObject);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000648 }
649
650 ContentEntry* entry() { return fContentEntry; }
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000651
652 /* Returns true when we explicitly need the shape of the drawing. */
653 bool needShape() {
654 switch (fXfermode) {
655 case SkXfermode::kClear_Mode:
656 case SkXfermode::kSrc_Mode:
657 case SkXfermode::kSrcIn_Mode:
658 case SkXfermode::kSrcOut_Mode:
659 case SkXfermode::kDstIn_Mode:
660 case SkXfermode::kDstOut_Mode:
661 case SkXfermode::kSrcATop_Mode:
662 case SkXfermode::kDstATop_Mode:
663 case SkXfermode::kModulate_Mode:
664 return true;
665 default:
666 return false;
667 }
668 }
669
670 /* Returns true unless we only need the shape of the drawing. */
671 bool needSource() {
672 if (fXfermode == SkXfermode::kClear_Mode) {
673 return false;
674 }
675 return true;
676 }
677
678 /* If the shape is different than the alpha component of the content, then
679 * setShape should be called with the shape. In particular, images and
680 * devices have rectangular shape.
681 */
682 void setShape(const SkPath& shape) {
683 fShape = shape;
684 }
685
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000686private:
687 SkPDFDevice* fDevice;
688 ContentEntry* fContentEntry;
689 SkXfermode::Mode fXfermode;
reed@google.comfc641d02012-09-20 17:52:20 +0000690 SkPDFFormXObject* fDstFormXObject;
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000691 SkPath fShape;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000692
693 void init(const SkClipStack* clipStack, const SkRegion& clipRegion,
694 const SkMatrix& matrix, const SkPaint& paint, bool hasText) {
edisonn@google.com83d8eda2013-10-24 13:19:28 +0000695 // Shape has to be flatten before we get here.
696 if (matrix.hasPerspective()) {
697 NOT_IMPLEMENTED(!matrix.hasPerspective(), false);
vandebo@chromium.orgdc37e202013-10-18 20:16:34 +0000698 return;
699 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000700 if (paint.getXfermode()) {
701 paint.getXfermode()->asMode(&fXfermode);
702 }
703 fContentEntry = fDevice->setUpContentEntry(clipStack, clipRegion,
704 matrix, paint, hasText,
705 &fDstFormXObject);
706 }
707};
708
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000709////////////////////////////////////////////////////////////////////////////////
710
ctguil@chromium.org15261292011-04-29 17:54:16 +0000711static inline SkBitmap makeContentBitmap(const SkISize& contentSize,
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000712 const SkMatrix* initialTransform) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000713 SkBitmap bitmap;
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000714 if (initialTransform) {
715 // Compute the size of the drawing area.
716 SkVector drawingSize;
717 SkMatrix inverse;
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000718 drawingSize.set(SkIntToScalar(contentSize.fWidth),
719 SkIntToScalar(contentSize.fHeight));
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000720 if (!initialTransform->invert(&inverse)) {
vandebo@chromium.org386dfc02012-04-17 22:31:52 +0000721 // This shouldn't happen, initial transform should be invertible.
722 SkASSERT(false);
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000723 inverse.reset();
724 }
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000725 inverse.mapVectors(&drawingSize, 1);
726 SkISize size = SkSize::Make(drawingSize.fX, drawingSize.fY).toRound();
727 bitmap.setConfig(SkBitmap::kNo_Config, abs(size.fWidth),
728 abs(size.fHeight));
729 } else {
730 bitmap.setConfig(SkBitmap::kNo_Config, abs(contentSize.fWidth),
731 abs(contentSize.fHeight));
732 }
733
reed@android.comf2b98d62010-12-20 18:26:13 +0000734 return bitmap;
735}
736
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000737// TODO(vandebo) change pageSize to SkSize.
ctguil@chromium.org15261292011-04-29 17:54:16 +0000738SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize,
vandebo@chromium.org75f97e42011-04-11 23:24:18 +0000739 const SkMatrix& initialTransform)
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000740 : SkBitmapDevice(makeContentBitmap(contentSize, &initialTransform)),
ctguil@chromium.org15261292011-04-29 17:54:16 +0000741 fPageSize(pageSize),
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000742 fContentSize(contentSize),
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000743 fLastContentEntry(NULL),
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000744 fLastMarginContentEntry(NULL),
edisonn@google.comd9dfa182013-04-24 13:01:01 +0000745 fClipStack(NULL),
commit-bot@chromium.org8c294902013-10-21 17:14:37 +0000746 fEncoder(NULL),
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000747 fRasterDpi(72.0f) {
edisonn@google.com83d8eda2013-10-24 13:19:28 +0000748 // Just report that PDF does not supports perspective in the
749 // initial transform.
edisonn@google.comaa6c4d22013-09-19 17:36:47 +0000750 NOT_IMPLEMENTED(initialTransform.hasPerspective(), true);
751
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000752 // Skia generally uses the top left as the origin but PDF natively has the
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000753 // origin at the bottom left. This matrix corrects for that. But that only
754 // needs to be done once, we don't do it when layering.
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000755 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight));
756 fInitialTransform.preScale(SK_Scalar1, -SK_Scalar1);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000757 fInitialTransform.preConcat(initialTransform);
758
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000759 SkIRect existingClip = SkIRect::MakeWH(this->width(), this->height());
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000760 fExistingClipRegion.setRect(existingClip);
761
762 this->init();
763}
764
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000765// TODO(vandebo) change layerSize to SkSize.
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000766SkPDFDevice::SkPDFDevice(const SkISize& layerSize,
767 const SkClipStack& existingClipStack,
768 const SkRegion& existingClipRegion)
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000769 : SkBitmapDevice(makeContentBitmap(layerSize, NULL)),
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000770 fPageSize(layerSize),
771 fContentSize(layerSize),
772 fExistingClipStack(existingClipStack),
773 fExistingClipRegion(existingClipRegion),
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000774 fLastContentEntry(NULL),
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000775 fLastMarginContentEntry(NULL),
commit-bot@chromium.org8c294902013-10-21 17:14:37 +0000776 fClipStack(NULL),
777 fEncoder(NULL),
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000778 fRasterDpi(72.0f) {
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000779 fInitialTransform.reset();
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000780 this->init();
781}
782
783SkPDFDevice::~SkPDFDevice() {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000784 this->cleanUp(true);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000785}
786
787void SkPDFDevice::init() {
reed@google.com2a006c12012-09-19 17:05:55 +0000788 fAnnotations = NULL;
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000789 fResourceDict = NULL;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000790 fContentEntries.free();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000791 fLastContentEntry = NULL;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000792 fMarginContentEntries.free();
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000793 fLastMarginContentEntry = NULL;
vandebo@chromium.org98594282011-07-25 22:34:12 +0000794 fDrawingArea = kContent_DrawingArea;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000795 if (fFontGlyphUsage.get() == NULL) {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000796 fFontGlyphUsage.reset(new SkPDFGlyphSetMap());
797 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000798}
799
vandebo@chromium.org98594282011-07-25 22:34:12 +0000800void SkPDFDevice::cleanUp(bool clearFontUsage) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000801 fGraphicStateResources.unrefAll();
802 fXObjectResources.unrefAll();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000803 fFontResources.unrefAll();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +0000804 fShaderResources.unrefAll();
reed@google.com2a006c12012-09-19 17:05:55 +0000805 SkSafeUnref(fAnnotations);
reed@google.comfc641d02012-09-20 17:52:20 +0000806 SkSafeUnref(fResourceDict);
epoger@google.comb58772f2013-03-08 09:09:10 +0000807 fNamedDestinations.deleteAll();
reed@google.com2a006c12012-09-19 17:05:55 +0000808
vandebo@chromium.org98594282011-07-25 22:34:12 +0000809 if (clearFontUsage) {
810 fFontGlyphUsage->reset();
811 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000812}
813
reed@google.com982cb872011-12-07 18:34:08 +0000814uint32_t SkPDFDevice::getDeviceCapabilities() {
815 return kVector_Capability;
816}
817
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000818void SkPDFDevice::clear(SkColor color) {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000819 this->cleanUp(true);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000820 this->init();
821
822 SkPaint paint;
823 paint.setColor(color);
824 paint.setStyle(SkPaint::kFill_Style);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000825 SkMatrix identity;
826 identity.reset();
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000827 ScopedContentEntry content(this, &fExistingClipStack, fExistingClipRegion,
828 identity, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000829 internalDrawPaint(paint, content.entry());
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000830}
831
832void SkPDFDevice::drawPaint(const SkDraw& d, const SkPaint& paint) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000833 SkPaint newPaint = paint;
834 newPaint.setStyle(SkPaint::kFill_Style);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000835 ScopedContentEntry content(this, d, newPaint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000836 internalDrawPaint(newPaint, content.entry());
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000837}
838
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000839void SkPDFDevice::internalDrawPaint(const SkPaint& paint,
840 ContentEntry* contentEntry) {
841 if (!contentEntry) {
842 return;
843 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000844 SkRect bbox = SkRect::MakeWH(SkIntToScalar(this->width()),
845 SkIntToScalar(this->height()));
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000846 SkMatrix inverse;
commit-bot@chromium.orgd2cfa742013-09-20 18:58:30 +0000847 if (!contentEntry->fState.fMatrix.invert(&inverse)) {
vandebo@chromium.org386dfc02012-04-17 22:31:52 +0000848 return;
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000849 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000850 inverse.mapRect(&bbox);
851
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000852 SkPDFUtils::AppendRectangle(bbox, &contentEntry->fContent);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000853 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000854 &contentEntry->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000855}
856
857void SkPDFDevice::drawPoints(const SkDraw& d, SkCanvas::PointMode mode,
858 size_t count, const SkPoint* points,
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000859 const SkPaint& passedPaint) {
860 if (count == 0) {
861 return;
862 }
863
epoger@google.comb58772f2013-03-08 09:09:10 +0000864 if (handlePointAnnotation(points, count, *d.fMatrix, passedPaint)) {
865 return;
866 }
867
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000868 // SkDraw::drawPoints converts to multiple calls to fDevice->drawPath.
869 // We only use this when there's a path effect because of the overhead
870 // of multiple calls to setUpContentEntry it causes.
871 if (passedPaint.getPathEffect()) {
872 if (d.fClip->isEmpty()) {
873 return;
874 }
875 SkDraw pointDraw(d);
876 pointDraw.fDevice = this;
877 pointDraw.drawPoints(mode, count, points, passedPaint, true);
878 return;
879 }
880
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000881 const SkPaint* paint = &passedPaint;
882 SkPaint modifiedPaint;
883
884 if (mode == SkCanvas::kPoints_PointMode &&
885 paint->getStrokeCap() != SkPaint::kRound_Cap) {
886 modifiedPaint = *paint;
887 paint = &modifiedPaint;
888 if (paint->getStrokeWidth()) {
889 // PDF won't draw a single point with square/butt caps because the
890 // orientation is ambiguous. Draw a rectangle instead.
891 modifiedPaint.setStyle(SkPaint::kFill_Style);
892 SkScalar strokeWidth = paint->getStrokeWidth();
893 SkScalar halfStroke = SkScalarHalf(strokeWidth);
894 for (size_t i = 0; i < count; i++) {
895 SkRect r = SkRect::MakeXYWH(points[i].fX, points[i].fY, 0, 0);
896 r.inset(-halfStroke, -halfStroke);
897 drawRect(d, r, modifiedPaint);
898 }
899 return;
900 } else {
901 modifiedPaint.setStrokeCap(SkPaint::kRound_Cap);
902 }
903 }
904
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000905 ScopedContentEntry content(this, d, *paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000906 if (!content.entry()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000907 return;
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +0000908 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000909
910 switch (mode) {
911 case SkCanvas::kPolygon_PointMode:
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000912 SkPDFUtils::MoveTo(points[0].fX, points[0].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000913 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000914 for (size_t i = 1; i < count; i++) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000915 SkPDFUtils::AppendLine(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000916 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000917 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000918 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000919 break;
920 case SkCanvas::kLines_PointMode:
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000921 for (size_t i = 0; i < count/2; i++) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000922 SkPDFUtils::MoveTo(points[i * 2].fX, points[i * 2].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000923 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000924 SkPDFUtils::AppendLine(points[i * 2 + 1].fX,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000925 points[i * 2 + 1].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000926 &content.entry()->fContent);
927 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000928 }
929 break;
930 case SkCanvas::kPoints_PointMode:
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000931 SkASSERT(paint->getStrokeCap() == SkPaint::kRound_Cap);
932 for (size_t i = 0; i < count; i++) {
933 SkPDFUtils::MoveTo(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000934 &content.entry()->fContent);
935 SkPDFUtils::ClosePath(&content.entry()->fContent);
936 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000937 }
938 break;
939 default:
940 SkASSERT(false);
941 }
942}
943
commit-bot@chromium.org969fd6a2013-05-14 18:16:40 +0000944void SkPDFDevice::drawRect(const SkDraw& d, const SkRect& rect,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000945 const SkPaint& paint) {
commit-bot@chromium.org969fd6a2013-05-14 18:16:40 +0000946 SkRect r = rect;
947 r.sort();
948
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000949 if (paint.getPathEffect()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000950 if (d.fClip->isEmpty()) {
951 return;
952 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000953 SkPath path;
954 path.addRect(r);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000955 drawPath(d, path, paint, NULL, true);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000956 return;
957 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000958
epoger@google.comb58772f2013-03-08 09:09:10 +0000959 if (handleRectAnnotation(r, *d.fMatrix, paint)) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +0000960 return;
961 }
962
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000963 ScopedContentEntry content(this, d, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000964 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000965 return;
966 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000967 SkPDFUtils::AppendRectangle(r, &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000968 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000969 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000970}
971
scroggo@google.coma8e33a92013-11-08 18:02:53 +0000972void SkPDFDevice::drawRRect(const SkDraw& draw, const SkRRect& rrect,
973 const SkPaint& paint) {
974 SkPath path;
975 path.addRRect(rrect);
976 this->drawPath(draw, path, paint, NULL, true);
977}
978
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000979void SkPDFDevice::drawPath(const SkDraw& d, const SkPath& origPath,
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000980 const SkPaint& paint, const SkMatrix* prePathMatrix,
981 bool pathIsMutable) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000982 SkPath modifiedPath;
983 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
984
985 SkMatrix matrix = *d.fMatrix;
986 if (prePathMatrix) {
987 if (paint.getPathEffect() || paint.getStyle() != SkPaint::kFill_Style) {
988 if (!pathIsMutable) {
989 pathPtr = &modifiedPath;
990 pathIsMutable = true;
991 }
992 origPath.transform(*prePathMatrix, pathPtr);
993 } else {
994 if (!matrix.preConcat(*prePathMatrix)) {
edisonn@google.comaa6c4d22013-09-19 17:36:47 +0000995 // TODO(edisonn): report somehow why we failed?
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000996 return;
997 }
998 }
999 }
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +00001000
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +00001001 if (paint.getPathEffect()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001002 if (d.fClip->isEmpty()) {
1003 return;
1004 }
vandebo@chromium.orgff390322011-05-17 18:58:44 +00001005 if (!pathIsMutable) {
1006 pathPtr = &modifiedPath;
1007 pathIsMutable = true;
1008 }
1009 bool fill = paint.getFillPath(origPath, pathPtr);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +00001010
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001011 SkPaint noEffectPaint(paint);
vandebo@chromium.orgff390322011-05-17 18:58:44 +00001012 noEffectPaint.setPathEffect(NULL);
1013 if (fill) {
1014 noEffectPaint.setStyle(SkPaint::kFill_Style);
1015 } else {
1016 noEffectPaint.setStyle(SkPaint::kStroke_Style);
1017 noEffectPaint.setStrokeWidth(0);
1018 }
1019 drawPath(d, *pathPtr, noEffectPaint, NULL, true);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +00001020 return;
1021 }
vandebo@chromium.orgff390322011-05-17 18:58:44 +00001022
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001023#ifdef SK_PDF_USE_PATHOPS
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001024 if (handleInversePath(d, origPath, paint, pathIsMutable, prePathMatrix)) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001025 return;
1026 }
1027#endif
1028
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001029 if (handleRectAnnotation(pathPtr->getBounds(), matrix, paint)) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001030 return;
1031 }
1032
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001033 ScopedContentEntry content(this, d.fClipStack, *d.fClip, matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001034 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001035 return;
1036 }
vandebo@chromium.org683001c2012-05-09 17:17:51 +00001037 SkPDFUtils::EmitPath(*pathPtr, paint.getStyle(),
1038 &content.entry()->fContent);
vandebo@chromium.orgff390322011-05-17 18:58:44 +00001039 SkPDFUtils::PaintPath(paint.getStyle(), pathPtr->getFillType(),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001040 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001041}
1042
edisonn@google.com2ae67e72013-02-12 01:06:38 +00001043void SkPDFDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap,
1044 const SkRect* src, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +00001045 const SkPaint& paint,
1046 SkCanvas::DrawBitmapRectFlags flags) {
1047 // TODO: this code path must be updated to respect the flags parameter
edisonn@google.com2ae67e72013-02-12 01:06:38 +00001048 SkMatrix matrix;
1049 SkRect bitmapBounds, tmpSrc, tmpDst;
1050 SkBitmap tmpBitmap;
1051
1052 bitmapBounds.isetWH(bitmap.width(), bitmap.height());
1053
1054 // Compute matrix from the two rectangles
1055 if (src) {
1056 tmpSrc = *src;
1057 } else {
1058 tmpSrc = bitmapBounds;
1059 }
1060 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1061
1062 const SkBitmap* bitmapPtr = &bitmap;
1063
1064 // clip the tmpSrc to the bounds of the bitmap, and recompute dstRect if
1065 // needed (if the src was clipped). No check needed if src==null.
1066 if (src) {
1067 if (!bitmapBounds.contains(*src)) {
1068 if (!tmpSrc.intersect(bitmapBounds)) {
1069 return; // nothing to draw
1070 }
1071 // recompute dst, based on the smaller tmpSrc
1072 matrix.mapRect(&tmpDst, tmpSrc);
1073 }
1074
1075 // since we may need to clamp to the borders of the src rect within
1076 // the bitmap, we extract a subset.
1077 // TODO: make sure this is handled in drawBitmap and remove from here.
1078 SkIRect srcIR;
1079 tmpSrc.roundOut(&srcIR);
1080 if (!bitmap.extractSubset(&tmpBitmap, srcIR)) {
1081 return;
1082 }
1083 bitmapPtr = &tmpBitmap;
1084
1085 // Since we did an extract, we need to adjust the matrix accordingly
1086 SkScalar dx = 0, dy = 0;
1087 if (srcIR.fLeft > 0) {
1088 dx = SkIntToScalar(srcIR.fLeft);
1089 }
1090 if (srcIR.fTop > 0) {
1091 dy = SkIntToScalar(srcIR.fTop);
1092 }
1093 if (dx || dy) {
1094 matrix.preTranslate(dx, dy);
1095 }
1096 }
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001097 this->drawBitmap(draw, *bitmapPtr, matrix, paint);
edisonn@google.com2ae67e72013-02-12 01:06:38 +00001098}
1099
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001100void SkPDFDevice::drawBitmap(const SkDraw& d, const SkBitmap& bitmap,
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001101 const SkMatrix& matrix, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001102 if (d.fClip->isEmpty()) {
1103 return;
1104 }
1105
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001106 SkMatrix transform = matrix;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001107 transform.postConcat(*d.fMatrix);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001108 this->internalDrawBitmap(transform, d.fClipStack, *d.fClip, bitmap, NULL,
1109 paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001110}
1111
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001112void SkPDFDevice::drawSprite(const SkDraw& d, const SkBitmap& bitmap,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001113 int x, int y, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001114 if (d.fClip->isEmpty()) {
1115 return;
1116 }
1117
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001118 SkMatrix matrix;
reed@google.coma6d59f62011-03-07 21:29:21 +00001119 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001120 this->internalDrawBitmap(matrix, d.fClipStack, *d.fClip, bitmap, NULL,
1121 paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001122}
1123
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001124void SkPDFDevice::drawText(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001125 SkScalar x, SkScalar y, const SkPaint& paint) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001126 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
1127 if (paint.getMaskFilter() != NULL) {
1128 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1129 // making text unreadable (e.g. same text twice when using CSS shadows).
1130 return;
1131 }
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001132 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001133 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001134 if (!content.entry()) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001135 return;
1136 }
1137
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001138 SkGlyphStorage storage(0);
1139 uint16_t* glyphIDs = NULL;
1140 size_t numGlyphs = force_glyph_encoding(paint, text, len, &storage,
1141 &glyphIDs);
1142 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001143
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001144 SkDrawCacheProc glyphCacheProc = textPaint.getDrawCacheProc();
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001145 align_text(glyphCacheProc, textPaint, glyphIDs, numGlyphs, &x, &y);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001146 content.entry()->fContent.writeText("BT\n");
1147 set_text_transform(x, y, textPaint.getTextSkewX(),
1148 &content.entry()->fContent);
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001149 size_t consumedGlyphCount = 0;
1150 while (numGlyphs > consumedGlyphCount) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001151 updateFont(textPaint, glyphIDs[consumedGlyphCount], content.entry());
1152 SkPDFFont* font = content.entry()->fState.fFont;
vandebo@chromium.org01294102011-02-28 19:52:18 +00001153 size_t availableGlyphs =
1154 font->glyphsToPDFFontEncoding(glyphIDs + consumedGlyphCount,
1155 numGlyphs - consumedGlyphCount);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001156 fFontGlyphUsage->noteGlyphUsage(font, glyphIDs + consumedGlyphCount,
1157 availableGlyphs);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001158 SkString encodedString =
reed@google.comf6c3ebd2011-07-20 17:20:28 +00001159 SkPDFString::FormatString(glyphIDs + consumedGlyphCount,
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001160 availableGlyphs, font->multiByteGlyphs());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001161 content.entry()->fContent.writeText(encodedString.c_str());
vandebo@chromium.org01294102011-02-28 19:52:18 +00001162 consumedGlyphCount += availableGlyphs;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001163 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001164 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001165 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001166}
1167
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001168void SkPDFDevice::drawPosText(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001169 const SkScalar pos[], SkScalar constY,
1170 int scalarsPerPos, const SkPaint& paint) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001171 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
1172 if (paint.getMaskFilter() != NULL) {
1173 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1174 // making text unreadable (e.g. same text twice when using CSS shadows).
1175 return;
1176 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001177 SkASSERT(1 == scalarsPerPos || 2 == scalarsPerPos);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001178 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001179 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001180 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001181 return;
1182 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001183
djsollen@google.com5df5e612013-10-03 14:42:24 +00001184#ifdef SK_BUILD_FOR_ANDROID
1185 /*
1186 * In the case that we have enabled fallback fonts on Android we need to
1187 * take the following steps to ensure that the PDF draws all characters,
1188 * regardless of their underlying font file, correctly.
1189 *
1190 * 1. Convert input into GlyphID encoding if it currently is not
1191 * 2. Iterate over the glyphIDs and identify the actual typeface that each
1192 * glyph resolves to
1193 * 3. Iterate over those typefaces and recursively call this function with
1194 * only the glyphs (and their positions) that the typeface is capable of
1195 * resolving.
1196 */
1197 if (paint.getPaintOptionsAndroid().isUsingFontFallbacks()) {
1198 uint16_t* glyphIDs = NULL;
1199 SkGlyphStorage tmpStorage(0);
1200 size_t numGlyphs = 0;
1201
1202 // convert to glyphIDs
1203 if (paint.getTextEncoding() == SkPaint::kGlyphID_TextEncoding) {
1204 numGlyphs = len / 2;
1205 glyphIDs = reinterpret_cast<uint16_t*>(const_cast<void*>(text));
1206 } else {
1207 numGlyphs = paint.textToGlyphs(text, len, NULL);
1208 tmpStorage.reset(numGlyphs);
1209 paint.textToGlyphs(text, len, tmpStorage.get());
1210 glyphIDs = tmpStorage.get();
1211 }
1212
1213 // if no typeface is provided in the paint get the default
1214 SkAutoTUnref<SkTypeface> origFace(SkSafeRef(paint.getTypeface()));
1215 if (NULL == origFace.get()) {
1216 origFace.reset(SkTypeface::RefDefault());
1217 }
1218 const uint16_t origGlyphCount = origFace->countGlyphs();
1219
1220 // keep a list of the already visited typefaces and some data about them
1221 SkTDArray<TypefaceFallbackData> visitedTypefaces;
1222
1223 // find all the typefaces needed to resolve this run of text
1224 bool usesOriginalTypeface = false;
1225 for (uint16_t x = 0; x < numGlyphs; ++x) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001226 // optimization that checks to see if original typeface can resolve
1227 // the glyph
djsollen@google.com5df5e612013-10-03 14:42:24 +00001228 if (glyphIDs[x] < origGlyphCount) {
1229 usesOriginalTypeface = true;
1230 continue;
1231 }
1232
1233 // find the fallback typeface that supports this glyph
1234 TypefaceFallbackData data;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001235 data.typeface =
1236 SkGetTypefaceForGlyphID(glyphIDs[x], origFace.get(),
1237 paint.getPaintOptionsAndroid(),
1238 &data.lowerBounds,
1239 &data.upperBounds);
djsollen@google.com5df5e612013-10-03 14:42:24 +00001240 // add the typeface and its data if we don't have it
1241 if (data.typeface && !visitedTypefaces.contains(data)) {
1242 visitedTypefaces.push(data);
1243 }
1244 }
1245
1246 // if the original font was used then add it to the list as well
1247 if (usesOriginalTypeface) {
1248 TypefaceFallbackData* data = visitedTypefaces.push();
1249 data->typeface = origFace.get();
1250 data->lowerBounds = 0;
1251 data->upperBounds = origGlyphCount;
1252 }
1253
1254 // keep a scratch glyph and pos storage
1255 SkAutoTMalloc<SkScalar> posStorage(len * scalarsPerPos);
1256 SkScalar* tmpPos = posStorage.get();
1257 SkGlyphStorage glyphStorage(numGlyphs);
1258 uint16_t* tmpGlyphIDs = glyphStorage.get();
1259
1260 // loop through all the valid typefaces, trim the glyphs to only those
1261 // resolved by the typeface, and then draw that run of glyphs
1262 for (int x = 0; x < visitedTypefaces.count(); ++x) {
1263 const TypefaceFallbackData& data = visitedTypefaces[x];
1264
1265 int tmpGlyphCount = 0;
1266 for (uint16_t y = 0; y < numGlyphs; ++y) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001267 if (glyphIDs[y] >= data.lowerBounds &&
1268 glyphIDs[y] < data.upperBounds) {
djsollen@google.com5df5e612013-10-03 14:42:24 +00001269 tmpGlyphIDs[tmpGlyphCount] = glyphIDs[y] - data.lowerBounds;
1270 memcpy(&(tmpPos[tmpGlyphCount * scalarsPerPos]),
1271 &(pos[y * scalarsPerPos]),
1272 scalarsPerPos * sizeof(SkScalar));
1273 tmpGlyphCount++;
1274 }
1275 }
1276
1277 // recursively call this function with the right typeface
1278 SkPaint tmpPaint = paint;
1279 tmpPaint.setTypeface(data.typeface);
1280 tmpPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
1281
1282 // turn off fallback chaining
1283 SkPaintOptionsAndroid paintOpts = tmpPaint.getPaintOptionsAndroid();
1284 paintOpts.setUseFontFallbacks(false);
1285 tmpPaint.setPaintOptionsAndroid(paintOpts);
1286
1287 this->drawPosText(d, tmpGlyphIDs, tmpGlyphCount * 2, tmpPos, constY,
1288 scalarsPerPos, tmpPaint);
1289 }
1290 return;
1291 }
1292#endif
1293
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001294 SkGlyphStorage storage(0);
1295 uint16_t* glyphIDs = NULL;
1296 size_t numGlyphs = force_glyph_encoding(paint, text, len, &storage,
1297 &glyphIDs);
1298 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001299
1300 SkDrawCacheProc glyphCacheProc = textPaint.getDrawCacheProc();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001301 content.entry()->fContent.writeText("BT\n");
1302 updateFont(textPaint, glyphIDs[0], content.entry());
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) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001307 updateFont(textPaint, glyphIDs[i], content.entry());
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001308 i--;
1309 continue;
1310 }
vandebo@chromium.org98594282011-07-25 22:34:12 +00001311 fFontGlyphUsage->noteGlyphUsage(font, &encodedValue, 1);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001312 SkScalar x = pos[i * scalarsPerPos];
1313 SkScalar y = scalarsPerPos == 1 ? constY : pos[i * scalarsPerPos + 1];
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001314 align_text(glyphCacheProc, textPaint, glyphIDs + i, 1, &x, &y);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001315 set_text_transform(x, y, textPaint.getTextSkewX(),
1316 &content.entry()->fContent);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001317 SkString encodedString =
reed@google.comf6c3ebd2011-07-20 17:20:28 +00001318 SkPDFString::FormatString(&encodedValue, 1,
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001319 font->multiByteGlyphs());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001320 content.entry()->fContent.writeText(encodedString.c_str());
1321 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001322 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001323 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001324}
1325
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001326void SkPDFDevice::drawTextOnPath(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001327 const SkPath& path, const SkMatrix* matrix,
1328 const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001329 if (d.fClip->isEmpty()) {
1330 return;
1331 }
vandebo@chromium.org290e3bb2011-11-08 23:42:53 +00001332 d.drawTextOnPath((const char*)text, len, path, matrix, paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001333}
1334
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001335void SkPDFDevice::drawVertices(const SkDraw& d, SkCanvas::VertexMode,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001336 int vertexCount, const SkPoint verts[],
1337 const SkPoint texs[], const SkColor colors[],
1338 SkXfermode* xmode, const uint16_t indices[],
1339 int indexCount, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001340 if (d.fClip->isEmpty()) {
1341 return;
1342 }
reed@google.com85e143c2013-12-30 15:51:25 +00001343 // TODO: implement drawVertices
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001344}
1345
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001346void SkPDFDevice::drawDevice(const SkDraw& d, SkBaseDevice* device,
1347 int x, int y, const SkPaint& paint) {
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001348 if ((device->getDeviceCapabilities() & kVector_Capability) == 0) {
1349 // If we somehow get a raster device, do what our parent would do.
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00001350 INHERITED::drawDevice(d, device, x, y, paint);
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001351 return;
1352 }
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001353
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001354 // Assume that a vector capable device means that it's a PDF Device.
1355 SkPDFDevice* pdfDevice = static_cast<SkPDFDevice*>(device);
ctguil@chromium.orgf4ff39c2011-05-24 19:55:05 +00001356 if (pdfDevice->isContentEmpty()) {
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001357 return;
1358 }
1359
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001360 SkMatrix matrix;
reed@google.coma6d59f62011-03-07 21:29:21 +00001361 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001362 ScopedContentEntry content(this, d.fClipStack, *d.fClip, matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001363 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001364 return;
1365 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001366 if (content.needShape()) {
1367 SkPath shape;
1368 shape.addRect(SkRect::MakeXYWH(SkIntToScalar(x), SkIntToScalar(y),
vandebo@chromium.orgfd3c8c22013-10-30 21:00:47 +00001369 SkIntToScalar(device->width()),
1370 SkIntToScalar(device->height())));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001371 content.setShape(shape);
1372 }
1373 if (!content.needSource()) {
1374 return;
1375 }
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001376
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001377 SkAutoTUnref<SkPDFFormXObject> xObject(new SkPDFFormXObject(pdfDevice));
1378 SkPDFUtils::DrawFormXObject(this->addXObjectResource(xObject.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001379 &content.entry()->fContent);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001380
1381 // Merge glyph sets from the drawn device.
1382 fFontGlyphUsage->merge(pdfDevice->getFontGlyphUsage());
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001383}
1384
robertphillips@google.com40a1ae42012-07-13 15:36:15 +00001385void SkPDFDevice::onAttachToCanvas(SkCanvas* canvas) {
1386 INHERITED::onAttachToCanvas(canvas);
1387
1388 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
1389 fClipStack = canvas->getClipStack();
1390}
1391
1392void SkPDFDevice::onDetachFromCanvas() {
1393 INHERITED::onDetachFromCanvas();
1394
1395 fClipStack = NULL;
1396}
1397
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001398ContentEntry* SkPDFDevice::getLastContentEntry() {
1399 if (fDrawingArea == kContent_DrawingArea) {
1400 return fLastContentEntry;
1401 } else {
1402 return fLastMarginContentEntry;
1403 }
1404}
1405
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001406SkAutoTDelete<ContentEntry>* SkPDFDevice::getContentEntries() {
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001407 if (fDrawingArea == kContent_DrawingArea) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001408 return &fContentEntries;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001409 } else {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001410 return &fMarginContentEntries;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001411 }
1412}
1413
1414void SkPDFDevice::setLastContentEntry(ContentEntry* contentEntry) {
1415 if (fDrawingArea == kContent_DrawingArea) {
1416 fLastContentEntry = contentEntry;
1417 } else {
1418 fLastMarginContentEntry = contentEntry;
1419 }
1420}
1421
1422void SkPDFDevice::setDrawingArea(DrawingArea drawingArea) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001423 // A ScopedContentEntry only exists during the course of a draw call, so
1424 // this can't be called while a ScopedContentEntry exists.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001425 fDrawingArea = drawingArea;
1426}
1427
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001428SkPDFResourceDict* SkPDFDevice::getResourceDict() {
reed@google.comfc641d02012-09-20 17:52:20 +00001429 if (NULL == fResourceDict) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001430 fResourceDict = SkNEW(SkPDFResourceDict);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001431
1432 if (fGraphicStateResources.count()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001433 for (int i = 0; i < fGraphicStateResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001434 fResourceDict->insertResourceAsReference(
1435 SkPDFResourceDict::kExtGState_ResourceType,
1436 i, fGraphicStateResources[i]);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001437 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001438 }
1439
1440 if (fXObjectResources.count()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001441 for (int i = 0; i < fXObjectResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001442 fResourceDict->insertResourceAsReference(
1443 SkPDFResourceDict::kXObject_ResourceType,
1444 i, fXObjectResources[i]);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001445 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001446 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001447
1448 if (fFontResources.count()) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001449 for (int i = 0; i < fFontResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001450 fResourceDict->insertResourceAsReference(
1451 SkPDFResourceDict::kFont_ResourceType,
1452 i, fFontResources[i]);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001453 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001454 }
1455
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001456 if (fShaderResources.count()) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001457 SkAutoTUnref<SkPDFDict> patterns(new SkPDFDict());
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001458 for (int i = 0; i < fShaderResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001459 fResourceDict->insertResourceAsReference(
1460 SkPDFResourceDict::kPattern_ResourceType,
1461 i, fShaderResources[i]);
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001462 }
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001463 }
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001464 }
1465 return fResourceDict;
1466}
1467
vandebo@chromium.orgf0ec2662011-05-29 05:55:42 +00001468const SkTDArray<SkPDFFont*>& SkPDFDevice::getFontResources() const {
1469 return fFontResources;
1470}
1471
reed@google.com2a006c12012-09-19 17:05:55 +00001472SkPDFArray* SkPDFDevice::copyMediaBox() const {
1473 // should this be a singleton?
1474 SkAutoTUnref<SkPDFInt> zero(SkNEW_ARGS(SkPDFInt, (0)));
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +00001475
reed@google.com2a006c12012-09-19 17:05:55 +00001476 SkPDFArray* mediaBox = SkNEW(SkPDFArray);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001477 mediaBox->reserve(4);
1478 mediaBox->append(zero.get());
1479 mediaBox->append(zero.get());
reed@google.comc789cf12011-07-20 12:14:33 +00001480 mediaBox->appendInt(fPageSize.fWidth);
1481 mediaBox->appendInt(fPageSize.fHeight);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001482 return mediaBox;
1483}
1484
vandebo@chromium.orgc2a9b7f2011-02-24 23:22:30 +00001485SkStream* SkPDFDevice::content() const {
reed@google.com5667afc2011-06-27 14:42:15 +00001486 SkMemoryStream* result = new SkMemoryStream;
1487 result->setData(this->copyContentToData())->unref();
1488 return result;
1489}
1490
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001491void SkPDFDevice::copyContentEntriesToData(ContentEntry* entry,
1492 SkWStream* data) const {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001493 // TODO(ctguil): For margins, I'm not sure fExistingClipStack/Region is the
1494 // right thing to pass here.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001495 GraphicStackState gsState(fExistingClipStack, fExistingClipRegion, data);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001496 while (entry != NULL) {
vandebo@chromium.org663515b2012-01-05 18:45:27 +00001497 SkPoint translation;
1498 translation.iset(this->getOrigin());
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001499 translation.negate();
1500 gsState.updateClip(entry->fState.fClipStack, entry->fState.fClipRegion,
1501 translation);
1502 gsState.updateMatrix(entry->fState.fMatrix);
1503 gsState.updateDrawingState(entry->fState);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001504
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001505 SkAutoDataUnref copy(entry->fContent.copyToData());
robertphillips@google.com59f46b82012-07-10 17:30:58 +00001506 data->write(copy->data(), copy->size());
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001507 entry = entry->fNext.get();
1508 }
1509 gsState.drainStack();
1510}
1511
reed@google.com5667afc2011-06-27 14:42:15 +00001512SkData* SkPDFDevice::copyContentToData() const {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001513 SkDynamicMemoryWStream data;
1514 if (fInitialTransform.getType() != SkMatrix::kIdentity_Mask) {
1515 SkPDFUtils::AppendTransform(fInitialTransform, &data);
vandebo@chromium.orgc2a9b7f2011-02-24 23:22:30 +00001516 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001517
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001518 // TODO(aayushkumar): Apply clip along the margins. Currently, webkit
1519 // colors the contentArea white before it starts drawing into it and
1520 // that currently acts as our clip.
1521 // Also, think about adding a transform here (or assume that the values
1522 // sent across account for that)
1523 SkPDFDevice::copyContentEntriesToData(fMarginContentEntries.get(), &data);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001524
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001525 // If the content area is the entire page, then we don't need to clip
1526 // the content area (PDF area clips to the page size). Otherwise,
1527 // we have to clip to the content area; we've already applied the
1528 // initial transform, so just clip to the device size.
1529 if (fPageSize != fContentSize) {
robertphillips@google.com8637a362012-04-10 18:32:35 +00001530 SkRect r = SkRect::MakeWH(SkIntToScalar(this->width()),
1531 SkIntToScalar(this->height()));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001532 emit_clip(NULL, &r, &data);
1533 }
vandebo@chromium.org98594282011-07-25 22:34:12 +00001534
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001535 SkPDFDevice::copyContentEntriesToData(fContentEntries.get(), &data);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001536
reed@google.com5667afc2011-06-27 14:42:15 +00001537 // potentially we could cache this SkData, and only rebuild it if we
1538 // see that our state has changed.
1539 return data.copyToData();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001540}
1541
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +00001542#ifdef SK_PDF_USE_PATHOPS
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001543/* Draws an inverse filled path by using Path Ops to compute the positive
1544 * inverse using the current clip as the inverse bounds.
1545 * Return true if this was an inverse path and was properly handled,
1546 * otherwise returns false and the normal drawing routine should continue,
1547 * either as a (incorrect) fallback or because the path was not inverse
1548 * in the first place.
1549 */
1550bool SkPDFDevice::handleInversePath(const SkDraw& d, const SkPath& origPath,
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001551 const SkPaint& paint, bool pathIsMutable,
1552 const SkMatrix* prePathMatrix) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001553 if (!origPath.isInverseFillType()) {
1554 return false;
1555 }
1556
1557 if (d.fClip->isEmpty()) {
1558 return false;
1559 }
1560
1561 SkPath modifiedPath;
1562 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
1563 SkPaint noInversePaint(paint);
1564
1565 // Merge stroking operations into final path.
1566 if (SkPaint::kStroke_Style == paint.getStyle() ||
1567 SkPaint::kStrokeAndFill_Style == paint.getStyle()) {
1568 bool doFillPath = paint.getFillPath(origPath, &modifiedPath);
1569 if (doFillPath) {
1570 noInversePaint.setStyle(SkPaint::kFill_Style);
1571 noInversePaint.setStrokeWidth(0);
1572 pathPtr = &modifiedPath;
1573 } else {
1574 // To be consistent with the raster output, hairline strokes
1575 // are rendered as non-inverted.
1576 modifiedPath.toggleInverseFillType();
1577 drawPath(d, modifiedPath, paint, NULL, true);
1578 return true;
1579 }
1580 }
1581
1582 // Get bounds of clip in current transform space
1583 // (clip bounds are given in device space).
1584 SkRect bounds;
1585 SkMatrix transformInverse;
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001586 SkMatrix totalMatrix = *d.fMatrix;
1587 if (prePathMatrix) {
1588 totalMatrix.preConcat(*prePathMatrix);
1589 }
1590 if (!totalMatrix.invert(&transformInverse)) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001591 return false;
1592 }
1593 bounds.set(d.fClip->getBounds());
1594 transformInverse.mapRect(&bounds);
1595
1596 // Extend the bounds by the line width (plus some padding)
1597 // so the edge doesn't cause a visible stroke.
1598 bounds.outset(paint.getStrokeWidth() + SK_Scalar1,
1599 paint.getStrokeWidth() + SK_Scalar1);
1600
1601 if (!calculate_inverse_path(bounds, *pathPtr, &modifiedPath)) {
1602 return false;
1603 }
1604
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001605 drawPath(d, modifiedPath, noInversePaint, prePathMatrix, true);
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001606 return true;
1607}
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +00001608#endif
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001609
epoger@google.comb58772f2013-03-08 09:09:10 +00001610bool SkPDFDevice::handleRectAnnotation(const SkRect& r, const SkMatrix& matrix,
1611 const SkPaint& p) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001612 SkAnnotation* annotationInfo = p.getAnnotation();
1613 if (!annotationInfo) {
1614 return false;
1615 }
1616 SkData* urlData = annotationInfo->find(SkAnnotationKeys::URL_Key());
epoger@google.comb58772f2013-03-08 09:09:10 +00001617 if (urlData) {
1618 handleLinkToURL(urlData, r, matrix);
reed@google.com44699382013-10-31 17:28:30 +00001619 return p.getAnnotation() != NULL;
epoger@google.comb58772f2013-03-08 09:09:10 +00001620 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001621 SkData* linkToName = annotationInfo->find(
1622 SkAnnotationKeys::Link_Named_Dest_Key());
epoger@google.comb58772f2013-03-08 09:09:10 +00001623 if (linkToName) {
1624 handleLinkToNamedDest(linkToName, r, matrix);
reed@google.com44699382013-10-31 17:28:30 +00001625 return p.getAnnotation() != NULL;
epoger@google.comb58772f2013-03-08 09:09:10 +00001626 }
1627 return false;
1628}
1629
1630bool SkPDFDevice::handlePointAnnotation(const SkPoint* points, size_t count,
1631 const SkMatrix& matrix,
1632 const SkPaint& paint) {
1633 SkAnnotation* annotationInfo = paint.getAnnotation();
1634 if (!annotationInfo) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001635 return false;
1636 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001637 SkData* nameData = annotationInfo->find(
1638 SkAnnotationKeys::Define_Named_Dest_Key());
epoger@google.comb58772f2013-03-08 09:09:10 +00001639 if (nameData) {
1640 for (size_t i = 0; i < count; i++) {
1641 defineNamedDestination(nameData, points[i], matrix);
1642 }
reed@google.com44699382013-10-31 17:28:30 +00001643 return paint.getAnnotation() != NULL;
epoger@google.comb58772f2013-03-08 09:09:10 +00001644 }
1645 return false;
1646}
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001647
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001648SkPDFDict* SkPDFDevice::createLinkAnnotation(const SkRect& r,
1649 const SkMatrix& matrix) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001650 SkMatrix transform = matrix;
1651 transform.postConcat(fInitialTransform);
1652 SkRect translatedRect;
1653 transform.mapRect(&translatedRect, r);
1654
reed@google.com2a006c12012-09-19 17:05:55 +00001655 if (NULL == fAnnotations) {
1656 fAnnotations = SkNEW(SkPDFArray);
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001657 }
epoger@google.comb58772f2013-03-08 09:09:10 +00001658 SkPDFDict* annotation(SkNEW_ARGS(SkPDFDict, ("Annot")));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001659 annotation->insertName("Subtype", "Link");
epoger@google.comb58772f2013-03-08 09:09:10 +00001660 fAnnotations->append(annotation);
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001661
epoger@google.comb58772f2013-03-08 09:09:10 +00001662 SkAutoTUnref<SkPDFArray> border(SkNEW(SkPDFArray));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001663 border->reserve(3);
1664 border->appendInt(0); // Horizontal corner radius.
1665 border->appendInt(0); // Vertical corner radius.
1666 border->appendInt(0); // Width, 0 = no border.
1667 annotation->insert("Border", border.get());
1668
epoger@google.comb58772f2013-03-08 09:09:10 +00001669 SkAutoTUnref<SkPDFArray> rect(SkNEW(SkPDFArray));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001670 rect->reserve(4);
1671 rect->appendScalar(translatedRect.fLeft);
1672 rect->appendScalar(translatedRect.fTop);
1673 rect->appendScalar(translatedRect.fRight);
1674 rect->appendScalar(translatedRect.fBottom);
1675 annotation->insert("Rect", rect.get());
1676
epoger@google.comb58772f2013-03-08 09:09:10 +00001677 return annotation;
1678}
epoger@google.com1cad8982013-03-06 00:05:13 +00001679
epoger@google.comb58772f2013-03-08 09:09:10 +00001680void SkPDFDevice::handleLinkToURL(SkData* urlData, const SkRect& r,
1681 const SkMatrix& matrix) {
1682 SkAutoTUnref<SkPDFDict> annotation(createLinkAnnotation(r, matrix));
1683
1684 SkString url(static_cast<const char *>(urlData->data()),
1685 urlData->size() - 1);
1686 SkAutoTUnref<SkPDFDict> action(SkNEW_ARGS(SkPDFDict, ("Action")));
1687 action->insertName("S", "URI");
1688 action->insert("URI", SkNEW_ARGS(SkPDFString, (url)))->unref();
1689 annotation->insert("A", action.get());
1690}
1691
1692void SkPDFDevice::handleLinkToNamedDest(SkData* nameData, const SkRect& r,
1693 const SkMatrix& matrix) {
1694 SkAutoTUnref<SkPDFDict> annotation(createLinkAnnotation(r, matrix));
1695 SkString name(static_cast<const char *>(nameData->data()),
1696 nameData->size() - 1);
1697 annotation->insert("Dest", SkNEW_ARGS(SkPDFName, (name)))->unref();
1698}
1699
1700struct NamedDestination {
1701 const SkData* nameData;
1702 SkPoint point;
1703
1704 NamedDestination(const SkData* nameData, const SkPoint& point)
1705 : nameData(nameData), point(point) {
1706 nameData->ref();
1707 }
1708
1709 ~NamedDestination() {
1710 nameData->unref();
1711 }
1712};
1713
1714void SkPDFDevice::defineNamedDestination(SkData* nameData, const SkPoint& point,
1715 const SkMatrix& matrix) {
1716 SkMatrix transform = matrix;
1717 transform.postConcat(fInitialTransform);
1718 SkPoint translatedPoint;
1719 transform.mapXY(point.x(), point.y(), &translatedPoint);
1720 fNamedDestinations.push(
1721 SkNEW_ARGS(NamedDestination, (nameData, translatedPoint)));
1722}
1723
1724void SkPDFDevice::appendDestinations(SkPDFDict* dict, SkPDFObject* page) {
1725 int nDest = fNamedDestinations.count();
1726 for (int i = 0; i < nDest; i++) {
1727 NamedDestination* dest = fNamedDestinations[i];
1728 SkAutoTUnref<SkPDFArray> pdfDest(SkNEW(SkPDFArray));
1729 pdfDest->reserve(5);
1730 pdfDest->append(SkNEW_ARGS(SkPDFObjRef, (page)))->unref();
1731 pdfDest->appendName("XYZ");
1732 pdfDest->appendScalar(dest->point.x());
1733 pdfDest->appendScalar(dest->point.y());
1734 pdfDest->appendInt(0); // Leave zoom unchanged
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001735 dict->insert(static_cast<const char *>(dest->nameData->data()),
1736 pdfDest);
epoger@google.comb58772f2013-03-08 09:09:10 +00001737 }
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001738}
1739
reed@google.comfc641d02012-09-20 17:52:20 +00001740SkPDFFormXObject* SkPDFDevice::createFormXObjectFromDevice() {
1741 SkPDFFormXObject* xobject = SkNEW_ARGS(SkPDFFormXObject, (this));
vandebo@chromium.org98594282011-07-25 22:34:12 +00001742 // We always draw the form xobjects that we create back into the device, so
1743 // we simply preserve the font usage instead of pulling it out and merging
1744 // it back in later.
1745 cleanUp(false); // Reset this device to have no content.
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001746 init();
reed@google.comfc641d02012-09-20 17:52:20 +00001747 return xobject;
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001748}
1749
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001750void SkPDFDevice::drawFormXObjectWithMask(int xObjectIndex,
1751 SkPDFFormXObject* mask,
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001752 const SkClipStack* clipStack,
1753 const SkRegion& clipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001754 SkXfermode::Mode mode,
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001755 bool invertClip) {
1756 if (clipRegion.isEmpty() && !invertClip) {
1757 return;
1758 }
1759
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001760 SkAutoTUnref<SkPDFGraphicState> sMaskGS(
1761 SkPDFGraphicState::GetSMaskGraphicState(
1762 mask, invertClip, SkPDFGraphicState::kAlpha_SMaskMode));
1763
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001764 SkMatrix identity;
1765 identity.reset();
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001766 SkPaint paint;
1767 paint.setXfermodeMode(mode);
1768 ScopedContentEntry content(this, clipStack, clipRegion, identity, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001769 if (!content.entry()) {
1770 return;
1771 }
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001772 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001773 &content.entry()->fContent);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001774 SkPDFUtils::DrawFormXObject(xObjectIndex, &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001775
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001776 sMaskGS.reset(SkPDFGraphicState::GetNoSMaskGraphicState());
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001777 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001778 &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001779}
1780
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001781ContentEntry* SkPDFDevice::setUpContentEntry(const SkClipStack* clipStack,
1782 const SkRegion& clipRegion,
1783 const SkMatrix& matrix,
1784 const SkPaint& paint,
1785 bool hasText,
reed@google.comfc641d02012-09-20 17:52:20 +00001786 SkPDFFormXObject** dst) {
1787 *dst = NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001788 if (clipRegion.isEmpty()) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001789 return NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001790 }
1791
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001792 // The clip stack can come from an SkDraw where it is technically optional.
1793 SkClipStack synthesizedClipStack;
1794 if (clipStack == NULL) {
1795 if (clipRegion == fExistingClipRegion) {
1796 clipStack = &fExistingClipStack;
1797 } else {
1798 // GraphicStackState::updateClip expects the clip stack to have
1799 // fExistingClip as a prefix, so start there, then set the clip
1800 // to the passed region.
1801 synthesizedClipStack = fExistingClipStack;
1802 SkPath clipPath;
1803 clipRegion.getBoundaryPath(&clipPath);
reed@google.com00177082011-10-12 14:34:30 +00001804 synthesizedClipStack.clipDevPath(clipPath, SkRegion::kReplace_Op,
1805 false);
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001806 clipStack = &synthesizedClipStack;
1807 }
1808 }
1809
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001810 SkXfermode::Mode xfermode = SkXfermode::kSrcOver_Mode;
1811 if (paint.getXfermode()) {
1812 paint.getXfermode()->asMode(&xfermode);
1813 }
1814
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001815 // For the following modes, we want to handle source and destination
1816 // separately, so make an object of what's already there.
1817 if (xfermode == SkXfermode::kClear_Mode ||
1818 xfermode == SkXfermode::kSrc_Mode ||
1819 xfermode == SkXfermode::kSrcIn_Mode ||
1820 xfermode == SkXfermode::kDstIn_Mode ||
1821 xfermode == SkXfermode::kSrcOut_Mode ||
1822 xfermode == SkXfermode::kDstOut_Mode ||
1823 xfermode == SkXfermode::kSrcATop_Mode ||
1824 xfermode == SkXfermode::kDstATop_Mode ||
1825 xfermode == SkXfermode::kModulate_Mode) {
1826 if (!isContentEmpty()) {
reed@google.comfc641d02012-09-20 17:52:20 +00001827 *dst = createFormXObjectFromDevice();
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001828 SkASSERT(isContentEmpty());
1829 } else if (xfermode != SkXfermode::kSrc_Mode &&
1830 xfermode != SkXfermode::kSrcOut_Mode) {
1831 // Except for Src and SrcOut, if there isn't anything already there,
1832 // then we're done.
1833 return NULL;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001834 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001835 }
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +00001836 // TODO(vandebo): Figure out how/if we can handle the following modes:
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001837 // Xor, Plus.
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001838
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001839 // Dst xfer mode doesn't draw source at all.
1840 if (xfermode == SkXfermode::kDst_Mode) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001841 return NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001842 }
1843
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001844 ContentEntry* entry;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001845 SkAutoTDelete<ContentEntry> newEntry;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001846
1847 ContentEntry* lastContentEntry = getLastContentEntry();
1848 if (lastContentEntry && lastContentEntry->fContent.getOffset() == 0) {
1849 entry = lastContentEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001850 } else {
1851 newEntry.reset(new ContentEntry);
1852 entry = newEntry.get();
1853 }
1854
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001855 populateGraphicStateEntryFromPaint(matrix, *clipStack, clipRegion, paint,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001856 hasText, &entry->fState);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001857 if (lastContentEntry && xfermode != SkXfermode::kDstOver_Mode &&
1858 entry->fState.compareInitialState(lastContentEntry->fState)) {
1859 return lastContentEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001860 }
1861
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001862 SkAutoTDelete<ContentEntry>* contentEntries = getContentEntries();
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001863 if (!lastContentEntry) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001864 contentEntries->reset(entry);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001865 setLastContentEntry(entry);
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001866 } else if (xfermode == SkXfermode::kDstOver_Mode) {
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001867 entry->fNext.reset(contentEntries->detach());
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001868 contentEntries->reset(entry);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001869 } else {
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001870 lastContentEntry->fNext.reset(entry);
1871 setLastContentEntry(entry);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001872 }
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001873 newEntry.detach();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001874 return entry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001875}
1876
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001877void SkPDFDevice::finishContentEntry(SkXfermode::Mode xfermode,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001878 SkPDFFormXObject* dst,
1879 SkPath* shape) {
1880 if (xfermode != SkXfermode::kClear_Mode &&
1881 xfermode != SkXfermode::kSrc_Mode &&
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001882 xfermode != SkXfermode::kDstOver_Mode &&
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001883 xfermode != SkXfermode::kSrcIn_Mode &&
1884 xfermode != SkXfermode::kDstIn_Mode &&
1885 xfermode != SkXfermode::kSrcOut_Mode &&
1886 xfermode != SkXfermode::kDstOut_Mode &&
1887 xfermode != SkXfermode::kSrcATop_Mode &&
1888 xfermode != SkXfermode::kDstATop_Mode &&
1889 xfermode != SkXfermode::kModulate_Mode) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001890 SkASSERT(!dst);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001891 return;
1892 }
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001893 if (xfermode == SkXfermode::kDstOver_Mode) {
1894 SkASSERT(!dst);
1895 ContentEntry* firstContentEntry = getContentEntries()->get();
1896 if (firstContentEntry->fContent.getOffset() == 0) {
1897 // For DstOver, an empty content entry was inserted before the rest
1898 // of the content entries. If nothing was drawn, it needs to be
1899 // removed.
1900 SkAutoTDelete<ContentEntry>* contentEntries = getContentEntries();
1901 contentEntries->reset(firstContentEntry->fNext.detach());
1902 }
1903 return;
1904 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001905 if (!dst) {
1906 SkASSERT(xfermode == SkXfermode::kSrc_Mode ||
1907 xfermode == SkXfermode::kSrcOut_Mode);
1908 return;
1909 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001910
1911 ContentEntry* contentEntries = getContentEntries()->get();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001912 SkASSERT(dst);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001913 SkASSERT(!contentEntries->fNext.get());
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001914 // Changing the current content into a form-xobject will destroy the clip
1915 // objects which is fine since the xobject will already be clipped. However
1916 // if source has shape, we need to clip it too, so a copy of the clip is
1917 // saved.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001918 SkClipStack clipStack = contentEntries->fState.fClipStack;
1919 SkRegion clipRegion = contentEntries->fState.fClipRegion;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001920
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001921 SkMatrix identity;
1922 identity.reset();
1923 SkPaint stockPaint;
1924
reed@google.comfc641d02012-09-20 17:52:20 +00001925 SkAutoTUnref<SkPDFFormXObject> srcFormXObject;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001926 if (isContentEmpty()) {
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001927 // If nothing was drawn and there's no shape, then the draw was a
1928 // no-op, but dst needs to be restored for that to be true.
1929 // If there is shape, then an empty source with Src, SrcIn, SrcOut,
1930 // DstIn, DstAtop or Modulate reduces to Clear and DstOut or SrcAtop
1931 // reduces to Dst.
1932 if (shape == NULL || xfermode == SkXfermode::kDstOut_Mode ||
1933 xfermode == SkXfermode::kSrcATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001934 ScopedContentEntry content(this, &fExistingClipStack,
1935 fExistingClipRegion, identity,
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001936 stockPaint);
1937 SkPDFUtils::DrawFormXObject(this->addXObjectResource(dst),
1938 &content.entry()->fContent);
1939 return;
1940 } else {
1941 xfermode = SkXfermode::kClear_Mode;
1942 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001943 } else {
1944 SkASSERT(!fContentEntries->fNext.get());
reed@google.comfc641d02012-09-20 17:52:20 +00001945 srcFormXObject.reset(createFormXObjectFromDevice());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001946 }
1947
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001948 // TODO(vandebo) srcFormXObject may contain alpha, but here we want it
1949 // without alpha.
1950 if (xfermode == SkXfermode::kSrcATop_Mode) {
1951 // TODO(vandebo): In order to properly support SrcATop we have to track
1952 // the shape of what's been drawn at all times. It's the intersection of
1953 // the non-transparent parts of the device and the outlines (shape) of
1954 // all images and devices drawn.
1955 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()), dst,
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001956 &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001957 SkXfermode::kSrcOver_Mode, true);
1958 } else {
1959 SkAutoTUnref<SkPDFFormXObject> dstMaskStorage;
1960 SkPDFFormXObject* dstMask = srcFormXObject.get();
1961 if (shape != NULL) {
1962 // Draw shape into a form-xobject.
1963 SkDraw d;
1964 d.fMatrix = &identity;
1965 d.fClip = &clipRegion;
1966 d.fClipStack = &clipStack;
1967 SkPaint filledPaint;
1968 filledPaint.setColor(SK_ColorBLACK);
1969 filledPaint.setStyle(SkPaint::kFill_Style);
1970 this->drawPath(d, *shape, filledPaint, NULL, true);
1971
1972 dstMaskStorage.reset(createFormXObjectFromDevice());
1973 dstMask = dstMaskStorage.get();
1974 }
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001975 drawFormXObjectWithMask(addXObjectResource(dst), dstMask,
1976 &fExistingClipStack, fExistingClipRegion,
1977 SkXfermode::kSrcOver_Mode, true);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001978 }
1979
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001980 if (xfermode == SkXfermode::kClear_Mode) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001981 return;
1982 } else if (xfermode == SkXfermode::kSrc_Mode ||
1983 xfermode == SkXfermode::kDstATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001984 ScopedContentEntry content(this, &fExistingClipStack,
1985 fExistingClipRegion, identity, stockPaint);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001986 if (content.entry()) {
1987 SkPDFUtils::DrawFormXObject(
1988 this->addXObjectResource(srcFormXObject.get()),
1989 &content.entry()->fContent);
1990 }
1991 if (xfermode == SkXfermode::kSrc_Mode) {
1992 return;
1993 }
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001994 } else if (xfermode == SkXfermode::kSrcATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001995 ScopedContentEntry content(this, &fExistingClipStack,
1996 fExistingClipRegion, identity, stockPaint);
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001997 if (content.entry()) {
1998 SkPDFUtils::DrawFormXObject(this->addXObjectResource(dst),
1999 &content.entry()->fContent);
2000 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002001 }
2002
2003 SkASSERT(xfermode == SkXfermode::kSrcIn_Mode ||
2004 xfermode == SkXfermode::kDstIn_Mode ||
2005 xfermode == SkXfermode::kSrcOut_Mode ||
2006 xfermode == SkXfermode::kDstOut_Mode ||
2007 xfermode == SkXfermode::kSrcATop_Mode ||
2008 xfermode == SkXfermode::kDstATop_Mode ||
2009 xfermode == SkXfermode::kModulate_Mode);
2010
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002011 if (xfermode == SkXfermode::kSrcIn_Mode ||
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002012 xfermode == SkXfermode::kSrcOut_Mode ||
2013 xfermode == SkXfermode::kSrcATop_Mode) {
2014 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()), dst,
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00002015 &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002016 SkXfermode::kSrcOver_Mode,
2017 xfermode == SkXfermode::kSrcOut_Mode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002018 } else {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002019 SkXfermode::Mode mode = SkXfermode::kSrcOver_Mode;
2020 if (xfermode == SkXfermode::kModulate_Mode) {
2021 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()),
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00002022 dst, &fExistingClipStack,
2023 fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002024 SkXfermode::kSrcOver_Mode, false);
2025 mode = SkXfermode::kMultiply_Mode;
2026 }
2027 drawFormXObjectWithMask(addXObjectResource(dst), srcFormXObject.get(),
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00002028 &fExistingClipStack, fExistingClipRegion, mode,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002029 xfermode == SkXfermode::kDstOut_Mode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002030 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002031}
2032
vandebo@chromium.org481aef62011-05-24 16:39:05 +00002033bool SkPDFDevice::isContentEmpty() {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00002034 ContentEntry* contentEntries = getContentEntries()->get();
2035 if (!contentEntries || contentEntries->fContent.getOffset() == 0) {
2036 SkASSERT(!contentEntries || !contentEntries->fNext.get());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00002037 return true;
2038 }
2039 return false;
2040}
2041
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002042void SkPDFDevice::populateGraphicStateEntryFromPaint(
2043 const SkMatrix& matrix,
2044 const SkClipStack& clipStack,
2045 const SkRegion& clipRegion,
2046 const SkPaint& paint,
2047 bool hasText,
2048 GraphicStateEntry* entry) {
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002049 SkASSERT(paint.getPathEffect() == NULL);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002050
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002051 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
2052 NOT_IMPLEMENTED(paint.getColorFilter() != NULL, false);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002053
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002054 entry->fMatrix = matrix;
2055 entry->fClipStack = clipStack;
2056 entry->fClipRegion = clipRegion;
vandebo@chromium.orgda6c5692012-06-28 21:37:20 +00002057 entry->fColor = SkColorSetA(paint.getColor(), 0xFF);
2058 entry->fShaderIndex = -1;
vandebo@chromium.org48543272011-02-08 19:28:07 +00002059
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002060 // PDF treats a shader as a color, so we only set one or the other.
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002061 SkAutoTUnref<SkPDFObject> pdfShader;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002062 const SkShader* shader = paint.getShader();
2063 SkColor color = paint.getColor();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002064 if (shader) {
2065 // PDF positions patterns relative to the initial transform, so
2066 // we need to apply the current transform to the shader parameters.
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002067 SkMatrix transform = matrix;
vandebo@chromium.org75f97e42011-04-11 23:24:18 +00002068 transform.postConcat(fInitialTransform);
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002069
2070 // PDF doesn't support kClamp_TileMode, so we simulate it by making
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002071 // a pattern the size of the current clip.
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002072 SkIRect bounds = clipRegion.getBounds();
vandebo@chromium.org293a7582012-03-16 19:50:37 +00002073
2074 // We need to apply the initial transform to bounds in order to get
2075 // bounds in a consistent coordinate system.
2076 SkRect boundsTemp;
2077 boundsTemp.set(bounds);
2078 fInitialTransform.mapRect(&boundsTemp);
2079 boundsTemp.roundOut(&bounds);
2080
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002081 pdfShader.reset(SkPDFShader::GetPDFShader(*shader, transform, bounds));
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002082
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00002083 if (pdfShader.get()) {
2084 // pdfShader has been canonicalized so we can directly compare
2085 // pointers.
2086 int resourceIndex = fShaderResources.find(pdfShader.get());
2087 if (resourceIndex < 0) {
2088 resourceIndex = fShaderResources.count();
2089 fShaderResources.push(pdfShader.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002090 pdfShader.get()->ref();
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00002091 }
2092 entry->fShaderIndex = resourceIndex;
2093 } else {
2094 // A color shader is treated as an invalid shader so we don't have
2095 // to set a shader just for a color.
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002096 SkShader::GradientInfo gradientInfo;
2097 SkColor gradientColor;
2098 gradientInfo.fColors = &gradientColor;
2099 gradientInfo.fColorOffsets = NULL;
2100 gradientInfo.fColorCount = 1;
2101 if (shader->asAGradient(&gradientInfo) ==
2102 SkShader::kColor_GradientType) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002103 entry->fColor = SkColorSetA(gradientColor, 0xFF);
2104 color = gradientColor;
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002105 }
2106 }
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002107 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002108
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002109 SkAutoTUnref<SkPDFGraphicState> newGraphicState;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002110 if (color == paint.getColor()) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002111 newGraphicState.reset(
2112 SkPDFGraphicState::GetGraphicStateForPaint(paint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002113 } else {
2114 SkPaint newPaint = paint;
2115 newPaint.setColor(color);
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002116 newGraphicState.reset(
2117 SkPDFGraphicState::GetGraphicStateForPaint(newPaint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002118 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002119 int resourceIndex = addGraphicStateResource(newGraphicState.get());
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002120 entry->fGraphicStateIndex = resourceIndex;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002121
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002122 if (hasText) {
2123 entry->fTextScaleX = paint.getTextScaleX();
2124 entry->fTextFill = paint.getStyle();
2125 } else {
2126 entry->fTextScaleX = 0;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002127 }
2128}
2129
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002130int SkPDFDevice::addGraphicStateResource(SkPDFGraphicState* gs) {
2131 // Assumes that gs has been canonicalized (so we can directly compare
2132 // pointers).
2133 int result = fGraphicStateResources.find(gs);
2134 if (result < 0) {
2135 result = fGraphicStateResources.count();
2136 fGraphicStateResources.push(gs);
2137 gs->ref();
2138 }
2139 return result;
2140}
2141
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002142int SkPDFDevice::addXObjectResource(SkPDFObject* xObject) {
2143 // Assumes that xobject has been canonicalized (so we can directly compare
2144 // pointers).
2145 int result = fXObjectResources.find(xObject);
2146 if (result < 0) {
2147 result = fXObjectResources.count();
2148 fXObjectResources.push(xObject);
2149 xObject->ref();
2150 }
2151 return result;
2152}
2153
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002154void SkPDFDevice::updateFont(const SkPaint& paint, uint16_t glyphID,
2155 ContentEntry* contentEntry) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002156 SkTypeface* typeface = paint.getTypeface();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002157 if (contentEntry->fState.fFont == NULL ||
2158 contentEntry->fState.fTextSize != paint.getTextSize() ||
2159 !contentEntry->fState.fFont->hasGlyph(glyphID)) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002160 int fontIndex = getFontResourceIndex(typeface, glyphID);
commit-bot@chromium.org47401352013-07-23 21:49:29 +00002161 contentEntry->fContent.writeText("/");
2162 contentEntry->fContent.writeText(SkPDFResourceDict::getResourceName(
2163 SkPDFResourceDict::kFont_ResourceType,
2164 fontIndex).c_str());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002165 contentEntry->fContent.writeText(" ");
2166 SkPDFScalar::Append(paint.getTextSize(), &contentEntry->fContent);
2167 contentEntry->fContent.writeText(" Tf\n");
2168 contentEntry->fState.fFont = fFontResources[fontIndex];
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00002169 }
2170}
2171
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002172int SkPDFDevice::getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002173 SkAutoTUnref<SkPDFFont> newFont(SkPDFFont::GetFontResource(typeface,
2174 glyphID));
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00002175 int resourceIndex = fFontResources.find(newFont.get());
2176 if (resourceIndex < 0) {
2177 resourceIndex = fFontResources.count();
2178 fFontResources.push(newFont.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002179 newFont.get()->ref();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00002180 }
2181 return resourceIndex;
2182}
2183
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002184void SkPDFDevice::internalDrawBitmap(const SkMatrix& origMatrix,
vandebo@chromium.org78dad542011-05-11 18:46:03 +00002185 const SkClipStack* clipStack,
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002186 const SkRegion& origClipRegion,
2187 const SkBitmap& origBitmap,
vandebo@chromium.orgbefebb82011-01-29 01:38:50 +00002188 const SkIRect* srcRect,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002189 const SkPaint& paint) {
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002190 SkMatrix matrix = origMatrix;
2191 SkRegion perspectiveBounds;
2192 const SkRegion* clipRegion = &origClipRegion;
2193 SkBitmap perspectiveBitmap;
2194 const SkBitmap* bitmap = &origBitmap;
2195 SkBitmap tmpSubsetBitmap;
2196
2197 // Rasterize the bitmap using perspective in a new bitmap.
2198 if (origMatrix.hasPerspective()) {
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002199 if (fRasterDpi == 0) {
2200 return;
2201 }
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002202 SkBitmap* subsetBitmap;
2203 if (srcRect) {
2204 if (!origBitmap.extractSubset(&tmpSubsetBitmap, *srcRect)) {
2205 return;
2206 }
2207 subsetBitmap = &tmpSubsetBitmap;
2208 } else {
2209 subsetBitmap = &tmpSubsetBitmap;
2210 *subsetBitmap = origBitmap;
2211 }
2212 srcRect = NULL;
2213
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002214 // Transform the bitmap in the new space, without taking into
2215 // account the initial transform.
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002216 SkPath perspectiveOutline;
2217 perspectiveOutline.addRect(
2218 SkRect::MakeWH(SkIntToScalar(subsetBitmap->width()),
2219 SkIntToScalar(subsetBitmap->height())));
2220 perspectiveOutline.transform(origMatrix);
2221
2222 // TODO(edisonn): perf - use current clip too.
2223 // Retrieve the bounds of the new shape.
2224 SkRect bounds = perspectiveOutline.getBounds();
2225
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002226 // Transform the bitmap in the new space, taking into
2227 // account the initial transform.
2228 SkMatrix total = origMatrix;
2229 total.postConcat(fInitialTransform);
2230 total.postScale(SkIntToScalar(fRasterDpi) /
2231 SkIntToScalar(DPI_FOR_RASTER_SCALE_ONE),
2232 SkIntToScalar(fRasterDpi) /
2233 SkIntToScalar(DPI_FOR_RASTER_SCALE_ONE));
2234 SkPath physicalPerspectiveOutline;
2235 physicalPerspectiveOutline.addRect(
2236 SkRect::MakeWH(SkIntToScalar(subsetBitmap->width()),
2237 SkIntToScalar(subsetBitmap->height())));
2238 physicalPerspectiveOutline.transform(total);
2239
2240 SkScalar scaleX = physicalPerspectiveOutline.getBounds().width() /
2241 bounds.width();
2242 SkScalar scaleY = physicalPerspectiveOutline.getBounds().height() /
2243 bounds.height();
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002244
2245 // TODO(edisonn): A better approach would be to use a bitmap shader
2246 // (in clamp mode) and draw a rect over the entire bounding box. Then
2247 // intersect perspectiveOutline to the clip. That will avoid introducing
2248 // alpha to the image while still giving good behavior at the edge of
2249 // the image. Avoiding alpha will reduce the pdf size and generation
2250 // CPU time some.
2251
reed@google.com9ebcac52014-01-24 18:53:42 +00002252 const int w = SkScalarCeilToInt(physicalPerspectiveOutline.getBounds().width());
2253 const int h = SkScalarCeilToInt(physicalPerspectiveOutline.getBounds().height());
2254 if (!perspectiveBitmap.allocPixels(SkImageInfo::MakeN32Premul(w, h))) {
2255 return;
2256 }
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002257 perspectiveBitmap.eraseColor(SK_ColorTRANSPARENT);
2258
2259 SkBitmapDevice device(perspectiveBitmap);
2260 SkCanvas canvas(&device);
2261
2262 SkScalar deltaX = bounds.left();
2263 SkScalar deltaY = bounds.top();
2264
2265 SkMatrix offsetMatrix = origMatrix;
2266 offsetMatrix.postTranslate(-deltaX, -deltaY);
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002267 offsetMatrix.postScale(scaleX, scaleY);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002268
2269 // Translate the draw in the new canvas, so we perfectly fit the
2270 // shape in the bitmap.
2271 canvas.setMatrix(offsetMatrix);
2272
2273 canvas.drawBitmap(*subsetBitmap, SkIntToScalar(0), SkIntToScalar(0));
2274
2275 // Make sure the final bits are in the bitmap.
2276 canvas.flush();
2277
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002278 // In the new space, we use the identity matrix translated
2279 // and scaled to reflect DPI.
2280 matrix.setScale(1 / scaleX, 1 / scaleY);
2281 matrix.postTranslate(deltaX, deltaY);
2282
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002283 perspectiveBounds.setRect(
2284 SkIRect::MakeXYWH(SkScalarFloorToInt(bounds.x()),
2285 SkScalarFloorToInt(bounds.y()),
2286 SkScalarCeilToInt(bounds.width()),
2287 SkScalarCeilToInt(bounds.height())));
2288 clipRegion = &perspectiveBounds;
2289 srcRect = NULL;
2290 bitmap = &perspectiveBitmap;
2291 }
2292
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002293 SkMatrix scaled;
2294 // Adjust for origin flip.
vandebo@chromium.org663515b2012-01-05 18:45:27 +00002295 scaled.setScale(SK_Scalar1, -SK_Scalar1);
2296 scaled.postTranslate(0, SK_Scalar1);
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002297 // Scale the image up from 1x1 to WxH.
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002298 SkIRect subset = SkIRect::MakeWH(bitmap->width(), bitmap->height());
reed@google.coma6d59f62011-03-07 21:29:21 +00002299 scaled.postScale(SkIntToScalar(subset.width()),
2300 SkIntToScalar(subset.height()));
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002301 scaled.postConcat(matrix);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002302 ScopedContentEntry content(this, clipStack, *clipRegion, scaled, paint);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002303 if (!content.entry() || (srcRect && !subset.intersect(*srcRect))) {
2304 return;
2305 }
2306 if (content.needShape()) {
2307 SkPath shape;
vandebo@chromium.orgfd3c8c22013-10-30 21:00:47 +00002308 shape.addRect(SkRect::MakeWH(SkIntToScalar(subset.width()),
2309 SkIntToScalar( subset.height())));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002310 shape.transform(matrix);
2311 content.setShape(shape);
2312 }
2313 if (!content.needSource()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00002314 return;
2315 }
2316
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002317 SkAutoTUnref<SkPDFImage> image(
2318 SkPDFImage::CreateImage(*bitmap, subset, fEncoder));
vandebo@chromium.org25adce82011-05-09 08:05:01 +00002319 if (!image) {
2320 return;
2321 }
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002322
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002323 SkPDFUtils::DrawFormXObject(this->addXObjectResource(image.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002324 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002325}
reed@google.com982cb872011-12-07 18:34:08 +00002326
2327bool SkPDFDevice::onReadPixels(const SkBitmap& bitmap, int x, int y,
2328 SkCanvas::Config8888) {
2329 return false;
2330}
reed@google.comb55deeb2012-01-06 14:43:09 +00002331
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00002332bool SkPDFDevice::allowImageFilter(const SkImageFilter*) {
reed@google.comb55deeb2012-01-06 14:43:09 +00002333 return false;
2334}