blob: ce036d111279dfef64969c788cc636b47f62e053 [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;
commit-bot@chromium.orge5b2af92014-02-16 13:25:24 +0000407 } else {
408 clipEntry->asPath(&entryPath);
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000409 }
410 entryPath.transform(transform);
411
412 if (SkRegion::kReplace_Op == clipEntry->getOp()) {
413 *outClipPath = entryPath;
414 } else {
415 SkPathOp op = region_op_to_pathops_op(clipEntry->getOp());
416 if (!Op(*outClipPath, entryPath, op, outClipPath)) {
417 return false;
418 }
419 }
420 }
421
422 if (outClipPath->isInverseFillType()) {
423 // The bounds are slightly outset to ensure this is correct in the
424 // face of floating-point accuracy and possible SkRegion bitmap
425 // approximations.
426 SkRect clipBounds = SkRect::Make(clipRegion.getBounds());
427 clipBounds.outset(SK_Scalar1, SK_Scalar1);
428 if (!calculate_inverse_path(clipBounds, *outClipPath, outClipPath)) {
429 return false;
430 }
431 }
432 return true;
433}
434#endif
435
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000436// TODO(vandebo): Take advantage of SkClipStack::getSaveCount(), the PDF
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000437// graphic state stack, and the fact that we can know all the clips used
438// on the page to optimize this.
439void GraphicStackState::updateClip(const SkClipStack& clipStack,
440 const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000441 const SkPoint& translation) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000442 if (clipStack == currentEntry()->fClipStack) {
443 return;
444 }
445
446 while (fStackDepth > 0) {
447 pop();
448 if (clipStack == currentEntry()->fClipStack) {
449 return;
450 }
451 }
452 push();
453
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000454 currentEntry()->fClipStack = clipStack;
455 currentEntry()->fClipRegion = clipRegion;
456
457 SkMatrix transform;
458 transform.setTranslate(translation.fX, translation.fY);
459
460#ifdef SK_PDF_USE_PATHOPS
461 SkPath clipPath;
462 if (get_clip_stack_path(transform, clipStack, clipRegion, &clipPath)) {
463 emit_clip(&clipPath, NULL, fContentStream);
464 return;
465 }
466#endif
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000467 // gsState->initialEntry()->fClipStack/Region specifies the clip that has
468 // already been applied. (If this is a top level device, then it specifies
469 // a clip to the content area. If this is a layer, then it specifies
470 // the clip in effect when the layer was created.) There's no need to
471 // reapply that clip; SKCanvas's SkDrawIter will draw anything outside the
472 // initial clip on the parent layer. (This means there's a bug if the user
473 // expands the clip and then uses any xfer mode that uses dst:
474 // http://code.google.com/p/skia/issues/detail?id=228 )
robertphillips@google.comc0290622012-07-16 21:20:03 +0000475 SkClipStack::Iter iter;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000476 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
477
478 // If the clip stack does anything other than intersect or if it uses
479 // an inverse fill type, we have to fall back to the clip region.
480 bool needRegion = false;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000481 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000482 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000483 if (clipEntry->getOp() != SkRegion::kIntersect_Op ||
484 clipEntry->isInverseFilled()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000485 needRegion = true;
486 break;
487 }
488 }
489
490 if (needRegion) {
491 SkPath clipPath;
492 SkAssertResult(clipRegion.getBoundaryPath(&clipPath));
493 emit_clip(&clipPath, NULL, fContentStream);
494 } else {
495 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000496 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000497 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000498 SkASSERT(clipEntry->getOp() == SkRegion::kIntersect_Op);
499 switch (clipEntry->getType()) {
500 case SkClipStack::Element::kRect_Type: {
501 SkRect translatedClip;
502 transform.mapRect(&translatedClip, clipEntry->getRect());
503 emit_clip(NULL, &translatedClip, fContentStream);
504 break;
505 }
506 case SkClipStack::Element::kPath_Type: {
507 SkPath translatedPath;
508 clipEntry->getPath().transform(transform, &translatedPath);
509 emit_clip(&translatedPath, NULL, fContentStream);
510 break;
511 }
512 default:
513 SkASSERT(false);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000514 }
515 }
516 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000517}
518
519void GraphicStackState::updateMatrix(const SkMatrix& matrix) {
520 if (matrix == currentEntry()->fMatrix) {
521 return;
522 }
523
524 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) {
525 SkASSERT(fStackDepth > 0);
526 SkASSERT(fEntries[fStackDepth].fClipStack ==
527 fEntries[fStackDepth -1].fClipStack);
528 pop();
529
530 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask);
531 }
532 if (matrix.getType() == SkMatrix::kIdentity_Mask) {
533 return;
534 }
535
536 push();
537 SkPDFUtils::AppendTransform(matrix, fContentStream);
538 currentEntry()->fMatrix = matrix;
539}
540
541void GraphicStackState::updateDrawingState(const GraphicStateEntry& state) {
542 // PDF treats a shader as a color, so we only set one or the other.
543 if (state.fShaderIndex >= 0) {
544 if (state.fShaderIndex != currentEntry()->fShaderIndex) {
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +0000545 SkPDFUtils::ApplyPattern(state.fShaderIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000546 currentEntry()->fShaderIndex = state.fShaderIndex;
547 }
548 } else {
549 if (state.fColor != currentEntry()->fColor ||
550 currentEntry()->fShaderIndex >= 0) {
551 emit_pdf_color(state.fColor, fContentStream);
552 fContentStream->writeText("RG ");
553 emit_pdf_color(state.fColor, fContentStream);
554 fContentStream->writeText("rg\n");
555 currentEntry()->fColor = state.fColor;
556 currentEntry()->fShaderIndex = -1;
557 }
558 }
559
560 if (state.fGraphicStateIndex != currentEntry()->fGraphicStateIndex) {
vandebo@chromium.org6112c212011-05-13 03:50:38 +0000561 SkPDFUtils::ApplyGraphicState(state.fGraphicStateIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000562 currentEntry()->fGraphicStateIndex = state.fGraphicStateIndex;
563 }
564
565 if (state.fTextScaleX) {
566 if (state.fTextScaleX != currentEntry()->fTextScaleX) {
567 SkScalar pdfScale = SkScalarMul(state.fTextScaleX,
568 SkIntToScalar(100));
569 SkPDFScalar::Append(pdfScale, fContentStream);
570 fContentStream->writeText(" Tz\n");
571 currentEntry()->fTextScaleX = state.fTextScaleX;
572 }
573 if (state.fTextFill != currentEntry()->fTextFill) {
574 SK_COMPILE_ASSERT(SkPaint::kFill_Style == 0, enum_must_match_value);
575 SK_COMPILE_ASSERT(SkPaint::kStroke_Style == 1,
576 enum_must_match_value);
577 SK_COMPILE_ASSERT(SkPaint::kStrokeAndFill_Style == 2,
578 enum_must_match_value);
579 fContentStream->writeDecAsText(state.fTextFill);
580 fContentStream->writeText(" Tr\n");
581 currentEntry()->fTextFill = state.fTextFill;
582 }
583 }
584}
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000585
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000586SkBaseDevice* SkPDFDevice::onCreateDevice(const SkImageInfo& info, Usage usage) {
bsalomon@google.come97f0852011-06-17 13:10:25 +0000587 SkMatrix initialTransform;
588 initialTransform.reset();
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000589 SkISize size = SkISize::Make(info.width(), info.height());
bsalomon@google.come97f0852011-06-17 13:10:25 +0000590 return SkNEW_ARGS(SkPDFDevice, (size, size, initialTransform));
591}
592
593
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000594struct ContentEntry {
595 GraphicStateEntry fState;
596 SkDynamicMemoryWStream fContent;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000597 SkAutoTDelete<ContentEntry> fNext;
edisonn@google.com2e6a69b2013-02-05 23:13:39 +0000598
599 // If the stack is too deep we could get Stack Overflow.
600 // So we manually destruct the object.
601 ~ContentEntry() {
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000602 ContentEntry* val = fNext.detach();
edisonn@google.com2e6a69b2013-02-05 23:13:39 +0000603 while (val != NULL) {
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000604 ContentEntry* valNext = val->fNext.detach();
edisonn@google.com2e6a69b2013-02-05 23:13:39 +0000605 // When the destructor is called, fNext is NULL and exits.
606 delete val;
607 val = valNext;
608 }
609 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000610};
611
612// A helper class to automatically finish a ContentEntry at the end of a
613// drawing method and maintain the state needed between set up and finish.
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000614class ScopedContentEntry {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000615public:
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000616 ScopedContentEntry(SkPDFDevice* device, const SkDraw& draw,
617 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000618 : fDevice(device),
619 fContentEntry(NULL),
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000620 fXfermode(SkXfermode::kSrcOver_Mode),
621 fDstFormXObject(NULL) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000622 init(draw.fClipStack, *draw.fClip, *draw.fMatrix, paint, hasText);
623 }
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000624 ScopedContentEntry(SkPDFDevice* device, const SkClipStack* clipStack,
625 const SkRegion& clipRegion, const SkMatrix& matrix,
626 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000627 : fDevice(device),
628 fContentEntry(NULL),
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000629 fXfermode(SkXfermode::kSrcOver_Mode),
630 fDstFormXObject(NULL) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000631 init(clipStack, clipRegion, matrix, paint, hasText);
632 }
633
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000634 ~ScopedContentEntry() {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000635 if (fContentEntry) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000636 SkPath* shape = &fShape;
637 if (shape->isEmpty()) {
638 shape = NULL;
639 }
640 fDevice->finishContentEntry(fXfermode, fDstFormXObject, shape);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000641 }
reed@google.comfc641d02012-09-20 17:52:20 +0000642 SkSafeUnref(fDstFormXObject);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000643 }
644
645 ContentEntry* entry() { return fContentEntry; }
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000646
647 /* Returns true when we explicitly need the shape of the drawing. */
648 bool needShape() {
649 switch (fXfermode) {
650 case SkXfermode::kClear_Mode:
651 case SkXfermode::kSrc_Mode:
652 case SkXfermode::kSrcIn_Mode:
653 case SkXfermode::kSrcOut_Mode:
654 case SkXfermode::kDstIn_Mode:
655 case SkXfermode::kDstOut_Mode:
656 case SkXfermode::kSrcATop_Mode:
657 case SkXfermode::kDstATop_Mode:
658 case SkXfermode::kModulate_Mode:
659 return true;
660 default:
661 return false;
662 }
663 }
664
665 /* Returns true unless we only need the shape of the drawing. */
666 bool needSource() {
667 if (fXfermode == SkXfermode::kClear_Mode) {
668 return false;
669 }
670 return true;
671 }
672
673 /* If the shape is different than the alpha component of the content, then
674 * setShape should be called with the shape. In particular, images and
675 * devices have rectangular shape.
676 */
677 void setShape(const SkPath& shape) {
678 fShape = shape;
679 }
680
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000681private:
682 SkPDFDevice* fDevice;
683 ContentEntry* fContentEntry;
684 SkXfermode::Mode fXfermode;
reed@google.comfc641d02012-09-20 17:52:20 +0000685 SkPDFFormXObject* fDstFormXObject;
vandebo@chromium.org3b416212013-10-30 20:48:05 +0000686 SkPath fShape;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000687
688 void init(const SkClipStack* clipStack, const SkRegion& clipRegion,
689 const SkMatrix& matrix, const SkPaint& paint, bool hasText) {
edisonn@google.com83d8eda2013-10-24 13:19:28 +0000690 // Shape has to be flatten before we get here.
691 if (matrix.hasPerspective()) {
692 NOT_IMPLEMENTED(!matrix.hasPerspective(), false);
vandebo@chromium.orgdc37e202013-10-18 20:16:34 +0000693 return;
694 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000695 if (paint.getXfermode()) {
696 paint.getXfermode()->asMode(&fXfermode);
697 }
698 fContentEntry = fDevice->setUpContentEntry(clipStack, clipRegion,
699 matrix, paint, hasText,
700 &fDstFormXObject);
701 }
702};
703
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000704////////////////////////////////////////////////////////////////////////////////
705
ctguil@chromium.org15261292011-04-29 17:54:16 +0000706static inline SkBitmap makeContentBitmap(const SkISize& contentSize,
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000707 const SkMatrix* initialTransform) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000708 SkBitmap bitmap;
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000709 if (initialTransform) {
710 // Compute the size of the drawing area.
711 SkVector drawingSize;
712 SkMatrix inverse;
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000713 drawingSize.set(SkIntToScalar(contentSize.fWidth),
714 SkIntToScalar(contentSize.fHeight));
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000715 if (!initialTransform->invert(&inverse)) {
vandebo@chromium.org386dfc02012-04-17 22:31:52 +0000716 // This shouldn't happen, initial transform should be invertible.
717 SkASSERT(false);
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000718 inverse.reset();
719 }
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000720 inverse.mapVectors(&drawingSize, 1);
721 SkISize size = SkSize::Make(drawingSize.fX, drawingSize.fY).toRound();
722 bitmap.setConfig(SkBitmap::kNo_Config, abs(size.fWidth),
723 abs(size.fHeight));
724 } else {
725 bitmap.setConfig(SkBitmap::kNo_Config, abs(contentSize.fWidth),
726 abs(contentSize.fHeight));
727 }
728
reed@android.comf2b98d62010-12-20 18:26:13 +0000729 return bitmap;
730}
731
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000732// TODO(vandebo) change pageSize to SkSize.
ctguil@chromium.org15261292011-04-29 17:54:16 +0000733SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize,
vandebo@chromium.org75f97e42011-04-11 23:24:18 +0000734 const SkMatrix& initialTransform)
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000735 : SkBitmapDevice(makeContentBitmap(contentSize, &initialTransform)),
ctguil@chromium.org15261292011-04-29 17:54:16 +0000736 fPageSize(pageSize),
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000737 fContentSize(contentSize),
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000738 fLastContentEntry(NULL),
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000739 fLastMarginContentEntry(NULL),
edisonn@google.comd9dfa182013-04-24 13:01:01 +0000740 fClipStack(NULL),
commit-bot@chromium.org8c294902013-10-21 17:14:37 +0000741 fEncoder(NULL),
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000742 fRasterDpi(72.0f) {
edisonn@google.com83d8eda2013-10-24 13:19:28 +0000743 // Just report that PDF does not supports perspective in the
744 // initial transform.
edisonn@google.comaa6c4d22013-09-19 17:36:47 +0000745 NOT_IMPLEMENTED(initialTransform.hasPerspective(), true);
746
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000747 // Skia generally uses the top left as the origin but PDF natively has the
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000748 // origin at the bottom left. This matrix corrects for that. But that only
749 // needs to be done once, we don't do it when layering.
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000750 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight));
751 fInitialTransform.preScale(SK_Scalar1, -SK_Scalar1);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000752 fInitialTransform.preConcat(initialTransform);
753
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000754 SkIRect existingClip = SkIRect::MakeWH(this->width(), this->height());
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000755 fExistingClipRegion.setRect(existingClip);
756
757 this->init();
758}
759
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000760// TODO(vandebo) change layerSize to SkSize.
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000761SkPDFDevice::SkPDFDevice(const SkISize& layerSize,
762 const SkClipStack& existingClipStack,
763 const SkRegion& existingClipRegion)
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000764 : SkBitmapDevice(makeContentBitmap(layerSize, NULL)),
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000765 fPageSize(layerSize),
766 fContentSize(layerSize),
767 fExistingClipStack(existingClipStack),
768 fExistingClipRegion(existingClipRegion),
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000769 fLastContentEntry(NULL),
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000770 fLastMarginContentEntry(NULL),
commit-bot@chromium.org8c294902013-10-21 17:14:37 +0000771 fClipStack(NULL),
772 fEncoder(NULL),
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000773 fRasterDpi(72.0f) {
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000774 fInitialTransform.reset();
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000775 this->init();
776}
777
778SkPDFDevice::~SkPDFDevice() {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000779 this->cleanUp(true);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000780}
781
782void SkPDFDevice::init() {
reed@google.com2a006c12012-09-19 17:05:55 +0000783 fAnnotations = NULL;
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000784 fResourceDict = NULL;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000785 fContentEntries.free();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000786 fLastContentEntry = NULL;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000787 fMarginContentEntries.free();
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000788 fLastMarginContentEntry = NULL;
vandebo@chromium.org98594282011-07-25 22:34:12 +0000789 fDrawingArea = kContent_DrawingArea;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +0000790 if (fFontGlyphUsage.get() == NULL) {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000791 fFontGlyphUsage.reset(new SkPDFGlyphSetMap());
792 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000793}
794
vandebo@chromium.org98594282011-07-25 22:34:12 +0000795void SkPDFDevice::cleanUp(bool clearFontUsage) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000796 fGraphicStateResources.unrefAll();
797 fXObjectResources.unrefAll();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000798 fFontResources.unrefAll();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +0000799 fShaderResources.unrefAll();
reed@google.com2a006c12012-09-19 17:05:55 +0000800 SkSafeUnref(fAnnotations);
reed@google.comfc641d02012-09-20 17:52:20 +0000801 SkSafeUnref(fResourceDict);
epoger@google.comb58772f2013-03-08 09:09:10 +0000802 fNamedDestinations.deleteAll();
reed@google.com2a006c12012-09-19 17:05:55 +0000803
vandebo@chromium.org98594282011-07-25 22:34:12 +0000804 if (clearFontUsage) {
805 fFontGlyphUsage->reset();
806 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000807}
808
reed@google.com982cb872011-12-07 18:34:08 +0000809uint32_t SkPDFDevice::getDeviceCapabilities() {
810 return kVector_Capability;
811}
812
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000813void SkPDFDevice::clear(SkColor color) {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000814 this->cleanUp(true);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000815 this->init();
816
817 SkPaint paint;
818 paint.setColor(color);
819 paint.setStyle(SkPaint::kFill_Style);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000820 SkMatrix identity;
821 identity.reset();
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000822 ScopedContentEntry content(this, &fExistingClipStack, fExistingClipRegion,
823 identity, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000824 internalDrawPaint(paint, content.entry());
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000825}
826
827void SkPDFDevice::drawPaint(const SkDraw& d, const SkPaint& paint) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000828 SkPaint newPaint = paint;
829 newPaint.setStyle(SkPaint::kFill_Style);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000830 ScopedContentEntry content(this, d, newPaint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000831 internalDrawPaint(newPaint, content.entry());
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000832}
833
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000834void SkPDFDevice::internalDrawPaint(const SkPaint& paint,
835 ContentEntry* contentEntry) {
836 if (!contentEntry) {
837 return;
838 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000839 SkRect bbox = SkRect::MakeWH(SkIntToScalar(this->width()),
840 SkIntToScalar(this->height()));
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000841 SkMatrix inverse;
commit-bot@chromium.orgd2cfa742013-09-20 18:58:30 +0000842 if (!contentEntry->fState.fMatrix.invert(&inverse)) {
vandebo@chromium.org386dfc02012-04-17 22:31:52 +0000843 return;
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000844 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000845 inverse.mapRect(&bbox);
846
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000847 SkPDFUtils::AppendRectangle(bbox, &contentEntry->fContent);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000848 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000849 &contentEntry->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000850}
851
852void SkPDFDevice::drawPoints(const SkDraw& d, SkCanvas::PointMode mode,
853 size_t count, const SkPoint* points,
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000854 const SkPaint& passedPaint) {
855 if (count == 0) {
856 return;
857 }
858
epoger@google.comb58772f2013-03-08 09:09:10 +0000859 if (handlePointAnnotation(points, count, *d.fMatrix, passedPaint)) {
860 return;
861 }
862
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000863 // SkDraw::drawPoints converts to multiple calls to fDevice->drawPath.
864 // We only use this when there's a path effect because of the overhead
865 // of multiple calls to setUpContentEntry it causes.
866 if (passedPaint.getPathEffect()) {
867 if (d.fClip->isEmpty()) {
868 return;
869 }
870 SkDraw pointDraw(d);
871 pointDraw.fDevice = this;
872 pointDraw.drawPoints(mode, count, points, passedPaint, true);
873 return;
874 }
875
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000876 const SkPaint* paint = &passedPaint;
877 SkPaint modifiedPaint;
878
879 if (mode == SkCanvas::kPoints_PointMode &&
880 paint->getStrokeCap() != SkPaint::kRound_Cap) {
881 modifiedPaint = *paint;
882 paint = &modifiedPaint;
883 if (paint->getStrokeWidth()) {
884 // PDF won't draw a single point with square/butt caps because the
885 // orientation is ambiguous. Draw a rectangle instead.
886 modifiedPaint.setStyle(SkPaint::kFill_Style);
887 SkScalar strokeWidth = paint->getStrokeWidth();
888 SkScalar halfStroke = SkScalarHalf(strokeWidth);
889 for (size_t i = 0; i < count; i++) {
890 SkRect r = SkRect::MakeXYWH(points[i].fX, points[i].fY, 0, 0);
891 r.inset(-halfStroke, -halfStroke);
892 drawRect(d, r, modifiedPaint);
893 }
894 return;
895 } else {
896 modifiedPaint.setStrokeCap(SkPaint::kRound_Cap);
897 }
898 }
899
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000900 ScopedContentEntry content(this, d, *paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000901 if (!content.entry()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000902 return;
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +0000903 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000904
905 switch (mode) {
906 case SkCanvas::kPolygon_PointMode:
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000907 SkPDFUtils::MoveTo(points[0].fX, points[0].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000908 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000909 for (size_t i = 1; i < count; i++) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000910 SkPDFUtils::AppendLine(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000911 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000912 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000913 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000914 break;
915 case SkCanvas::kLines_PointMode:
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000916 for (size_t i = 0; i < count/2; i++) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000917 SkPDFUtils::MoveTo(points[i * 2].fX, points[i * 2].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000918 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000919 SkPDFUtils::AppendLine(points[i * 2 + 1].fX,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000920 points[i * 2 + 1].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000921 &content.entry()->fContent);
922 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000923 }
924 break;
925 case SkCanvas::kPoints_PointMode:
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000926 SkASSERT(paint->getStrokeCap() == SkPaint::kRound_Cap);
927 for (size_t i = 0; i < count; i++) {
928 SkPDFUtils::MoveTo(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000929 &content.entry()->fContent);
930 SkPDFUtils::ClosePath(&content.entry()->fContent);
931 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000932 }
933 break;
934 default:
935 SkASSERT(false);
936 }
937}
938
commit-bot@chromium.org969fd6a2013-05-14 18:16:40 +0000939void SkPDFDevice::drawRect(const SkDraw& d, const SkRect& rect,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000940 const SkPaint& paint) {
commit-bot@chromium.org969fd6a2013-05-14 18:16:40 +0000941 SkRect r = rect;
942 r.sort();
943
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000944 if (paint.getPathEffect()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000945 if (d.fClip->isEmpty()) {
946 return;
947 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000948 SkPath path;
949 path.addRect(r);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000950 drawPath(d, path, paint, NULL, true);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000951 return;
952 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000953
epoger@google.comb58772f2013-03-08 09:09:10 +0000954 if (handleRectAnnotation(r, *d.fMatrix, paint)) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +0000955 return;
956 }
957
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000958 ScopedContentEntry content(this, d, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000959 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000960 return;
961 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000962 SkPDFUtils::AppendRectangle(r, &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000963 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000964 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000965}
966
scroggo@google.coma8e33a92013-11-08 18:02:53 +0000967void SkPDFDevice::drawRRect(const SkDraw& draw, const SkRRect& rrect,
968 const SkPaint& paint) {
969 SkPath path;
970 path.addRRect(rrect);
971 this->drawPath(draw, path, paint, NULL, true);
972}
973
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000974void SkPDFDevice::drawPath(const SkDraw& d, const SkPath& origPath,
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000975 const SkPaint& paint, const SkMatrix* prePathMatrix,
976 bool pathIsMutable) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000977 SkPath modifiedPath;
978 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
979
980 SkMatrix matrix = *d.fMatrix;
981 if (prePathMatrix) {
982 if (paint.getPathEffect() || paint.getStyle() != SkPaint::kFill_Style) {
983 if (!pathIsMutable) {
984 pathPtr = &modifiedPath;
985 pathIsMutable = true;
986 }
987 origPath.transform(*prePathMatrix, pathPtr);
988 } else {
989 if (!matrix.preConcat(*prePathMatrix)) {
edisonn@google.comaa6c4d22013-09-19 17:36:47 +0000990 // TODO(edisonn): report somehow why we failed?
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000991 return;
992 }
993 }
994 }
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000995
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000996 if (paint.getPathEffect()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000997 if (d.fClip->isEmpty()) {
998 return;
999 }
vandebo@chromium.orgff390322011-05-17 18:58:44 +00001000 if (!pathIsMutable) {
1001 pathPtr = &modifiedPath;
1002 pathIsMutable = true;
1003 }
1004 bool fill = paint.getFillPath(origPath, pathPtr);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +00001005
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001006 SkPaint noEffectPaint(paint);
vandebo@chromium.orgff390322011-05-17 18:58:44 +00001007 noEffectPaint.setPathEffect(NULL);
1008 if (fill) {
1009 noEffectPaint.setStyle(SkPaint::kFill_Style);
1010 } else {
1011 noEffectPaint.setStyle(SkPaint::kStroke_Style);
1012 noEffectPaint.setStrokeWidth(0);
1013 }
1014 drawPath(d, *pathPtr, noEffectPaint, NULL, true);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +00001015 return;
1016 }
vandebo@chromium.orgff390322011-05-17 18:58:44 +00001017
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001018#ifdef SK_PDF_USE_PATHOPS
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001019 if (handleInversePath(d, origPath, paint, pathIsMutable, prePathMatrix)) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001020 return;
1021 }
1022#endif
1023
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001024 if (handleRectAnnotation(pathPtr->getBounds(), matrix, paint)) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001025 return;
1026 }
1027
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001028 ScopedContentEntry content(this, d.fClipStack, *d.fClip, matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001029 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001030 return;
1031 }
vandebo@chromium.org683001c2012-05-09 17:17:51 +00001032 SkPDFUtils::EmitPath(*pathPtr, paint.getStyle(),
1033 &content.entry()->fContent);
vandebo@chromium.orgff390322011-05-17 18:58:44 +00001034 SkPDFUtils::PaintPath(paint.getStyle(), pathPtr->getFillType(),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001035 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001036}
1037
edisonn@google.com2ae67e72013-02-12 01:06:38 +00001038void SkPDFDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap,
1039 const SkRect* src, const SkRect& dst,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +00001040 const SkPaint& paint,
1041 SkCanvas::DrawBitmapRectFlags flags) {
1042 // TODO: this code path must be updated to respect the flags parameter
edisonn@google.com2ae67e72013-02-12 01:06:38 +00001043 SkMatrix matrix;
1044 SkRect bitmapBounds, tmpSrc, tmpDst;
1045 SkBitmap tmpBitmap;
1046
1047 bitmapBounds.isetWH(bitmap.width(), bitmap.height());
1048
1049 // Compute matrix from the two rectangles
1050 if (src) {
1051 tmpSrc = *src;
1052 } else {
1053 tmpSrc = bitmapBounds;
1054 }
1055 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
1056
1057 const SkBitmap* bitmapPtr = &bitmap;
1058
1059 // clip the tmpSrc to the bounds of the bitmap, and recompute dstRect if
1060 // needed (if the src was clipped). No check needed if src==null.
1061 if (src) {
1062 if (!bitmapBounds.contains(*src)) {
1063 if (!tmpSrc.intersect(bitmapBounds)) {
1064 return; // nothing to draw
1065 }
1066 // recompute dst, based on the smaller tmpSrc
1067 matrix.mapRect(&tmpDst, tmpSrc);
1068 }
1069
1070 // since we may need to clamp to the borders of the src rect within
1071 // the bitmap, we extract a subset.
1072 // TODO: make sure this is handled in drawBitmap and remove from here.
1073 SkIRect srcIR;
1074 tmpSrc.roundOut(&srcIR);
1075 if (!bitmap.extractSubset(&tmpBitmap, srcIR)) {
1076 return;
1077 }
1078 bitmapPtr = &tmpBitmap;
1079
1080 // Since we did an extract, we need to adjust the matrix accordingly
1081 SkScalar dx = 0, dy = 0;
1082 if (srcIR.fLeft > 0) {
1083 dx = SkIntToScalar(srcIR.fLeft);
1084 }
1085 if (srcIR.fTop > 0) {
1086 dy = SkIntToScalar(srcIR.fTop);
1087 }
1088 if (dx || dy) {
1089 matrix.preTranslate(dx, dy);
1090 }
1091 }
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001092 this->drawBitmap(draw, *bitmapPtr, matrix, paint);
edisonn@google.com2ae67e72013-02-12 01:06:38 +00001093}
1094
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001095void SkPDFDevice::drawBitmap(const SkDraw& d, const SkBitmap& bitmap,
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001096 const SkMatrix& matrix, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001097 if (d.fClip->isEmpty()) {
1098 return;
1099 }
1100
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001101 SkMatrix transform = matrix;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001102 transform.postConcat(*d.fMatrix);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001103 this->internalDrawBitmap(transform, d.fClipStack, *d.fClip, bitmap, NULL,
1104 paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001105}
1106
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001107void SkPDFDevice::drawSprite(const SkDraw& d, const SkBitmap& bitmap,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001108 int x, int y, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001109 if (d.fClip->isEmpty()) {
1110 return;
1111 }
1112
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001113 SkMatrix matrix;
reed@google.coma6d59f62011-03-07 21:29:21 +00001114 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001115 this->internalDrawBitmap(matrix, d.fClipStack, *d.fClip, bitmap, NULL,
1116 paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001117}
1118
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001119void SkPDFDevice::drawText(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001120 SkScalar x, SkScalar y, const SkPaint& paint) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001121 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
1122 if (paint.getMaskFilter() != NULL) {
1123 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1124 // making text unreadable (e.g. same text twice when using CSS shadows).
1125 return;
1126 }
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001127 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001128 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001129 if (!content.entry()) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001130 return;
1131 }
1132
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001133 SkGlyphStorage storage(0);
1134 uint16_t* glyphIDs = NULL;
1135 size_t numGlyphs = force_glyph_encoding(paint, text, len, &storage,
1136 &glyphIDs);
1137 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001138
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001139 SkDrawCacheProc glyphCacheProc = textPaint.getDrawCacheProc();
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001140 align_text(glyphCacheProc, textPaint, glyphIDs, numGlyphs, &x, &y);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001141 content.entry()->fContent.writeText("BT\n");
1142 set_text_transform(x, y, textPaint.getTextSkewX(),
1143 &content.entry()->fContent);
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001144 size_t consumedGlyphCount = 0;
1145 while (numGlyphs > consumedGlyphCount) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001146 updateFont(textPaint, glyphIDs[consumedGlyphCount], content.entry());
1147 SkPDFFont* font = content.entry()->fState.fFont;
vandebo@chromium.org01294102011-02-28 19:52:18 +00001148 size_t availableGlyphs =
1149 font->glyphsToPDFFontEncoding(glyphIDs + consumedGlyphCount,
1150 numGlyphs - consumedGlyphCount);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001151 fFontGlyphUsage->noteGlyphUsage(font, glyphIDs + consumedGlyphCount,
1152 availableGlyphs);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001153 SkString encodedString =
reed@google.comf6c3ebd2011-07-20 17:20:28 +00001154 SkPDFString::FormatString(glyphIDs + consumedGlyphCount,
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001155 availableGlyphs, font->multiByteGlyphs());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001156 content.entry()->fContent.writeText(encodedString.c_str());
vandebo@chromium.org01294102011-02-28 19:52:18 +00001157 consumedGlyphCount += availableGlyphs;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001158 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001159 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001160 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001161}
1162
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001163void SkPDFDevice::drawPosText(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001164 const SkScalar pos[], SkScalar constY,
1165 int scalarsPerPos, const SkPaint& paint) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001166 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
1167 if (paint.getMaskFilter() != NULL) {
1168 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1169 // making text unreadable (e.g. same text twice when using CSS shadows).
1170 return;
1171 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001172 SkASSERT(1 == scalarsPerPos || 2 == scalarsPerPos);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001173 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001174 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001175 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001176 return;
1177 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001178
djsollen@google.com5df5e612013-10-03 14:42:24 +00001179#ifdef SK_BUILD_FOR_ANDROID
1180 /*
1181 * In the case that we have enabled fallback fonts on Android we need to
1182 * take the following steps to ensure that the PDF draws all characters,
1183 * regardless of their underlying font file, correctly.
1184 *
1185 * 1. Convert input into GlyphID encoding if it currently is not
1186 * 2. Iterate over the glyphIDs and identify the actual typeface that each
1187 * glyph resolves to
1188 * 3. Iterate over those typefaces and recursively call this function with
1189 * only the glyphs (and their positions) that the typeface is capable of
1190 * resolving.
1191 */
1192 if (paint.getPaintOptionsAndroid().isUsingFontFallbacks()) {
1193 uint16_t* glyphIDs = NULL;
1194 SkGlyphStorage tmpStorage(0);
1195 size_t numGlyphs = 0;
1196
1197 // convert to glyphIDs
1198 if (paint.getTextEncoding() == SkPaint::kGlyphID_TextEncoding) {
1199 numGlyphs = len / 2;
1200 glyphIDs = reinterpret_cast<uint16_t*>(const_cast<void*>(text));
1201 } else {
1202 numGlyphs = paint.textToGlyphs(text, len, NULL);
1203 tmpStorage.reset(numGlyphs);
1204 paint.textToGlyphs(text, len, tmpStorage.get());
1205 glyphIDs = tmpStorage.get();
1206 }
1207
1208 // if no typeface is provided in the paint get the default
1209 SkAutoTUnref<SkTypeface> origFace(SkSafeRef(paint.getTypeface()));
1210 if (NULL == origFace.get()) {
1211 origFace.reset(SkTypeface::RefDefault());
1212 }
1213 const uint16_t origGlyphCount = origFace->countGlyphs();
1214
1215 // keep a list of the already visited typefaces and some data about them
1216 SkTDArray<TypefaceFallbackData> visitedTypefaces;
1217
1218 // find all the typefaces needed to resolve this run of text
1219 bool usesOriginalTypeface = false;
1220 for (uint16_t x = 0; x < numGlyphs; ++x) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001221 // optimization that checks to see if original typeface can resolve
1222 // the glyph
djsollen@google.com5df5e612013-10-03 14:42:24 +00001223 if (glyphIDs[x] < origGlyphCount) {
1224 usesOriginalTypeface = true;
1225 continue;
1226 }
1227
1228 // find the fallback typeface that supports this glyph
1229 TypefaceFallbackData data;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001230 data.typeface =
1231 SkGetTypefaceForGlyphID(glyphIDs[x], origFace.get(),
1232 paint.getPaintOptionsAndroid(),
1233 &data.lowerBounds,
1234 &data.upperBounds);
djsollen@google.com5df5e612013-10-03 14:42:24 +00001235 // add the typeface and its data if we don't have it
1236 if (data.typeface && !visitedTypefaces.contains(data)) {
1237 visitedTypefaces.push(data);
1238 }
1239 }
1240
1241 // if the original font was used then add it to the list as well
1242 if (usesOriginalTypeface) {
1243 TypefaceFallbackData* data = visitedTypefaces.push();
1244 data->typeface = origFace.get();
1245 data->lowerBounds = 0;
1246 data->upperBounds = origGlyphCount;
1247 }
1248
1249 // keep a scratch glyph and pos storage
1250 SkAutoTMalloc<SkScalar> posStorage(len * scalarsPerPos);
1251 SkScalar* tmpPos = posStorage.get();
1252 SkGlyphStorage glyphStorage(numGlyphs);
1253 uint16_t* tmpGlyphIDs = glyphStorage.get();
1254
1255 // loop through all the valid typefaces, trim the glyphs to only those
1256 // resolved by the typeface, and then draw that run of glyphs
1257 for (int x = 0; x < visitedTypefaces.count(); ++x) {
1258 const TypefaceFallbackData& data = visitedTypefaces[x];
1259
1260 int tmpGlyphCount = 0;
1261 for (uint16_t y = 0; y < numGlyphs; ++y) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001262 if (glyphIDs[y] >= data.lowerBounds &&
1263 glyphIDs[y] < data.upperBounds) {
djsollen@google.com5df5e612013-10-03 14:42:24 +00001264 tmpGlyphIDs[tmpGlyphCount] = glyphIDs[y] - data.lowerBounds;
1265 memcpy(&(tmpPos[tmpGlyphCount * scalarsPerPos]),
1266 &(pos[y * scalarsPerPos]),
1267 scalarsPerPos * sizeof(SkScalar));
1268 tmpGlyphCount++;
1269 }
1270 }
1271
1272 // recursively call this function with the right typeface
1273 SkPaint tmpPaint = paint;
1274 tmpPaint.setTypeface(data.typeface);
1275 tmpPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
1276
1277 // turn off fallback chaining
1278 SkPaintOptionsAndroid paintOpts = tmpPaint.getPaintOptionsAndroid();
1279 paintOpts.setUseFontFallbacks(false);
1280 tmpPaint.setPaintOptionsAndroid(paintOpts);
1281
1282 this->drawPosText(d, tmpGlyphIDs, tmpGlyphCount * 2, tmpPos, constY,
1283 scalarsPerPos, tmpPaint);
1284 }
1285 return;
1286 }
1287#endif
1288
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001289 SkGlyphStorage storage(0);
1290 uint16_t* glyphIDs = NULL;
1291 size_t numGlyphs = force_glyph_encoding(paint, text, len, &storage,
1292 &glyphIDs);
1293 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001294
1295 SkDrawCacheProc glyphCacheProc = textPaint.getDrawCacheProc();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001296 content.entry()->fContent.writeText("BT\n");
1297 updateFont(textPaint, glyphIDs[0], content.entry());
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001298 for (size_t i = 0; i < numGlyphs; i++) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001299 SkPDFFont* font = content.entry()->fState.fFont;
vandebo@chromium.org01294102011-02-28 19:52:18 +00001300 uint16_t encodedValue = glyphIDs[i];
1301 if (font->glyphsToPDFFontEncoding(&encodedValue, 1) != 1) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001302 updateFont(textPaint, glyphIDs[i], content.entry());
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001303 i--;
1304 continue;
1305 }
vandebo@chromium.org98594282011-07-25 22:34:12 +00001306 fFontGlyphUsage->noteGlyphUsage(font, &encodedValue, 1);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001307 SkScalar x = pos[i * scalarsPerPos];
1308 SkScalar y = scalarsPerPos == 1 ? constY : pos[i * scalarsPerPos + 1];
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001309 align_text(glyphCacheProc, textPaint, glyphIDs + i, 1, &x, &y);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001310 set_text_transform(x, y, textPaint.getTextSkewX(),
1311 &content.entry()->fContent);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001312 SkString encodedString =
reed@google.comf6c3ebd2011-07-20 17:20:28 +00001313 SkPDFString::FormatString(&encodedValue, 1,
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001314 font->multiByteGlyphs());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001315 content.entry()->fContent.writeText(encodedString.c_str());
1316 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001317 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001318 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001319}
1320
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001321void SkPDFDevice::drawTextOnPath(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001322 const SkPath& path, const SkMatrix* matrix,
1323 const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001324 if (d.fClip->isEmpty()) {
1325 return;
1326 }
vandebo@chromium.org290e3bb2011-11-08 23:42:53 +00001327 d.drawTextOnPath((const char*)text, len, path, matrix, paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001328}
1329
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001330void SkPDFDevice::drawVertices(const SkDraw& d, SkCanvas::VertexMode,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001331 int vertexCount, const SkPoint verts[],
1332 const SkPoint texs[], const SkColor colors[],
1333 SkXfermode* xmode, const uint16_t indices[],
1334 int indexCount, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001335 if (d.fClip->isEmpty()) {
1336 return;
1337 }
reed@google.com85e143c2013-12-30 15:51:25 +00001338 // TODO: implement drawVertices
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001339}
1340
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001341void SkPDFDevice::drawDevice(const SkDraw& d, SkBaseDevice* device,
1342 int x, int y, const SkPaint& paint) {
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001343 if ((device->getDeviceCapabilities() & kVector_Capability) == 0) {
1344 // If we somehow get a raster device, do what our parent would do.
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00001345 INHERITED::drawDevice(d, device, x, y, paint);
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001346 return;
1347 }
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001348
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001349 // Assume that a vector capable device means that it's a PDF Device.
1350 SkPDFDevice* pdfDevice = static_cast<SkPDFDevice*>(device);
ctguil@chromium.orgf4ff39c2011-05-24 19:55:05 +00001351 if (pdfDevice->isContentEmpty()) {
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001352 return;
1353 }
1354
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001355 SkMatrix matrix;
reed@google.coma6d59f62011-03-07 21:29:21 +00001356 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001357 ScopedContentEntry content(this, d.fClipStack, *d.fClip, matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001358 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001359 return;
1360 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001361 if (content.needShape()) {
1362 SkPath shape;
1363 shape.addRect(SkRect::MakeXYWH(SkIntToScalar(x), SkIntToScalar(y),
vandebo@chromium.orgfd3c8c22013-10-30 21:00:47 +00001364 SkIntToScalar(device->width()),
1365 SkIntToScalar(device->height())));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001366 content.setShape(shape);
1367 }
1368 if (!content.needSource()) {
1369 return;
1370 }
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001371
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001372 SkAutoTUnref<SkPDFFormXObject> xObject(new SkPDFFormXObject(pdfDevice));
1373 SkPDFUtils::DrawFormXObject(this->addXObjectResource(xObject.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001374 &content.entry()->fContent);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001375
1376 // Merge glyph sets from the drawn device.
1377 fFontGlyphUsage->merge(pdfDevice->getFontGlyphUsage());
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001378}
1379
robertphillips@google.com40a1ae42012-07-13 15:36:15 +00001380void SkPDFDevice::onAttachToCanvas(SkCanvas* canvas) {
1381 INHERITED::onAttachToCanvas(canvas);
1382
1383 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
1384 fClipStack = canvas->getClipStack();
1385}
1386
1387void SkPDFDevice::onDetachFromCanvas() {
1388 INHERITED::onDetachFromCanvas();
1389
1390 fClipStack = NULL;
1391}
1392
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001393ContentEntry* SkPDFDevice::getLastContentEntry() {
1394 if (fDrawingArea == kContent_DrawingArea) {
1395 return fLastContentEntry;
1396 } else {
1397 return fLastMarginContentEntry;
1398 }
1399}
1400
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001401SkAutoTDelete<ContentEntry>* SkPDFDevice::getContentEntries() {
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001402 if (fDrawingArea == kContent_DrawingArea) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001403 return &fContentEntries;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001404 } else {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001405 return &fMarginContentEntries;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001406 }
1407}
1408
1409void SkPDFDevice::setLastContentEntry(ContentEntry* contentEntry) {
1410 if (fDrawingArea == kContent_DrawingArea) {
1411 fLastContentEntry = contentEntry;
1412 } else {
1413 fLastMarginContentEntry = contentEntry;
1414 }
1415}
1416
1417void SkPDFDevice::setDrawingArea(DrawingArea drawingArea) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001418 // A ScopedContentEntry only exists during the course of a draw call, so
1419 // this can't be called while a ScopedContentEntry exists.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001420 fDrawingArea = drawingArea;
1421}
1422
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001423SkPDFResourceDict* SkPDFDevice::getResourceDict() {
reed@google.comfc641d02012-09-20 17:52:20 +00001424 if (NULL == fResourceDict) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001425 fResourceDict = SkNEW(SkPDFResourceDict);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001426
1427 if (fGraphicStateResources.count()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001428 for (int i = 0; i < fGraphicStateResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001429 fResourceDict->insertResourceAsReference(
1430 SkPDFResourceDict::kExtGState_ResourceType,
1431 i, fGraphicStateResources[i]);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001432 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001433 }
1434
1435 if (fXObjectResources.count()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001436 for (int i = 0; i < fXObjectResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001437 fResourceDict->insertResourceAsReference(
1438 SkPDFResourceDict::kXObject_ResourceType,
1439 i, fXObjectResources[i]);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001440 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001441 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001442
1443 if (fFontResources.count()) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001444 for (int i = 0; i < fFontResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001445 fResourceDict->insertResourceAsReference(
1446 SkPDFResourceDict::kFont_ResourceType,
1447 i, fFontResources[i]);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001448 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001449 }
1450
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001451 if (fShaderResources.count()) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001452 SkAutoTUnref<SkPDFDict> patterns(new SkPDFDict());
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001453 for (int i = 0; i < fShaderResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001454 fResourceDict->insertResourceAsReference(
1455 SkPDFResourceDict::kPattern_ResourceType,
1456 i, fShaderResources[i]);
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001457 }
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001458 }
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001459 }
1460 return fResourceDict;
1461}
1462
vandebo@chromium.orgf0ec2662011-05-29 05:55:42 +00001463const SkTDArray<SkPDFFont*>& SkPDFDevice::getFontResources() const {
1464 return fFontResources;
1465}
1466
reed@google.com2a006c12012-09-19 17:05:55 +00001467SkPDFArray* SkPDFDevice::copyMediaBox() const {
1468 // should this be a singleton?
1469 SkAutoTUnref<SkPDFInt> zero(SkNEW_ARGS(SkPDFInt, (0)));
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +00001470
reed@google.com2a006c12012-09-19 17:05:55 +00001471 SkPDFArray* mediaBox = SkNEW(SkPDFArray);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001472 mediaBox->reserve(4);
1473 mediaBox->append(zero.get());
1474 mediaBox->append(zero.get());
reed@google.comc789cf12011-07-20 12:14:33 +00001475 mediaBox->appendInt(fPageSize.fWidth);
1476 mediaBox->appendInt(fPageSize.fHeight);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001477 return mediaBox;
1478}
1479
vandebo@chromium.orgc2a9b7f2011-02-24 23:22:30 +00001480SkStream* SkPDFDevice::content() const {
reed@google.com5667afc2011-06-27 14:42:15 +00001481 SkMemoryStream* result = new SkMemoryStream;
1482 result->setData(this->copyContentToData())->unref();
1483 return result;
1484}
1485
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001486void SkPDFDevice::copyContentEntriesToData(ContentEntry* entry,
1487 SkWStream* data) const {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001488 // TODO(ctguil): For margins, I'm not sure fExistingClipStack/Region is the
1489 // right thing to pass here.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001490 GraphicStackState gsState(fExistingClipStack, fExistingClipRegion, data);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001491 while (entry != NULL) {
vandebo@chromium.org663515b2012-01-05 18:45:27 +00001492 SkPoint translation;
1493 translation.iset(this->getOrigin());
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001494 translation.negate();
1495 gsState.updateClip(entry->fState.fClipStack, entry->fState.fClipRegion,
1496 translation);
1497 gsState.updateMatrix(entry->fState.fMatrix);
1498 gsState.updateDrawingState(entry->fState);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001499
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001500 SkAutoDataUnref copy(entry->fContent.copyToData());
robertphillips@google.com59f46b82012-07-10 17:30:58 +00001501 data->write(copy->data(), copy->size());
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001502 entry = entry->fNext.get();
1503 }
1504 gsState.drainStack();
1505}
1506
reed@google.com5667afc2011-06-27 14:42:15 +00001507SkData* SkPDFDevice::copyContentToData() const {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001508 SkDynamicMemoryWStream data;
1509 if (fInitialTransform.getType() != SkMatrix::kIdentity_Mask) {
1510 SkPDFUtils::AppendTransform(fInitialTransform, &data);
vandebo@chromium.orgc2a9b7f2011-02-24 23:22:30 +00001511 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001512
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001513 // TODO(aayushkumar): Apply clip along the margins. Currently, webkit
1514 // colors the contentArea white before it starts drawing into it and
1515 // that currently acts as our clip.
1516 // Also, think about adding a transform here (or assume that the values
1517 // sent across account for that)
1518 SkPDFDevice::copyContentEntriesToData(fMarginContentEntries.get(), &data);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001519
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001520 // If the content area is the entire page, then we don't need to clip
1521 // the content area (PDF area clips to the page size). Otherwise,
1522 // we have to clip to the content area; we've already applied the
1523 // initial transform, so just clip to the device size.
1524 if (fPageSize != fContentSize) {
robertphillips@google.com8637a362012-04-10 18:32:35 +00001525 SkRect r = SkRect::MakeWH(SkIntToScalar(this->width()),
1526 SkIntToScalar(this->height()));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001527 emit_clip(NULL, &r, &data);
1528 }
vandebo@chromium.org98594282011-07-25 22:34:12 +00001529
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001530 SkPDFDevice::copyContentEntriesToData(fContentEntries.get(), &data);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001531
reed@google.com5667afc2011-06-27 14:42:15 +00001532 // potentially we could cache this SkData, and only rebuild it if we
1533 // see that our state has changed.
1534 return data.copyToData();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001535}
1536
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +00001537#ifdef SK_PDF_USE_PATHOPS
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001538/* Draws an inverse filled path by using Path Ops to compute the positive
1539 * inverse using the current clip as the inverse bounds.
1540 * Return true if this was an inverse path and was properly handled,
1541 * otherwise returns false and the normal drawing routine should continue,
1542 * either as a (incorrect) fallback or because the path was not inverse
1543 * in the first place.
1544 */
1545bool SkPDFDevice::handleInversePath(const SkDraw& d, const SkPath& origPath,
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001546 const SkPaint& paint, bool pathIsMutable,
1547 const SkMatrix* prePathMatrix) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001548 if (!origPath.isInverseFillType()) {
1549 return false;
1550 }
1551
1552 if (d.fClip->isEmpty()) {
1553 return false;
1554 }
1555
1556 SkPath modifiedPath;
1557 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
1558 SkPaint noInversePaint(paint);
1559
1560 // Merge stroking operations into final path.
1561 if (SkPaint::kStroke_Style == paint.getStyle() ||
1562 SkPaint::kStrokeAndFill_Style == paint.getStyle()) {
1563 bool doFillPath = paint.getFillPath(origPath, &modifiedPath);
1564 if (doFillPath) {
1565 noInversePaint.setStyle(SkPaint::kFill_Style);
1566 noInversePaint.setStrokeWidth(0);
1567 pathPtr = &modifiedPath;
1568 } else {
1569 // To be consistent with the raster output, hairline strokes
1570 // are rendered as non-inverted.
1571 modifiedPath.toggleInverseFillType();
1572 drawPath(d, modifiedPath, paint, NULL, true);
1573 return true;
1574 }
1575 }
1576
1577 // Get bounds of clip in current transform space
1578 // (clip bounds are given in device space).
1579 SkRect bounds;
1580 SkMatrix transformInverse;
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001581 SkMatrix totalMatrix = *d.fMatrix;
1582 if (prePathMatrix) {
1583 totalMatrix.preConcat(*prePathMatrix);
1584 }
1585 if (!totalMatrix.invert(&transformInverse)) {
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001586 return false;
1587 }
1588 bounds.set(d.fClip->getBounds());
1589 transformInverse.mapRect(&bounds);
1590
1591 // Extend the bounds by the line width (plus some padding)
1592 // so the edge doesn't cause a visible stroke.
1593 bounds.outset(paint.getStrokeWidth() + SK_Scalar1,
1594 paint.getStrokeWidth() + SK_Scalar1);
1595
1596 if (!calculate_inverse_path(bounds, *pathPtr, &modifiedPath)) {
1597 return false;
1598 }
1599
edisonn@google.coma9ebd162013-10-07 13:22:21 +00001600 drawPath(d, modifiedPath, noInversePaint, prePathMatrix, true);
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001601 return true;
1602}
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +00001603#endif
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001604
epoger@google.comb58772f2013-03-08 09:09:10 +00001605bool SkPDFDevice::handleRectAnnotation(const SkRect& r, const SkMatrix& matrix,
1606 const SkPaint& p) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001607 SkAnnotation* annotationInfo = p.getAnnotation();
1608 if (!annotationInfo) {
1609 return false;
1610 }
1611 SkData* urlData = annotationInfo->find(SkAnnotationKeys::URL_Key());
epoger@google.comb58772f2013-03-08 09:09:10 +00001612 if (urlData) {
1613 handleLinkToURL(urlData, r, matrix);
reed@google.com44699382013-10-31 17:28:30 +00001614 return p.getAnnotation() != NULL;
epoger@google.comb58772f2013-03-08 09:09:10 +00001615 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001616 SkData* linkToName = annotationInfo->find(
1617 SkAnnotationKeys::Link_Named_Dest_Key());
epoger@google.comb58772f2013-03-08 09:09:10 +00001618 if (linkToName) {
1619 handleLinkToNamedDest(linkToName, r, matrix);
reed@google.com44699382013-10-31 17:28:30 +00001620 return p.getAnnotation() != NULL;
epoger@google.comb58772f2013-03-08 09:09:10 +00001621 }
1622 return false;
1623}
1624
1625bool SkPDFDevice::handlePointAnnotation(const SkPoint* points, size_t count,
1626 const SkMatrix& matrix,
1627 const SkPaint& paint) {
1628 SkAnnotation* annotationInfo = paint.getAnnotation();
1629 if (!annotationInfo) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001630 return false;
1631 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001632 SkData* nameData = annotationInfo->find(
1633 SkAnnotationKeys::Define_Named_Dest_Key());
epoger@google.comb58772f2013-03-08 09:09:10 +00001634 if (nameData) {
1635 for (size_t i = 0; i < count; i++) {
1636 defineNamedDestination(nameData, points[i], matrix);
1637 }
reed@google.com44699382013-10-31 17:28:30 +00001638 return paint.getAnnotation() != NULL;
epoger@google.comb58772f2013-03-08 09:09:10 +00001639 }
1640 return false;
1641}
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001642
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001643SkPDFDict* SkPDFDevice::createLinkAnnotation(const SkRect& r,
1644 const SkMatrix& matrix) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001645 SkMatrix transform = matrix;
1646 transform.postConcat(fInitialTransform);
1647 SkRect translatedRect;
1648 transform.mapRect(&translatedRect, r);
1649
reed@google.com2a006c12012-09-19 17:05:55 +00001650 if (NULL == fAnnotations) {
1651 fAnnotations = SkNEW(SkPDFArray);
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001652 }
epoger@google.comb58772f2013-03-08 09:09:10 +00001653 SkPDFDict* annotation(SkNEW_ARGS(SkPDFDict, ("Annot")));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001654 annotation->insertName("Subtype", "Link");
epoger@google.comb58772f2013-03-08 09:09:10 +00001655 fAnnotations->append(annotation);
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001656
epoger@google.comb58772f2013-03-08 09:09:10 +00001657 SkAutoTUnref<SkPDFArray> border(SkNEW(SkPDFArray));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001658 border->reserve(3);
1659 border->appendInt(0); // Horizontal corner radius.
1660 border->appendInt(0); // Vertical corner radius.
1661 border->appendInt(0); // Width, 0 = no border.
1662 annotation->insert("Border", border.get());
1663
epoger@google.comb58772f2013-03-08 09:09:10 +00001664 SkAutoTUnref<SkPDFArray> rect(SkNEW(SkPDFArray));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001665 rect->reserve(4);
1666 rect->appendScalar(translatedRect.fLeft);
1667 rect->appendScalar(translatedRect.fTop);
1668 rect->appendScalar(translatedRect.fRight);
1669 rect->appendScalar(translatedRect.fBottom);
1670 annotation->insert("Rect", rect.get());
1671
epoger@google.comb58772f2013-03-08 09:09:10 +00001672 return annotation;
1673}
epoger@google.com1cad8982013-03-06 00:05:13 +00001674
epoger@google.comb58772f2013-03-08 09:09:10 +00001675void SkPDFDevice::handleLinkToURL(SkData* urlData, const SkRect& r,
1676 const SkMatrix& matrix) {
1677 SkAutoTUnref<SkPDFDict> annotation(createLinkAnnotation(r, matrix));
1678
1679 SkString url(static_cast<const char *>(urlData->data()),
1680 urlData->size() - 1);
1681 SkAutoTUnref<SkPDFDict> action(SkNEW_ARGS(SkPDFDict, ("Action")));
1682 action->insertName("S", "URI");
1683 action->insert("URI", SkNEW_ARGS(SkPDFString, (url)))->unref();
1684 annotation->insert("A", action.get());
1685}
1686
1687void SkPDFDevice::handleLinkToNamedDest(SkData* nameData, const SkRect& r,
1688 const SkMatrix& matrix) {
1689 SkAutoTUnref<SkPDFDict> annotation(createLinkAnnotation(r, matrix));
1690 SkString name(static_cast<const char *>(nameData->data()),
1691 nameData->size() - 1);
1692 annotation->insert("Dest", SkNEW_ARGS(SkPDFName, (name)))->unref();
1693}
1694
1695struct NamedDestination {
1696 const SkData* nameData;
1697 SkPoint point;
1698
1699 NamedDestination(const SkData* nameData, const SkPoint& point)
1700 : nameData(nameData), point(point) {
1701 nameData->ref();
1702 }
1703
1704 ~NamedDestination() {
1705 nameData->unref();
1706 }
1707};
1708
1709void SkPDFDevice::defineNamedDestination(SkData* nameData, const SkPoint& point,
1710 const SkMatrix& matrix) {
1711 SkMatrix transform = matrix;
1712 transform.postConcat(fInitialTransform);
1713 SkPoint translatedPoint;
1714 transform.mapXY(point.x(), point.y(), &translatedPoint);
1715 fNamedDestinations.push(
1716 SkNEW_ARGS(NamedDestination, (nameData, translatedPoint)));
1717}
1718
1719void SkPDFDevice::appendDestinations(SkPDFDict* dict, SkPDFObject* page) {
1720 int nDest = fNamedDestinations.count();
1721 for (int i = 0; i < nDest; i++) {
1722 NamedDestination* dest = fNamedDestinations[i];
1723 SkAutoTUnref<SkPDFArray> pdfDest(SkNEW(SkPDFArray));
1724 pdfDest->reserve(5);
1725 pdfDest->append(SkNEW_ARGS(SkPDFObjRef, (page)))->unref();
1726 pdfDest->appendName("XYZ");
1727 pdfDest->appendScalar(dest->point.x());
1728 pdfDest->appendScalar(dest->point.y());
1729 pdfDest->appendInt(0); // Leave zoom unchanged
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001730 dict->insert(static_cast<const char *>(dest->nameData->data()),
1731 pdfDest);
epoger@google.comb58772f2013-03-08 09:09:10 +00001732 }
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001733}
1734
reed@google.comfc641d02012-09-20 17:52:20 +00001735SkPDFFormXObject* SkPDFDevice::createFormXObjectFromDevice() {
1736 SkPDFFormXObject* xobject = SkNEW_ARGS(SkPDFFormXObject, (this));
vandebo@chromium.org98594282011-07-25 22:34:12 +00001737 // We always draw the form xobjects that we create back into the device, so
1738 // we simply preserve the font usage instead of pulling it out and merging
1739 // it back in later.
1740 cleanUp(false); // Reset this device to have no content.
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001741 init();
reed@google.comfc641d02012-09-20 17:52:20 +00001742 return xobject;
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001743}
1744
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001745void SkPDFDevice::drawFormXObjectWithMask(int xObjectIndex,
1746 SkPDFFormXObject* mask,
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001747 const SkClipStack* clipStack,
1748 const SkRegion& clipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001749 SkXfermode::Mode mode,
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001750 bool invertClip) {
1751 if (clipRegion.isEmpty() && !invertClip) {
1752 return;
1753 }
1754
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001755 SkAutoTUnref<SkPDFGraphicState> sMaskGS(
1756 SkPDFGraphicState::GetSMaskGraphicState(
1757 mask, invertClip, SkPDFGraphicState::kAlpha_SMaskMode));
1758
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001759 SkMatrix identity;
1760 identity.reset();
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001761 SkPaint paint;
1762 paint.setXfermodeMode(mode);
1763 ScopedContentEntry content(this, clipStack, clipRegion, identity, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001764 if (!content.entry()) {
1765 return;
1766 }
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001767 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001768 &content.entry()->fContent);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001769 SkPDFUtils::DrawFormXObject(xObjectIndex, &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001770
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001771 sMaskGS.reset(SkPDFGraphicState::GetNoSMaskGraphicState());
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.org466f3d62011-05-18 23:06:29 +00001774}
1775
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001776ContentEntry* SkPDFDevice::setUpContentEntry(const SkClipStack* clipStack,
1777 const SkRegion& clipRegion,
1778 const SkMatrix& matrix,
1779 const SkPaint& paint,
1780 bool hasText,
reed@google.comfc641d02012-09-20 17:52:20 +00001781 SkPDFFormXObject** dst) {
1782 *dst = NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001783 if (clipRegion.isEmpty()) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001784 return NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001785 }
1786
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001787 // The clip stack can come from an SkDraw where it is technically optional.
1788 SkClipStack synthesizedClipStack;
1789 if (clipStack == NULL) {
1790 if (clipRegion == fExistingClipRegion) {
1791 clipStack = &fExistingClipStack;
1792 } else {
1793 // GraphicStackState::updateClip expects the clip stack to have
1794 // fExistingClip as a prefix, so start there, then set the clip
1795 // to the passed region.
1796 synthesizedClipStack = fExistingClipStack;
1797 SkPath clipPath;
1798 clipRegion.getBoundaryPath(&clipPath);
reed@google.com00177082011-10-12 14:34:30 +00001799 synthesizedClipStack.clipDevPath(clipPath, SkRegion::kReplace_Op,
1800 false);
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001801 clipStack = &synthesizedClipStack;
1802 }
1803 }
1804
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001805 SkXfermode::Mode xfermode = SkXfermode::kSrcOver_Mode;
1806 if (paint.getXfermode()) {
1807 paint.getXfermode()->asMode(&xfermode);
1808 }
1809
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001810 // For the following modes, we want to handle source and destination
1811 // separately, so make an object of what's already there.
1812 if (xfermode == SkXfermode::kClear_Mode ||
1813 xfermode == SkXfermode::kSrc_Mode ||
1814 xfermode == SkXfermode::kSrcIn_Mode ||
1815 xfermode == SkXfermode::kDstIn_Mode ||
1816 xfermode == SkXfermode::kSrcOut_Mode ||
1817 xfermode == SkXfermode::kDstOut_Mode ||
1818 xfermode == SkXfermode::kSrcATop_Mode ||
1819 xfermode == SkXfermode::kDstATop_Mode ||
1820 xfermode == SkXfermode::kModulate_Mode) {
1821 if (!isContentEmpty()) {
reed@google.comfc641d02012-09-20 17:52:20 +00001822 *dst = createFormXObjectFromDevice();
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001823 SkASSERT(isContentEmpty());
1824 } else if (xfermode != SkXfermode::kSrc_Mode &&
1825 xfermode != SkXfermode::kSrcOut_Mode) {
1826 // Except for Src and SrcOut, if there isn't anything already there,
1827 // then we're done.
1828 return NULL;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001829 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001830 }
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +00001831 // TODO(vandebo): Figure out how/if we can handle the following modes:
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001832 // Xor, Plus.
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001833
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001834 // Dst xfer mode doesn't draw source at all.
1835 if (xfermode == SkXfermode::kDst_Mode) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001836 return NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001837 }
1838
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001839 ContentEntry* entry;
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001840 SkAutoTDelete<ContentEntry> newEntry;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001841
1842 ContentEntry* lastContentEntry = getLastContentEntry();
1843 if (lastContentEntry && lastContentEntry->fContent.getOffset() == 0) {
1844 entry = lastContentEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001845 } else {
1846 newEntry.reset(new ContentEntry);
1847 entry = newEntry.get();
1848 }
1849
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001850 populateGraphicStateEntryFromPaint(matrix, *clipStack, clipRegion, paint,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001851 hasText, &entry->fState);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001852 if (lastContentEntry && xfermode != SkXfermode::kDstOver_Mode &&
1853 entry->fState.compareInitialState(lastContentEntry->fState)) {
1854 return lastContentEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001855 }
1856
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001857 SkAutoTDelete<ContentEntry>* contentEntries = getContentEntries();
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001858 if (!lastContentEntry) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001859 contentEntries->reset(entry);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001860 setLastContentEntry(entry);
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001861 } else if (xfermode == SkXfermode::kDstOver_Mode) {
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001862 entry->fNext.reset(contentEntries->detach());
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001863 contentEntries->reset(entry);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001864 } else {
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001865 lastContentEntry->fNext.reset(entry);
1866 setLastContentEntry(entry);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001867 }
commit-bot@chromium.orge0294402013-08-29 22:14:04 +00001868 newEntry.detach();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001869 return entry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001870}
1871
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001872void SkPDFDevice::finishContentEntry(SkXfermode::Mode xfermode,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001873 SkPDFFormXObject* dst,
1874 SkPath* shape) {
1875 if (xfermode != SkXfermode::kClear_Mode &&
1876 xfermode != SkXfermode::kSrc_Mode &&
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001877 xfermode != SkXfermode::kDstOver_Mode &&
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001878 xfermode != SkXfermode::kSrcIn_Mode &&
1879 xfermode != SkXfermode::kDstIn_Mode &&
1880 xfermode != SkXfermode::kSrcOut_Mode &&
1881 xfermode != SkXfermode::kDstOut_Mode &&
1882 xfermode != SkXfermode::kSrcATop_Mode &&
1883 xfermode != SkXfermode::kDstATop_Mode &&
1884 xfermode != SkXfermode::kModulate_Mode) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001885 SkASSERT(!dst);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001886 return;
1887 }
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001888 if (xfermode == SkXfermode::kDstOver_Mode) {
1889 SkASSERT(!dst);
1890 ContentEntry* firstContentEntry = getContentEntries()->get();
1891 if (firstContentEntry->fContent.getOffset() == 0) {
1892 // For DstOver, an empty content entry was inserted before the rest
1893 // of the content entries. If nothing was drawn, it needs to be
1894 // removed.
1895 SkAutoTDelete<ContentEntry>* contentEntries = getContentEntries();
1896 contentEntries->reset(firstContentEntry->fNext.detach());
1897 }
1898 return;
1899 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001900 if (!dst) {
1901 SkASSERT(xfermode == SkXfermode::kSrc_Mode ||
1902 xfermode == SkXfermode::kSrcOut_Mode);
1903 return;
1904 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001905
1906 ContentEntry* contentEntries = getContentEntries()->get();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001907 SkASSERT(dst);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001908 SkASSERT(!contentEntries->fNext.get());
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001909 // Changing the current content into a form-xobject will destroy the clip
1910 // objects which is fine since the xobject will already be clipped. However
1911 // if source has shape, we need to clip it too, so a copy of the clip is
1912 // saved.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001913 SkClipStack clipStack = contentEntries->fState.fClipStack;
1914 SkRegion clipRegion = contentEntries->fState.fClipRegion;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001915
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001916 SkMatrix identity;
1917 identity.reset();
1918 SkPaint stockPaint;
1919
reed@google.comfc641d02012-09-20 17:52:20 +00001920 SkAutoTUnref<SkPDFFormXObject> srcFormXObject;
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001921 if (isContentEmpty()) {
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001922 // If nothing was drawn and there's no shape, then the draw was a
1923 // no-op, but dst needs to be restored for that to be true.
1924 // If there is shape, then an empty source with Src, SrcIn, SrcOut,
1925 // DstIn, DstAtop or Modulate reduces to Clear and DstOut or SrcAtop
1926 // reduces to Dst.
1927 if (shape == NULL || xfermode == SkXfermode::kDstOut_Mode ||
1928 xfermode == SkXfermode::kSrcATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001929 ScopedContentEntry content(this, &fExistingClipStack,
1930 fExistingClipRegion, identity,
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001931 stockPaint);
1932 SkPDFUtils::DrawFormXObject(this->addXObjectResource(dst),
1933 &content.entry()->fContent);
1934 return;
1935 } else {
1936 xfermode = SkXfermode::kClear_Mode;
1937 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001938 } else {
1939 SkASSERT(!fContentEntries->fNext.get());
reed@google.comfc641d02012-09-20 17:52:20 +00001940 srcFormXObject.reset(createFormXObjectFromDevice());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001941 }
1942
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001943 // TODO(vandebo) srcFormXObject may contain alpha, but here we want it
1944 // without alpha.
1945 if (xfermode == SkXfermode::kSrcATop_Mode) {
1946 // TODO(vandebo): In order to properly support SrcATop we have to track
1947 // the shape of what's been drawn at all times. It's the intersection of
1948 // the non-transparent parts of the device and the outlines (shape) of
1949 // all images and devices drawn.
1950 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()), dst,
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001951 &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001952 SkXfermode::kSrcOver_Mode, true);
1953 } else {
1954 SkAutoTUnref<SkPDFFormXObject> dstMaskStorage;
1955 SkPDFFormXObject* dstMask = srcFormXObject.get();
1956 if (shape != NULL) {
1957 // Draw shape into a form-xobject.
1958 SkDraw d;
1959 d.fMatrix = &identity;
1960 d.fClip = &clipRegion;
1961 d.fClipStack = &clipStack;
1962 SkPaint filledPaint;
1963 filledPaint.setColor(SK_ColorBLACK);
1964 filledPaint.setStyle(SkPaint::kFill_Style);
1965 this->drawPath(d, *shape, filledPaint, NULL, true);
1966
1967 dstMaskStorage.reset(createFormXObjectFromDevice());
1968 dstMask = dstMaskStorage.get();
1969 }
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001970 drawFormXObjectWithMask(addXObjectResource(dst), dstMask,
1971 &fExistingClipStack, fExistingClipRegion,
1972 SkXfermode::kSrcOver_Mode, true);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001973 }
1974
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001975 if (xfermode == SkXfermode::kClear_Mode) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001976 return;
1977 } else if (xfermode == SkXfermode::kSrc_Mode ||
1978 xfermode == SkXfermode::kDstATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001979 ScopedContentEntry content(this, &fExistingClipStack,
1980 fExistingClipRegion, identity, stockPaint);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001981 if (content.entry()) {
1982 SkPDFUtils::DrawFormXObject(
1983 this->addXObjectResource(srcFormXObject.get()),
1984 &content.entry()->fContent);
1985 }
1986 if (xfermode == SkXfermode::kSrc_Mode) {
1987 return;
1988 }
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001989 } else if (xfermode == SkXfermode::kSrcATop_Mode) {
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00001990 ScopedContentEntry content(this, &fExistingClipStack,
1991 fExistingClipRegion, identity, stockPaint);
commit-bot@chromium.org7542dc82013-12-03 21:08:46 +00001992 if (content.entry()) {
1993 SkPDFUtils::DrawFormXObject(this->addXObjectResource(dst),
1994 &content.entry()->fContent);
1995 }
vandebo@chromium.org3b416212013-10-30 20:48:05 +00001996 }
1997
1998 SkASSERT(xfermode == SkXfermode::kSrcIn_Mode ||
1999 xfermode == SkXfermode::kDstIn_Mode ||
2000 xfermode == SkXfermode::kSrcOut_Mode ||
2001 xfermode == SkXfermode::kDstOut_Mode ||
2002 xfermode == SkXfermode::kSrcATop_Mode ||
2003 xfermode == SkXfermode::kDstATop_Mode ||
2004 xfermode == SkXfermode::kModulate_Mode);
2005
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002006 if (xfermode == SkXfermode::kSrcIn_Mode ||
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002007 xfermode == SkXfermode::kSrcOut_Mode ||
2008 xfermode == SkXfermode::kSrcATop_Mode) {
2009 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()), dst,
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00002010 &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002011 SkXfermode::kSrcOver_Mode,
2012 xfermode == SkXfermode::kSrcOut_Mode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002013 } else {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002014 SkXfermode::Mode mode = SkXfermode::kSrcOver_Mode;
2015 if (xfermode == SkXfermode::kModulate_Mode) {
2016 drawFormXObjectWithMask(addXObjectResource(srcFormXObject.get()),
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00002017 dst, &fExistingClipStack,
2018 fExistingClipRegion,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002019 SkXfermode::kSrcOver_Mode, false);
2020 mode = SkXfermode::kMultiply_Mode;
2021 }
2022 drawFormXObjectWithMask(addXObjectResource(dst), srcFormXObject.get(),
commit-bot@chromium.org4e8f1e52013-12-17 23:38:28 +00002023 &fExistingClipStack, fExistingClipRegion, mode,
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002024 xfermode == SkXfermode::kDstOut_Mode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002025 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002026}
2027
vandebo@chromium.org481aef62011-05-24 16:39:05 +00002028bool SkPDFDevice::isContentEmpty() {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00002029 ContentEntry* contentEntries = getContentEntries()->get();
2030 if (!contentEntries || contentEntries->fContent.getOffset() == 0) {
2031 SkASSERT(!contentEntries || !contentEntries->fNext.get());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00002032 return true;
2033 }
2034 return false;
2035}
2036
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002037void SkPDFDevice::populateGraphicStateEntryFromPaint(
2038 const SkMatrix& matrix,
2039 const SkClipStack& clipStack,
2040 const SkRegion& clipRegion,
2041 const SkPaint& paint,
2042 bool hasText,
2043 GraphicStateEntry* entry) {
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002044 SkASSERT(paint.getPathEffect() == NULL);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002045
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002046 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
2047 NOT_IMPLEMENTED(paint.getColorFilter() != NULL, false);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002048
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002049 entry->fMatrix = matrix;
2050 entry->fClipStack = clipStack;
2051 entry->fClipRegion = clipRegion;
vandebo@chromium.orgda6c5692012-06-28 21:37:20 +00002052 entry->fColor = SkColorSetA(paint.getColor(), 0xFF);
2053 entry->fShaderIndex = -1;
vandebo@chromium.org48543272011-02-08 19:28:07 +00002054
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002055 // PDF treats a shader as a color, so we only set one or the other.
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002056 SkAutoTUnref<SkPDFObject> pdfShader;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002057 const SkShader* shader = paint.getShader();
2058 SkColor color = paint.getColor();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002059 if (shader) {
2060 // PDF positions patterns relative to the initial transform, so
2061 // we need to apply the current transform to the shader parameters.
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002062 SkMatrix transform = matrix;
vandebo@chromium.org75f97e42011-04-11 23:24:18 +00002063 transform.postConcat(fInitialTransform);
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002064
2065 // PDF doesn't support kClamp_TileMode, so we simulate it by making
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002066 // a pattern the size of the current clip.
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002067 SkIRect bounds = clipRegion.getBounds();
vandebo@chromium.org293a7582012-03-16 19:50:37 +00002068
2069 // We need to apply the initial transform to bounds in order to get
2070 // bounds in a consistent coordinate system.
2071 SkRect boundsTemp;
2072 boundsTemp.set(bounds);
2073 fInitialTransform.mapRect(&boundsTemp);
2074 boundsTemp.roundOut(&bounds);
2075
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002076 pdfShader.reset(SkPDFShader::GetPDFShader(*shader, transform, bounds));
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002077
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00002078 if (pdfShader.get()) {
2079 // pdfShader has been canonicalized so we can directly compare
2080 // pointers.
2081 int resourceIndex = fShaderResources.find(pdfShader.get());
2082 if (resourceIndex < 0) {
2083 resourceIndex = fShaderResources.count();
2084 fShaderResources.push(pdfShader.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002085 pdfShader.get()->ref();
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00002086 }
2087 entry->fShaderIndex = resourceIndex;
2088 } else {
2089 // A color shader is treated as an invalid shader so we don't have
2090 // to set a shader just for a color.
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002091 SkShader::GradientInfo gradientInfo;
2092 SkColor gradientColor;
2093 gradientInfo.fColors = &gradientColor;
2094 gradientInfo.fColorOffsets = NULL;
2095 gradientInfo.fColorCount = 1;
2096 if (shader->asAGradient(&gradientInfo) ==
2097 SkShader::kColor_GradientType) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002098 entry->fColor = SkColorSetA(gradientColor, 0xFF);
2099 color = gradientColor;
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002100 }
2101 }
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00002102 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002103
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002104 SkAutoTUnref<SkPDFGraphicState> newGraphicState;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002105 if (color == paint.getColor()) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002106 newGraphicState.reset(
2107 SkPDFGraphicState::GetGraphicStateForPaint(paint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002108 } else {
2109 SkPaint newPaint = paint;
2110 newPaint.setColor(color);
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002111 newGraphicState.reset(
2112 SkPDFGraphicState::GetGraphicStateForPaint(newPaint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002113 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002114 int resourceIndex = addGraphicStateResource(newGraphicState.get());
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002115 entry->fGraphicStateIndex = resourceIndex;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002116
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00002117 if (hasText) {
2118 entry->fTextScaleX = paint.getTextScaleX();
2119 entry->fTextFill = paint.getStyle();
2120 } else {
2121 entry->fTextScaleX = 0;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002122 }
2123}
2124
vandebo@chromium.org6112c212011-05-13 03:50:38 +00002125int SkPDFDevice::addGraphicStateResource(SkPDFGraphicState* gs) {
2126 // Assumes that gs has been canonicalized (so we can directly compare
2127 // pointers).
2128 int result = fGraphicStateResources.find(gs);
2129 if (result < 0) {
2130 result = fGraphicStateResources.count();
2131 fGraphicStateResources.push(gs);
2132 gs->ref();
2133 }
2134 return result;
2135}
2136
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002137int SkPDFDevice::addXObjectResource(SkPDFObject* xObject) {
2138 // Assumes that xobject has been canonicalized (so we can directly compare
2139 // pointers).
2140 int result = fXObjectResources.find(xObject);
2141 if (result < 0) {
2142 result = fXObjectResources.count();
2143 fXObjectResources.push(xObject);
2144 xObject->ref();
2145 }
2146 return result;
2147}
2148
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002149void SkPDFDevice::updateFont(const SkPaint& paint, uint16_t glyphID,
2150 ContentEntry* contentEntry) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002151 SkTypeface* typeface = paint.getTypeface();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002152 if (contentEntry->fState.fFont == NULL ||
2153 contentEntry->fState.fTextSize != paint.getTextSize() ||
2154 !contentEntry->fState.fFont->hasGlyph(glyphID)) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002155 int fontIndex = getFontResourceIndex(typeface, glyphID);
commit-bot@chromium.org47401352013-07-23 21:49:29 +00002156 contentEntry->fContent.writeText("/");
2157 contentEntry->fContent.writeText(SkPDFResourceDict::getResourceName(
2158 SkPDFResourceDict::kFont_ResourceType,
2159 fontIndex).c_str());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002160 contentEntry->fContent.writeText(" ");
2161 SkPDFScalar::Append(paint.getTextSize(), &contentEntry->fContent);
2162 contentEntry->fContent.writeText(" Tf\n");
2163 contentEntry->fState.fFont = fFontResources[fontIndex];
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00002164 }
2165}
2166
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00002167int SkPDFDevice::getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID) {
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002168 SkAutoTUnref<SkPDFFont> newFont(SkPDFFont::GetFontResource(typeface,
2169 glyphID));
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00002170 int resourceIndex = fFontResources.find(newFont.get());
2171 if (resourceIndex < 0) {
2172 resourceIndex = fFontResources.count();
2173 fFontResources.push(newFont.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00002174 newFont.get()->ref();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00002175 }
2176 return resourceIndex;
2177}
2178
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002179void SkPDFDevice::internalDrawBitmap(const SkMatrix& origMatrix,
vandebo@chromium.org78dad542011-05-11 18:46:03 +00002180 const SkClipStack* clipStack,
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002181 const SkRegion& origClipRegion,
2182 const SkBitmap& origBitmap,
vandebo@chromium.orgbefebb82011-01-29 01:38:50 +00002183 const SkIRect* srcRect,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002184 const SkPaint& paint) {
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002185 SkMatrix matrix = origMatrix;
2186 SkRegion perspectiveBounds;
2187 const SkRegion* clipRegion = &origClipRegion;
2188 SkBitmap perspectiveBitmap;
2189 const SkBitmap* bitmap = &origBitmap;
2190 SkBitmap tmpSubsetBitmap;
2191
2192 // Rasterize the bitmap using perspective in a new bitmap.
2193 if (origMatrix.hasPerspective()) {
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002194 if (fRasterDpi == 0) {
2195 return;
2196 }
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002197 SkBitmap* subsetBitmap;
2198 if (srcRect) {
2199 if (!origBitmap.extractSubset(&tmpSubsetBitmap, *srcRect)) {
2200 return;
2201 }
2202 subsetBitmap = &tmpSubsetBitmap;
2203 } else {
2204 subsetBitmap = &tmpSubsetBitmap;
2205 *subsetBitmap = origBitmap;
2206 }
2207 srcRect = NULL;
2208
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002209 // Transform the bitmap in the new space, without taking into
2210 // account the initial transform.
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002211 SkPath perspectiveOutline;
2212 perspectiveOutline.addRect(
2213 SkRect::MakeWH(SkIntToScalar(subsetBitmap->width()),
2214 SkIntToScalar(subsetBitmap->height())));
2215 perspectiveOutline.transform(origMatrix);
2216
2217 // TODO(edisonn): perf - use current clip too.
2218 // Retrieve the bounds of the new shape.
2219 SkRect bounds = perspectiveOutline.getBounds();
2220
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002221 // Transform the bitmap in the new space, taking into
2222 // account the initial transform.
2223 SkMatrix total = origMatrix;
2224 total.postConcat(fInitialTransform);
2225 total.postScale(SkIntToScalar(fRasterDpi) /
2226 SkIntToScalar(DPI_FOR_RASTER_SCALE_ONE),
2227 SkIntToScalar(fRasterDpi) /
2228 SkIntToScalar(DPI_FOR_RASTER_SCALE_ONE));
2229 SkPath physicalPerspectiveOutline;
2230 physicalPerspectiveOutline.addRect(
2231 SkRect::MakeWH(SkIntToScalar(subsetBitmap->width()),
2232 SkIntToScalar(subsetBitmap->height())));
2233 physicalPerspectiveOutline.transform(total);
2234
2235 SkScalar scaleX = physicalPerspectiveOutline.getBounds().width() /
2236 bounds.width();
2237 SkScalar scaleY = physicalPerspectiveOutline.getBounds().height() /
2238 bounds.height();
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002239
2240 // TODO(edisonn): A better approach would be to use a bitmap shader
2241 // (in clamp mode) and draw a rect over the entire bounding box. Then
2242 // intersect perspectiveOutline to the clip. That will avoid introducing
2243 // alpha to the image while still giving good behavior at the edge of
2244 // the image. Avoiding alpha will reduce the pdf size and generation
2245 // CPU time some.
2246
reed@google.com9ebcac52014-01-24 18:53:42 +00002247 const int w = SkScalarCeilToInt(physicalPerspectiveOutline.getBounds().width());
2248 const int h = SkScalarCeilToInt(physicalPerspectiveOutline.getBounds().height());
2249 if (!perspectiveBitmap.allocPixels(SkImageInfo::MakeN32Premul(w, h))) {
2250 return;
2251 }
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002252 perspectiveBitmap.eraseColor(SK_ColorTRANSPARENT);
2253
2254 SkBitmapDevice device(perspectiveBitmap);
2255 SkCanvas canvas(&device);
2256
2257 SkScalar deltaX = bounds.left();
2258 SkScalar deltaY = bounds.top();
2259
2260 SkMatrix offsetMatrix = origMatrix;
2261 offsetMatrix.postTranslate(-deltaX, -deltaY);
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002262 offsetMatrix.postScale(scaleX, scaleY);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002263
2264 // Translate the draw in the new canvas, so we perfectly fit the
2265 // shape in the bitmap.
2266 canvas.setMatrix(offsetMatrix);
2267
2268 canvas.drawBitmap(*subsetBitmap, SkIntToScalar(0), SkIntToScalar(0));
2269
2270 // Make sure the final bits are in the bitmap.
2271 canvas.flush();
2272
edisonn@google.com73a7ea32013-11-11 20:55:15 +00002273 // In the new space, we use the identity matrix translated
2274 // and scaled to reflect DPI.
2275 matrix.setScale(1 / scaleX, 1 / scaleY);
2276 matrix.postTranslate(deltaX, deltaY);
2277
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002278 perspectiveBounds.setRect(
2279 SkIRect::MakeXYWH(SkScalarFloorToInt(bounds.x()),
2280 SkScalarFloorToInt(bounds.y()),
2281 SkScalarCeilToInt(bounds.width()),
2282 SkScalarCeilToInt(bounds.height())));
2283 clipRegion = &perspectiveBounds;
2284 srcRect = NULL;
2285 bitmap = &perspectiveBitmap;
2286 }
2287
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002288 SkMatrix scaled;
2289 // Adjust for origin flip.
vandebo@chromium.org663515b2012-01-05 18:45:27 +00002290 scaled.setScale(SK_Scalar1, -SK_Scalar1);
2291 scaled.postTranslate(0, SK_Scalar1);
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002292 // Scale the image up from 1x1 to WxH.
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002293 SkIRect subset = SkIRect::MakeWH(bitmap->width(), bitmap->height());
reed@google.coma6d59f62011-03-07 21:29:21 +00002294 scaled.postScale(SkIntToScalar(subset.width()),
2295 SkIntToScalar(subset.height()));
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002296 scaled.postConcat(matrix);
edisonn@google.com9cf0cb12013-10-16 18:32:35 +00002297 ScopedContentEntry content(this, clipStack, *clipRegion, scaled, paint);
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002298 if (!content.entry() || (srcRect && !subset.intersect(*srcRect))) {
2299 return;
2300 }
2301 if (content.needShape()) {
2302 SkPath shape;
vandebo@chromium.orgfd3c8c22013-10-30 21:00:47 +00002303 shape.addRect(SkRect::MakeWH(SkIntToScalar(subset.width()),
2304 SkIntToScalar( subset.height())));
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002305 shape.transform(matrix);
2306 content.setShape(shape);
2307 }
2308 if (!content.needSource()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00002309 return;
2310 }
2311
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002312 SkAutoTUnref<SkPDFImage> image(
2313 SkPDFImage::CreateImage(*bitmap, subset, fEncoder));
vandebo@chromium.org25adce82011-05-09 08:05:01 +00002314 if (!image) {
2315 return;
2316 }
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00002317
vandebo@chromium.org3b416212013-10-30 20:48:05 +00002318 SkPDFUtils::DrawFormXObject(this->addXObjectResource(image.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00002319 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002320}
reed@google.com982cb872011-12-07 18:34:08 +00002321
2322bool SkPDFDevice::onReadPixels(const SkBitmap& bitmap, int x, int y,
2323 SkCanvas::Config8888) {
2324 return false;
2325}
reed@google.comb55deeb2012-01-06 14:43:09 +00002326
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +00002327bool SkPDFDevice::allowImageFilter(const SkImageFilter*) {
reed@google.comb55deeb2012-01-06 14:43:09 +00002328 return false;
2329}