blob: 410b04992615caabb291ec9952c8c71b265705b7 [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"
30#include "SkString.h"
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000031#include "SkTextFormatParams.h"
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +000032#include "SkTemplates.h"
reed@google.comfed86bd2013-03-14 15:04:57 +000033#include "SkTypefacePriv.h"
edisonn@google.com6addb192013-04-02 15:33:08 +000034#include "SkTSet.h"
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000035
36// Utility functions
37
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000038static void emit_pdf_color(SkColor color, SkWStream* result) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000039 SkASSERT(SkColorGetA(color) == 0xFF); // We handle alpha elsewhere.
40 SkScalar colorMax = SkIntToScalar(0xFF);
vandebo@chromium.org094316b2011-03-04 03:15:13 +000041 SkPDFScalar::Append(
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000042 SkScalarDiv(SkIntToScalar(SkColorGetR(color)), colorMax), result);
43 result->writeText(" ");
vandebo@chromium.org094316b2011-03-04 03:15:13 +000044 SkPDFScalar::Append(
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000045 SkScalarDiv(SkIntToScalar(SkColorGetG(color)), colorMax), result);
46 result->writeText(" ");
vandebo@chromium.org094316b2011-03-04 03:15:13 +000047 SkPDFScalar::Append(
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +000048 SkScalarDiv(SkIntToScalar(SkColorGetB(color)), colorMax), result);
49 result->writeText(" ");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000050}
51
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000052static SkPaint calculate_text_paint(const SkPaint& paint) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000053 SkPaint result = paint;
54 if (result.isFakeBoldText()) {
55 SkScalar fakeBoldScale = SkScalarInterpFunc(result.getTextSize(),
56 kStdFakeBoldInterpKeys,
57 kStdFakeBoldInterpValues,
58 kStdFakeBoldInterpLength);
59 SkScalar width = SkScalarMul(result.getTextSize(), fakeBoldScale);
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000060 if (result.getStyle() == SkPaint::kFill_Style) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000061 result.setStyle(SkPaint::kStrokeAndFill_Style);
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000062 } else {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000063 width += result.getStrokeWidth();
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000064 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000065 result.setStrokeWidth(width);
66 }
67 return result;
68}
69
70// Stolen from measure_text in SkDraw.cpp and then tweaked.
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +000071static void align_text(SkDrawCacheProc glyphCacheProc, const SkPaint& paint,
bungeman@google.com9a87cee2011-08-23 17:02:18 +000072 const uint16_t* glyphs, size_t len,
73 SkScalar* x, SkScalar* y) {
74 if (paint.getTextAlign() == SkPaint::kLeft_Align) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000075 return;
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000076 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000077
78 SkMatrix ident;
79 ident.reset();
bungeman@google.com532470f2013-01-22 19:25:14 +000080 SkAutoGlyphCache autoCache(paint, NULL, &ident);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000081 SkGlyphCache* cache = autoCache.getCache();
82
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +000083 const char* start = reinterpret_cast<const char*>(glyphs);
84 const char* stop = reinterpret_cast<const char*>(glyphs + len);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000085 SkFixed xAdv = 0, yAdv = 0;
86
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000087 // TODO(vandebo): This probably needs to take kerning into account.
vandebo@chromium.org28be72b2010-11-11 21:37:00 +000088 while (start < stop) {
89 const SkGlyph& glyph = glyphCacheProc(cache, &start, 0, 0);
90 xAdv += glyph.fAdvanceX;
91 yAdv += glyph.fAdvanceY;
92 };
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +000093 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 SkScalar xAdj = SkFixedToScalar(xAdv);
98 SkScalar yAdj = SkFixedToScalar(yAdv);
99 if (paint.getTextAlign() == SkPaint::kCenter_Align) {
100 xAdj = SkScalarHalf(xAdj);
101 yAdj = SkScalarHalf(yAdj);
102 }
103 *x = *x - xAdj;
104 *y = *y - yAdj;
105}
106
reed@google.comfed86bd2013-03-14 15:04:57 +0000107static size_t max_glyphid_for_typeface(SkTypeface* typeface) {
108 SkAutoResolveDefaultTypeface autoResolve(typeface);
109 typeface = autoResolve.get();
commit-bot@chromium.org6a4ba5b2013-07-17 21:55:08 +0000110 return typeface->countGlyphs() - 1;
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +0000111}
112
113typedef SkAutoSTMalloc<128, uint16_t> SkGlyphStorage;
114
115static size_t force_glyph_encoding(const SkPaint& paint, const void* text,
116 size_t len, SkGlyphStorage* storage,
117 uint16_t** glyphIDs) {
118 // Make sure we have a glyph id encoding.
119 if (paint.getTextEncoding() != SkPaint::kGlyphID_TextEncoding) {
120 size_t numGlyphs = paint.textToGlyphs(text, len, NULL);
121 storage->reset(numGlyphs);
122 paint.textToGlyphs(text, len, storage->get());
123 *glyphIDs = storage->get();
124 return numGlyphs;
125 }
126
127 // For user supplied glyph ids we need to validate them.
128 SkASSERT((len & 1) == 0);
129 size_t numGlyphs = len / 2;
130 const uint16_t* input =
131 reinterpret_cast<uint16_t*>(const_cast<void*>((text)));
132
133 int maxGlyphID = max_glyphid_for_typeface(paint.getTypeface());
134 size_t validated;
135 for (validated = 0; validated < numGlyphs; ++validated) {
136 if (input[validated] > maxGlyphID) {
137 break;
138 }
139 }
140 if (validated >= numGlyphs) {
141 *glyphIDs = reinterpret_cast<uint16_t*>(const_cast<void*>((text)));
142 return numGlyphs;
143 }
144
145 // Silently drop anything out of range.
146 storage->reset(numGlyphs);
147 if (validated > 0) {
148 memcpy(storage->get(), input, validated * sizeof(uint16_t));
149 }
150
151 for (size_t i = validated; i < numGlyphs; ++i) {
152 storage->get()[i] = input[i];
153 if (input[i] > maxGlyphID) {
154 storage->get()[i] = 0;
155 }
156 }
157 *glyphIDs = storage->get();
158 return numGlyphs;
159}
160
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000161static void set_text_transform(SkScalar x, SkScalar y, SkScalar textSkewX,
162 SkWStream* content) {
163 // Flip the text about the x-axis to account for origin swap and include
164 // the passed parameters.
165 content->writeText("1 0 ");
166 SkPDFScalar::Append(0 - textSkewX, content);
167 content->writeText(" -1 ");
168 SkPDFScalar::Append(x, content);
169 content->writeText(" ");
170 SkPDFScalar::Append(y, content);
171 content->writeText(" Tm\n");
172}
173
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000174// It is important to not confuse GraphicStateEntry with SkPDFGraphicState, the
175// later being our representation of an object in the PDF file.
176struct GraphicStateEntry {
177 GraphicStateEntry();
178
179 // Compare the fields we care about when setting up a new content entry.
180 bool compareInitialState(const GraphicStateEntry& b);
181
182 SkMatrix fMatrix;
183 // We can't do set operations on Paths, though PDF natively supports
184 // intersect. If the clip stack does anything other than intersect,
185 // we have to fall back to the region. Treat fClipStack as authoritative.
186 // See http://code.google.com/p/skia/issues/detail?id=221
187 SkClipStack fClipStack;
188 SkRegion fClipRegion;
189
190 // When emitting the content entry, we will ensure the graphic state
191 // is set to these values first.
192 SkColor fColor;
193 SkScalar fTextScaleX; // Zero means we don't care what the value is.
194 SkPaint::Style fTextFill; // Only if TextScaleX is non-zero.
195 int fShaderIndex;
196 int fGraphicStateIndex;
197
198 // We may change the font (i.e. for Type1 support) within a
199 // ContentEntry. This is the one currently in effect, or NULL if none.
200 SkPDFFont* fFont;
201 // In PDF, text size has no default value. It is only valid if fFont is
202 // not NULL.
203 SkScalar fTextSize;
204};
205
206GraphicStateEntry::GraphicStateEntry() : fColor(SK_ColorBLACK),
207 fTextScaleX(SK_Scalar1),
208 fTextFill(SkPaint::kFill_Style),
209 fShaderIndex(-1),
210 fGraphicStateIndex(-1),
211 fFont(NULL),
212 fTextSize(SK_ScalarNaN) {
213 fMatrix.reset();
214}
215
216bool GraphicStateEntry::compareInitialState(const GraphicStateEntry& b) {
217 return fColor == b.fColor &&
218 fShaderIndex == b.fShaderIndex &&
219 fGraphicStateIndex == b.fGraphicStateIndex &&
220 fMatrix == b.fMatrix &&
221 fClipStack == b.fClipStack &&
222 (fTextScaleX == 0 ||
223 b.fTextScaleX == 0 ||
224 (fTextScaleX == b.fTextScaleX && fTextFill == b.fTextFill));
225}
226
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000227class GraphicStackState {
228public:
229 GraphicStackState(const SkClipStack& existingClipStack,
230 const SkRegion& existingClipRegion,
231 SkWStream* contentStream)
232 : fStackDepth(0),
233 fContentStream(contentStream) {
234 fEntries[0].fClipStack = existingClipStack;
235 fEntries[0].fClipRegion = existingClipRegion;
236 }
237
238 void updateClip(const SkClipStack& clipStack, const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000239 const SkPoint& translation);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000240 void updateMatrix(const SkMatrix& matrix);
241 void updateDrawingState(const GraphicStateEntry& state);
242
243 void drainStack();
244
245private:
246 void push();
247 void pop();
248 GraphicStateEntry* currentEntry() { return &fEntries[fStackDepth]; }
249
250 // Conservative limit on save depth, see impl. notes in PDF 1.4 spec.
251 static const int kMaxStackDepth = 12;
252 GraphicStateEntry fEntries[kMaxStackDepth + 1];
253 int fStackDepth;
254 SkWStream* fContentStream;
255};
256
257void GraphicStackState::drainStack() {
258 while (fStackDepth) {
259 pop();
260 }
261}
262
263void GraphicStackState::push() {
264 SkASSERT(fStackDepth < kMaxStackDepth);
265 fContentStream->writeText("q\n");
266 fStackDepth++;
267 fEntries[fStackDepth] = fEntries[fStackDepth - 1];
268}
269
270void GraphicStackState::pop() {
271 SkASSERT(fStackDepth > 0);
272 fContentStream->writeText("Q\n");
273 fStackDepth--;
274}
275
robertphillips@google.com80214e22012-07-20 15:33:18 +0000276// This function initializes iter to be an iterator on the "stack" argument
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000277// and then skips over the leading entries as specified in prefix. It requires
278// and asserts that "prefix" will be a prefix to "stack."
279static void skip_clip_stack_prefix(const SkClipStack& prefix,
280 const SkClipStack& stack,
robertphillips@google.comc0290622012-07-16 21:20:03 +0000281 SkClipStack::Iter* iter) {
robertphillips@google.com80214e22012-07-20 15:33:18 +0000282 SkClipStack::B2TIter prefixIter(prefix);
283 iter->reset(stack, SkClipStack::Iter::kBottom_IterStart);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000284
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000285 const SkClipStack::Element* prefixEntry;
286 const SkClipStack::Element* iterEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000287
288 for (prefixEntry = prefixIter.next(); prefixEntry;
robertphillips@google.comc0290622012-07-16 21:20:03 +0000289 prefixEntry = prefixIter.next()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000290 iterEntry = iter->next();
291 SkASSERT(iterEntry);
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000292 // Because of SkClipStack does internal intersection, the last clip
293 // entry may differ.
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +0000294 if (*prefixEntry != *iterEntry) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000295 SkASSERT(prefixEntry->getOp() == SkRegion::kIntersect_Op);
296 SkASSERT(iterEntry->getOp() == SkRegion::kIntersect_Op);
297 SkASSERT(iterEntry->getType() == prefixEntry->getType());
robertphillips@google.comc0290622012-07-16 21:20:03 +0000298 // back up the iterator by one
299 iter->prev();
vandebo@chromium.org8887ede2011-05-25 01:27:52 +0000300 prefixEntry = prefixIter.next();
301 break;
302 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000303 }
304
305 SkASSERT(prefixEntry == NULL);
306}
307
308static void emit_clip(SkPath* clipPath, SkRect* clipRect,
309 SkWStream* contentStream) {
310 SkASSERT(clipPath || clipRect);
311
312 SkPath::FillType clipFill;
313 if (clipPath) {
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000314 SkPDFUtils::EmitPath(*clipPath, SkPaint::kFill_Style, contentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000315 clipFill = clipPath->getFillType();
vandebo@chromium.org3e7b2802011-06-27 18:12:31 +0000316 } else {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000317 SkPDFUtils::AppendRectangle(*clipRect, contentStream);
318 clipFill = SkPath::kWinding_FillType;
319 }
320
321 NOT_IMPLEMENTED(clipFill == SkPath::kInverseEvenOdd_FillType, false);
322 NOT_IMPLEMENTED(clipFill == SkPath::kInverseWinding_FillType, false);
323 if (clipFill == SkPath::kEvenOdd_FillType) {
324 contentStream->writeText("W* n\n");
325 } else {
326 contentStream->writeText("W n\n");
327 }
328}
329
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000330#ifdef SK_PDF_USE_PATHOPS
331/* Calculate an inverted path's equivalent non-inverted path, given the
332 * canvas bounds.
333 * outPath may alias with invPath (since this is supported by PathOps).
334 */
335static bool calculate_inverse_path(const SkRect& bounds, const SkPath& invPath,
336 SkPath* outPath) {
337 SkASSERT(invPath.isInverseFillType());
338
339 SkPath clipPath;
340 clipPath.addRect(bounds);
341
342 return Op(clipPath, invPath, kIntersect_PathOp, outPath);
343}
344
345// Sanity check the numerical values of the SkRegion ops and PathOps ops
346// enums so region_op_to_pathops_op can do a straight passthrough cast.
347// If these are failing, it may be necessary to make region_op_to_pathops_op
348// do more.
349SK_COMPILE_ASSERT(SkRegion::kDifference_Op == (int)kDifference_PathOp,
350 region_pathop_mismatch);
351SK_COMPILE_ASSERT(SkRegion::kIntersect_Op == (int)kIntersect_PathOp,
352 region_pathop_mismatch);
353SK_COMPILE_ASSERT(SkRegion::kUnion_Op == (int)kUnion_PathOp,
354 region_pathop_mismatch);
355SK_COMPILE_ASSERT(SkRegion::kXOR_Op == (int)kXOR_PathOp,
356 region_pathop_mismatch);
357SK_COMPILE_ASSERT(SkRegion::kReverseDifference_Op ==
358 (int)kReverseDifference_PathOp,
359 region_pathop_mismatch);
360
361static SkPathOp region_op_to_pathops_op(SkRegion::Op op) {
362 SkASSERT(op >= 0);
363 SkASSERT(op <= SkRegion::kReverseDifference_Op);
364 return (SkPathOp)op;
365}
366
367/* Uses Path Ops to calculate a vector SkPath clip from a clip stack.
368 * Returns true if successful, or false if not successful.
369 * If successful, the resulting clip is stored in outClipPath.
370 * If not successful, outClipPath is undefined, and a fallback method
371 * should be used.
372 */
373static bool get_clip_stack_path(const SkMatrix& transform,
374 const SkClipStack& clipStack,
375 const SkRegion& clipRegion,
376 SkPath* outClipPath) {
377 outClipPath->reset();
378 outClipPath->setFillType(SkPath::kInverseWinding_FillType);
379
380 const SkClipStack::Element* clipEntry;
381 SkClipStack::Iter iter;
382 iter.reset(clipStack, SkClipStack::Iter::kBottom_IterStart);
383 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
384 SkPath entryPath;
385 if (SkClipStack::Element::kEmpty_Type == clipEntry->getType()) {
386 outClipPath->reset();
387 outClipPath->setFillType(SkPath::kInverseWinding_FillType);
388 continue;
389 } else if (SkClipStack::Element::kRect_Type == clipEntry->getType()) {
390 entryPath.addRect(clipEntry->getRect());
391 } else if (SkClipStack::Element::kPath_Type == clipEntry->getType()) {
392 entryPath = clipEntry->getPath();
393 }
394 entryPath.transform(transform);
395
396 if (SkRegion::kReplace_Op == clipEntry->getOp()) {
397 *outClipPath = entryPath;
398 } else {
399 SkPathOp op = region_op_to_pathops_op(clipEntry->getOp());
400 if (!Op(*outClipPath, entryPath, op, outClipPath)) {
401 return false;
402 }
403 }
404 }
405
406 if (outClipPath->isInverseFillType()) {
407 // The bounds are slightly outset to ensure this is correct in the
408 // face of floating-point accuracy and possible SkRegion bitmap
409 // approximations.
410 SkRect clipBounds = SkRect::Make(clipRegion.getBounds());
411 clipBounds.outset(SK_Scalar1, SK_Scalar1);
412 if (!calculate_inverse_path(clipBounds, *outClipPath, outClipPath)) {
413 return false;
414 }
415 }
416 return true;
417}
418#endif
419
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +0000420// TODO(vandebo): Take advantage of SkClipStack::getSaveCount(), the PDF
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000421// graphic state stack, and the fact that we can know all the clips used
422// on the page to optimize this.
423void GraphicStackState::updateClip(const SkClipStack& clipStack,
424 const SkRegion& clipRegion,
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000425 const SkPoint& translation) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000426 if (clipStack == currentEntry()->fClipStack) {
427 return;
428 }
429
430 while (fStackDepth > 0) {
431 pop();
432 if (clipStack == currentEntry()->fClipStack) {
433 return;
434 }
435 }
436 push();
437
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +0000438 currentEntry()->fClipStack = clipStack;
439 currentEntry()->fClipRegion = clipRegion;
440
441 SkMatrix transform;
442 transform.setTranslate(translation.fX, translation.fY);
443
444#ifdef SK_PDF_USE_PATHOPS
445 SkPath clipPath;
446 if (get_clip_stack_path(transform, clipStack, clipRegion, &clipPath)) {
447 emit_clip(&clipPath, NULL, fContentStream);
448 return;
449 }
450#endif
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000451 // gsState->initialEntry()->fClipStack/Region specifies the clip that has
452 // already been applied. (If this is a top level device, then it specifies
453 // a clip to the content area. If this is a layer, then it specifies
454 // the clip in effect when the layer was created.) There's no need to
455 // reapply that clip; SKCanvas's SkDrawIter will draw anything outside the
456 // initial clip on the parent layer. (This means there's a bug if the user
457 // expands the clip and then uses any xfer mode that uses dst:
458 // http://code.google.com/p/skia/issues/detail?id=228 )
robertphillips@google.comc0290622012-07-16 21:20:03 +0000459 SkClipStack::Iter iter;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000460 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
461
462 // If the clip stack does anything other than intersect or if it uses
463 // an inverse fill type, we have to fall back to the clip region.
464 bool needRegion = false;
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000465 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000466 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000467 if (clipEntry->getOp() != SkRegion::kIntersect_Op || clipEntry->isInverseFilled()) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000468 needRegion = true;
469 break;
470 }
471 }
472
473 if (needRegion) {
474 SkPath clipPath;
475 SkAssertResult(clipRegion.getBoundaryPath(&clipPath));
476 emit_clip(&clipPath, NULL, fContentStream);
477 } else {
478 skip_clip_stack_prefix(fEntries[0].fClipStack, clipStack, &iter);
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000479 const SkClipStack::Element* clipEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000480 for (clipEntry = iter.next(); clipEntry; clipEntry = iter.next()) {
bsalomon@google.com8182fa02012-12-04 14:06:06 +0000481 SkASSERT(clipEntry->getOp() == SkRegion::kIntersect_Op);
482 switch (clipEntry->getType()) {
483 case SkClipStack::Element::kRect_Type: {
484 SkRect translatedClip;
485 transform.mapRect(&translatedClip, clipEntry->getRect());
486 emit_clip(NULL, &translatedClip, fContentStream);
487 break;
488 }
489 case SkClipStack::Element::kPath_Type: {
490 SkPath translatedPath;
491 clipEntry->getPath().transform(transform, &translatedPath);
492 emit_clip(&translatedPath, NULL, fContentStream);
493 break;
494 }
495 default:
496 SkASSERT(false);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000497 }
498 }
499 }
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000500}
501
502void GraphicStackState::updateMatrix(const SkMatrix& matrix) {
503 if (matrix == currentEntry()->fMatrix) {
504 return;
505 }
506
507 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) {
508 SkASSERT(fStackDepth > 0);
509 SkASSERT(fEntries[fStackDepth].fClipStack ==
510 fEntries[fStackDepth -1].fClipStack);
511 pop();
512
513 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask);
514 }
515 if (matrix.getType() == SkMatrix::kIdentity_Mask) {
516 return;
517 }
518
519 push();
520 SkPDFUtils::AppendTransform(matrix, fContentStream);
521 currentEntry()->fMatrix = matrix;
522}
523
524void GraphicStackState::updateDrawingState(const GraphicStateEntry& state) {
525 // PDF treats a shader as a color, so we only set one or the other.
526 if (state.fShaderIndex >= 0) {
527 if (state.fShaderIndex != currentEntry()->fShaderIndex) {
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +0000528 SkPDFUtils::ApplyPattern(state.fShaderIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000529 currentEntry()->fShaderIndex = state.fShaderIndex;
530 }
531 } else {
532 if (state.fColor != currentEntry()->fColor ||
533 currentEntry()->fShaderIndex >= 0) {
534 emit_pdf_color(state.fColor, fContentStream);
535 fContentStream->writeText("RG ");
536 emit_pdf_color(state.fColor, fContentStream);
537 fContentStream->writeText("rg\n");
538 currentEntry()->fColor = state.fColor;
539 currentEntry()->fShaderIndex = -1;
540 }
541 }
542
543 if (state.fGraphicStateIndex != currentEntry()->fGraphicStateIndex) {
vandebo@chromium.org6112c212011-05-13 03:50:38 +0000544 SkPDFUtils::ApplyGraphicState(state.fGraphicStateIndex, fContentStream);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000545 currentEntry()->fGraphicStateIndex = state.fGraphicStateIndex;
546 }
547
548 if (state.fTextScaleX) {
549 if (state.fTextScaleX != currentEntry()->fTextScaleX) {
550 SkScalar pdfScale = SkScalarMul(state.fTextScaleX,
551 SkIntToScalar(100));
552 SkPDFScalar::Append(pdfScale, fContentStream);
553 fContentStream->writeText(" Tz\n");
554 currentEntry()->fTextScaleX = state.fTextScaleX;
555 }
556 if (state.fTextFill != currentEntry()->fTextFill) {
557 SK_COMPILE_ASSERT(SkPaint::kFill_Style == 0, enum_must_match_value);
558 SK_COMPILE_ASSERT(SkPaint::kStroke_Style == 1,
559 enum_must_match_value);
560 SK_COMPILE_ASSERT(SkPaint::kStrokeAndFill_Style == 2,
561 enum_must_match_value);
562 fContentStream->writeDecAsText(state.fTextFill);
563 fContentStream->writeText(" Tr\n");
564 currentEntry()->fTextFill = state.fTextFill;
565 }
566 }
567}
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000568
vandebo@chromium.org98594282011-07-25 22:34:12 +0000569SkDevice* SkPDFDevice::onCreateCompatibleDevice(SkBitmap::Config config,
570 int width, int height,
bsalomon@google.come97f0852011-06-17 13:10:25 +0000571 bool isOpaque,
572 Usage usage) {
573 SkMatrix initialTransform;
574 initialTransform.reset();
575 SkISize size = SkISize::Make(width, height);
576 return SkNEW_ARGS(SkPDFDevice, (size, size, initialTransform));
577}
578
579
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000580struct ContentEntry {
581 GraphicStateEntry fState;
582 SkDynamicMemoryWStream fContent;
583 SkTScopedPtr<ContentEntry> fNext;
edisonn@google.com2e6a69b2013-02-05 23:13:39 +0000584
585 // If the stack is too deep we could get Stack Overflow.
586 // So we manually destruct the object.
587 ~ContentEntry() {
588 ContentEntry* val = fNext.release();
edisonn@google.com2e6a69b2013-02-05 23:13:39 +0000589 while (val != NULL) {
590 ContentEntry* valNext = val->fNext.release();
591 // When the destructor is called, fNext is NULL and exits.
592 delete val;
593 val = valNext;
594 }
595 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000596};
597
598// A helper class to automatically finish a ContentEntry at the end of a
599// drawing method and maintain the state needed between set up and finish.
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000600class ScopedContentEntry {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000601public:
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000602 ScopedContentEntry(SkPDFDevice* device, const SkDraw& draw,
603 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000604 : fDevice(device),
605 fContentEntry(NULL),
606 fXfermode(SkXfermode::kSrcOver_Mode) {
607 init(draw.fClipStack, *draw.fClip, *draw.fMatrix, paint, hasText);
608 }
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000609 ScopedContentEntry(SkPDFDevice* device, const SkClipStack* clipStack,
610 const SkRegion& clipRegion, const SkMatrix& matrix,
611 const SkPaint& paint, bool hasText = false)
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000612 : fDevice(device),
613 fContentEntry(NULL),
614 fXfermode(SkXfermode::kSrcOver_Mode) {
615 init(clipStack, clipRegion, matrix, paint, hasText);
616 }
617
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000618 ~ScopedContentEntry() {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000619 if (fContentEntry) {
reed@google.comfc641d02012-09-20 17:52:20 +0000620 fDevice->finishContentEntry(fXfermode, fDstFormXObject);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000621 }
reed@google.comfc641d02012-09-20 17:52:20 +0000622 SkSafeUnref(fDstFormXObject);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000623 }
624
625 ContentEntry* entry() { return fContentEntry; }
626private:
627 SkPDFDevice* fDevice;
628 ContentEntry* fContentEntry;
629 SkXfermode::Mode fXfermode;
reed@google.comfc641d02012-09-20 17:52:20 +0000630 SkPDFFormXObject* fDstFormXObject;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000631
632 void init(const SkClipStack* clipStack, const SkRegion& clipRegion,
633 const SkMatrix& matrix, const SkPaint& paint, bool hasText) {
reed@google.comfc641d02012-09-20 17:52:20 +0000634 fDstFormXObject = NULL;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000635 if (paint.getXfermode()) {
636 paint.getXfermode()->asMode(&fXfermode);
637 }
638 fContentEntry = fDevice->setUpContentEntry(clipStack, clipRegion,
639 matrix, paint, hasText,
640 &fDstFormXObject);
641 }
642};
643
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000644////////////////////////////////////////////////////////////////////////////////
645
ctguil@chromium.org15261292011-04-29 17:54:16 +0000646static inline SkBitmap makeContentBitmap(const SkISize& contentSize,
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000647 const SkMatrix* initialTransform) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000648 SkBitmap bitmap;
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000649 if (initialTransform) {
650 // Compute the size of the drawing area.
651 SkVector drawingSize;
652 SkMatrix inverse;
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000653 drawingSize.set(SkIntToScalar(contentSize.fWidth),
654 SkIntToScalar(contentSize.fHeight));
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000655 if (!initialTransform->invert(&inverse)) {
vandebo@chromium.org386dfc02012-04-17 22:31:52 +0000656 // This shouldn't happen, initial transform should be invertible.
657 SkASSERT(false);
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000658 inverse.reset();
659 }
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000660 inverse.mapVectors(&drawingSize, 1);
661 SkISize size = SkSize::Make(drawingSize.fX, drawingSize.fY).toRound();
662 bitmap.setConfig(SkBitmap::kNo_Config, abs(size.fWidth),
663 abs(size.fHeight));
664 } else {
665 bitmap.setConfig(SkBitmap::kNo_Config, abs(contentSize.fWidth),
666 abs(contentSize.fHeight));
667 }
668
reed@android.comf2b98d62010-12-20 18:26:13 +0000669 return bitmap;
670}
671
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000672// TODO(vandebo) change pageSize to SkSize.
ctguil@chromium.org15261292011-04-29 17:54:16 +0000673SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize,
vandebo@chromium.org75f97e42011-04-11 23:24:18 +0000674 const SkMatrix& initialTransform)
reed@google.comaf951c92011-06-16 19:10:39 +0000675 : SkDevice(makeContentBitmap(contentSize, &initialTransform)),
ctguil@chromium.org15261292011-04-29 17:54:16 +0000676 fPageSize(pageSize),
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000677 fContentSize(contentSize),
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000678 fLastContentEntry(NULL),
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000679 fLastMarginContentEntry(NULL),
edisonn@google.comd9dfa182013-04-24 13:01:01 +0000680 fClipStack(NULL),
681 fEncoder(NULL) {
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000682 // Skia generally uses the top left as the origin but PDF natively has the
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000683 // origin at the bottom left. This matrix corrects for that. But that only
684 // needs to be done once, we don't do it when layering.
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000685 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight));
686 fInitialTransform.preScale(SK_Scalar1, -SK_Scalar1);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000687 fInitialTransform.preConcat(initialTransform);
688
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000689 SkIRect existingClip = SkIRect::MakeWH(this->width(), this->height());
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000690 fExistingClipRegion.setRect(existingClip);
691
692 this->init();
693}
694
vandebo@chromium.org663515b2012-01-05 18:45:27 +0000695// TODO(vandebo) change layerSize to SkSize.
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000696SkPDFDevice::SkPDFDevice(const SkISize& layerSize,
697 const SkClipStack& existingClipStack,
698 const SkRegion& existingClipRegion)
reed@google.comaf951c92011-06-16 19:10:39 +0000699 : SkDevice(makeContentBitmap(layerSize, NULL)),
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000700 fPageSize(layerSize),
701 fContentSize(layerSize),
702 fExistingClipStack(existingClipStack),
703 fExistingClipRegion(existingClipRegion),
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000704 fLastContentEntry(NULL),
robertphillips@google.com40a1ae42012-07-13 15:36:15 +0000705 fLastMarginContentEntry(NULL),
706 fClipStack(NULL) {
vandebo@chromium.orga0c7edb2011-05-09 07:58:08 +0000707 fInitialTransform.reset();
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000708 this->init();
709}
710
711SkPDFDevice::~SkPDFDevice() {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000712 this->cleanUp(true);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000713}
714
715void SkPDFDevice::init() {
reed@google.com2a006c12012-09-19 17:05:55 +0000716 fAnnotations = NULL;
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000717 fResourceDict = NULL;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000718 fContentEntries.reset();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000719 fLastContentEntry = NULL;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +0000720 fMarginContentEntries.reset();
721 fLastMarginContentEntry = NULL;
vandebo@chromium.org98594282011-07-25 22:34:12 +0000722 fDrawingArea = kContent_DrawingArea;
723 if (fFontGlyphUsage == NULL) {
724 fFontGlyphUsage.reset(new SkPDFGlyphSetMap());
725 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000726}
727
vandebo@chromium.org98594282011-07-25 22:34:12 +0000728void SkPDFDevice::cleanUp(bool clearFontUsage) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000729 fGraphicStateResources.unrefAll();
730 fXObjectResources.unrefAll();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000731 fFontResources.unrefAll();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +0000732 fShaderResources.unrefAll();
reed@google.com2a006c12012-09-19 17:05:55 +0000733 SkSafeUnref(fAnnotations);
reed@google.comfc641d02012-09-20 17:52:20 +0000734 SkSafeUnref(fResourceDict);
epoger@google.comb58772f2013-03-08 09:09:10 +0000735 fNamedDestinations.deleteAll();
reed@google.com2a006c12012-09-19 17:05:55 +0000736
vandebo@chromium.org98594282011-07-25 22:34:12 +0000737 if (clearFontUsage) {
738 fFontGlyphUsage->reset();
739 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000740}
741
reed@google.com982cb872011-12-07 18:34:08 +0000742uint32_t SkPDFDevice::getDeviceCapabilities() {
743 return kVector_Capability;
744}
745
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000746void SkPDFDevice::clear(SkColor color) {
vandebo@chromium.org98594282011-07-25 22:34:12 +0000747 this->cleanUp(true);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000748 this->init();
749
750 SkPaint paint;
751 paint.setColor(color);
752 paint.setStyle(SkPaint::kFill_Style);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000753 SkMatrix identity;
754 identity.reset();
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000755 ScopedContentEntry content(this, &fExistingClipStack, fExistingClipRegion,
756 identity, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000757 internalDrawPaint(paint, content.entry());
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000758}
759
760void SkPDFDevice::drawPaint(const SkDraw& d, const SkPaint& paint) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000761 SkPaint newPaint = paint;
762 newPaint.setStyle(SkPaint::kFill_Style);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000763 ScopedContentEntry content(this, d, newPaint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000764 internalDrawPaint(newPaint, content.entry());
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000765}
766
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000767void SkPDFDevice::internalDrawPaint(const SkPaint& paint,
768 ContentEntry* contentEntry) {
769 if (!contentEntry) {
770 return;
771 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000772 SkRect bbox = SkRect::MakeWH(SkIntToScalar(this->width()),
773 SkIntToScalar(this->height()));
774 SkMatrix totalTransform = fInitialTransform;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000775 totalTransform.preConcat(contentEntry->fState.fMatrix);
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000776 SkMatrix inverse;
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000777 if (!totalTransform.invert(&inverse)) {
vandebo@chromium.org386dfc02012-04-17 22:31:52 +0000778 return;
vandebo@chromium.orgb0549902012-04-13 20:45:46 +0000779 }
vandebo@chromium.org77bcaa32011-04-15 20:57:37 +0000780 inverse.mapRect(&bbox);
781
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000782 SkPDFUtils::AppendRectangle(bbox, &contentEntry->fContent);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000783 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000784 &contentEntry->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000785}
786
787void SkPDFDevice::drawPoints(const SkDraw& d, SkCanvas::PointMode mode,
788 size_t count, const SkPoint* points,
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000789 const SkPaint& passedPaint) {
790 if (count == 0) {
791 return;
792 }
793
epoger@google.comb58772f2013-03-08 09:09:10 +0000794 if (handlePointAnnotation(points, count, *d.fMatrix, passedPaint)) {
795 return;
796 }
797
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000798 // SkDraw::drawPoints converts to multiple calls to fDevice->drawPath.
799 // We only use this when there's a path effect because of the overhead
800 // of multiple calls to setUpContentEntry it causes.
801 if (passedPaint.getPathEffect()) {
802 if (d.fClip->isEmpty()) {
803 return;
804 }
805 SkDraw pointDraw(d);
806 pointDraw.fDevice = this;
807 pointDraw.drawPoints(mode, count, points, passedPaint, true);
808 return;
809 }
810
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000811 const SkPaint* paint = &passedPaint;
812 SkPaint modifiedPaint;
813
814 if (mode == SkCanvas::kPoints_PointMode &&
815 paint->getStrokeCap() != SkPaint::kRound_Cap) {
816 modifiedPaint = *paint;
817 paint = &modifiedPaint;
818 if (paint->getStrokeWidth()) {
819 // PDF won't draw a single point with square/butt caps because the
820 // orientation is ambiguous. Draw a rectangle instead.
821 modifiedPaint.setStyle(SkPaint::kFill_Style);
822 SkScalar strokeWidth = paint->getStrokeWidth();
823 SkScalar halfStroke = SkScalarHalf(strokeWidth);
824 for (size_t i = 0; i < count; i++) {
825 SkRect r = SkRect::MakeXYWH(points[i].fX, points[i].fY, 0, 0);
826 r.inset(-halfStroke, -halfStroke);
827 drawRect(d, r, modifiedPaint);
828 }
829 return;
830 } else {
831 modifiedPaint.setStrokeCap(SkPaint::kRound_Cap);
832 }
833 }
834
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000835 ScopedContentEntry content(this, d, *paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000836 if (!content.entry()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000837 return;
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +0000838 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000839
840 switch (mode) {
841 case SkCanvas::kPolygon_PointMode:
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000842 SkPDFUtils::MoveTo(points[0].fX, points[0].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000843 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000844 for (size_t i = 1; i < count; i++) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000845 SkPDFUtils::AppendLine(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000846 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000847 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000848 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000849 break;
850 case SkCanvas::kLines_PointMode:
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000851 for (size_t i = 0; i < count/2; i++) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000852 SkPDFUtils::MoveTo(points[i * 2].fX, points[i * 2].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000853 &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000854 SkPDFUtils::AppendLine(points[i * 2 + 1].fX,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +0000855 points[i * 2 + 1].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000856 &content.entry()->fContent);
857 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000858 }
859 break;
860 case SkCanvas::kPoints_PointMode:
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000861 SkASSERT(paint->getStrokeCap() == SkPaint::kRound_Cap);
862 for (size_t i = 0; i < count; i++) {
863 SkPDFUtils::MoveTo(points[i].fX, points[i].fY,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000864 &content.entry()->fContent);
865 SkPDFUtils::ClosePath(&content.entry()->fContent);
866 SkPDFUtils::StrokePath(&content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000867 }
868 break;
869 default:
870 SkASSERT(false);
871 }
872}
873
commit-bot@chromium.org969fd6a2013-05-14 18:16:40 +0000874void SkPDFDevice::drawRect(const SkDraw& d, const SkRect& rect,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000875 const SkPaint& paint) {
commit-bot@chromium.org969fd6a2013-05-14 18:16:40 +0000876 SkRect r = rect;
877 r.sort();
878
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000879 if (paint.getPathEffect()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000880 if (d.fClip->isEmpty()) {
881 return;
882 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000883 SkPath path;
884 path.addRect(r);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000885 drawPath(d, path, paint, NULL, true);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000886 return;
887 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000888
epoger@google.comb58772f2013-03-08 09:09:10 +0000889 if (handleRectAnnotation(r, *d.fMatrix, paint)) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +0000890 return;
891 }
892
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000893 ScopedContentEntry content(this, d, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000894 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000895 return;
896 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000897 SkPDFUtils::AppendRectangle(r, &content.entry()->fContent);
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +0000898 SkPDFUtils::PaintPath(paint.getStyle(), SkPath::kWinding_FillType,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000899 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000900}
901
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000902void SkPDFDevice::drawPath(const SkDraw& d, const SkPath& origPath,
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000903 const SkPaint& paint, const SkMatrix* prePathMatrix,
904 bool pathIsMutable) {
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000905 SkPath modifiedPath;
906 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
907
908 SkMatrix matrix = *d.fMatrix;
909 if (prePathMatrix) {
910 if (paint.getPathEffect() || paint.getStyle() != SkPaint::kFill_Style) {
911 if (!pathIsMutable) {
912 pathPtr = &modifiedPath;
913 pathIsMutable = true;
914 }
915 origPath.transform(*prePathMatrix, pathPtr);
916 } else {
917 if (!matrix.preConcat(*prePathMatrix)) {
918 return;
919 }
920 }
921 }
vandebo@chromium.org02cc5aa2011-01-25 22:06:29 +0000922
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000923 if (paint.getPathEffect()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000924 if (d.fClip->isEmpty()) {
925 return;
926 }
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000927 if (!pathIsMutable) {
928 pathPtr = &modifiedPath;
929 pathIsMutable = true;
930 }
931 bool fill = paint.getFillPath(origPath, pathPtr);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000932
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +0000933 SkPaint noEffectPaint(paint);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000934 noEffectPaint.setPathEffect(NULL);
935 if (fill) {
936 noEffectPaint.setStyle(SkPaint::kFill_Style);
937 } else {
938 noEffectPaint.setStyle(SkPaint::kStroke_Style);
939 noEffectPaint.setStrokeWidth(0);
940 }
941 drawPath(d, *pathPtr, noEffectPaint, NULL, true);
vandebo@chromium.org7d71f7f2010-10-26 19:51:44 +0000942 return;
943 }
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000944
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +0000945#ifdef SK_PDF_USE_PATHOPS
946 if (handleInversePath(d, origPath, paint, pathIsMutable)) {
947 return;
948 }
949#endif
950
epoger@google.comb58772f2013-03-08 09:09:10 +0000951 if (handleRectAnnotation(pathPtr->getBounds(), *d.fMatrix, paint)) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +0000952 return;
953 }
954
vandebo@chromium.org13d14a92011-05-24 23:12:41 +0000955 ScopedContentEntry content(this, d, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000956 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +0000957 return;
958 }
vandebo@chromium.org683001c2012-05-09 17:17:51 +0000959 SkPDFUtils::EmitPath(*pathPtr, paint.getStyle(),
960 &content.entry()->fContent);
vandebo@chromium.orgff390322011-05-17 18:58:44 +0000961 SkPDFUtils::PaintPath(paint.getStyle(), pathPtr->getFillType(),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +0000962 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000963}
964
edisonn@google.com2ae67e72013-02-12 01:06:38 +0000965void SkPDFDevice::drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap,
966 const SkRect* src, const SkRect& dst,
967 const SkPaint& paint) {
968 SkMatrix matrix;
969 SkRect bitmapBounds, tmpSrc, tmpDst;
970 SkBitmap tmpBitmap;
971
972 bitmapBounds.isetWH(bitmap.width(), bitmap.height());
973
974 // Compute matrix from the two rectangles
975 if (src) {
976 tmpSrc = *src;
977 } else {
978 tmpSrc = bitmapBounds;
979 }
980 matrix.setRectToRect(tmpSrc, dst, SkMatrix::kFill_ScaleToFit);
981
982 const SkBitmap* bitmapPtr = &bitmap;
983
984 // clip the tmpSrc to the bounds of the bitmap, and recompute dstRect if
985 // needed (if the src was clipped). No check needed if src==null.
986 if (src) {
987 if (!bitmapBounds.contains(*src)) {
988 if (!tmpSrc.intersect(bitmapBounds)) {
989 return; // nothing to draw
990 }
991 // recompute dst, based on the smaller tmpSrc
992 matrix.mapRect(&tmpDst, tmpSrc);
993 }
994
995 // since we may need to clamp to the borders of the src rect within
996 // the bitmap, we extract a subset.
997 // TODO: make sure this is handled in drawBitmap and remove from here.
998 SkIRect srcIR;
999 tmpSrc.roundOut(&srcIR);
1000 if (!bitmap.extractSubset(&tmpBitmap, srcIR)) {
1001 return;
1002 }
1003 bitmapPtr = &tmpBitmap;
1004
1005 // Since we did an extract, we need to adjust the matrix accordingly
1006 SkScalar dx = 0, dy = 0;
1007 if (srcIR.fLeft > 0) {
1008 dx = SkIntToScalar(srcIR.fLeft);
1009 }
1010 if (srcIR.fTop > 0) {
1011 dy = SkIntToScalar(srcIR.fTop);
1012 }
1013 if (dx || dy) {
1014 matrix.preTranslate(dx, dy);
1015 }
1016 }
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001017 this->drawBitmap(draw, *bitmapPtr, matrix, paint);
edisonn@google.com2ae67e72013-02-12 01:06:38 +00001018}
1019
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001020void SkPDFDevice::drawBitmap(const SkDraw& d, const SkBitmap& bitmap,
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001021 const SkMatrix& matrix, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001022 if (d.fClip->isEmpty()) {
1023 return;
1024 }
1025
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001026 SkMatrix transform = matrix;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001027 transform.postConcat(*d.fMatrix);
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001028 this->internalDrawBitmap(transform, d.fClipStack, *d.fClip, bitmap, NULL, paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001029}
1030
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001031void SkPDFDevice::drawSprite(const SkDraw& d, const SkBitmap& bitmap,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001032 int x, int y, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001033 if (d.fClip->isEmpty()) {
1034 return;
1035 }
1036
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001037 SkMatrix matrix;
reed@google.coma6d59f62011-03-07 21:29:21 +00001038 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001039 this->internalDrawBitmap(matrix, d.fClipStack, *d.fClip, bitmap, NULL, paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001040}
1041
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001042void SkPDFDevice::drawText(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001043 SkScalar x, SkScalar y, const SkPaint& paint) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001044 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
1045 if (paint.getMaskFilter() != NULL) {
1046 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1047 // making text unreadable (e.g. same text twice when using CSS shadows).
1048 return;
1049 }
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001050 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001051 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001052 if (!content.entry()) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001053 return;
1054 }
1055
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001056 SkGlyphStorage storage(0);
1057 uint16_t* glyphIDs = NULL;
1058 size_t numGlyphs = force_glyph_encoding(paint, text, len, &storage,
1059 &glyphIDs);
1060 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001061
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001062 SkDrawCacheProc glyphCacheProc = textPaint.getDrawCacheProc();
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001063 align_text(glyphCacheProc, textPaint, glyphIDs, numGlyphs, &x, &y);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001064 content.entry()->fContent.writeText("BT\n");
1065 set_text_transform(x, y, textPaint.getTextSkewX(),
1066 &content.entry()->fContent);
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001067 size_t consumedGlyphCount = 0;
1068 while (numGlyphs > consumedGlyphCount) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001069 updateFont(textPaint, glyphIDs[consumedGlyphCount], content.entry());
1070 SkPDFFont* font = content.entry()->fState.fFont;
vandebo@chromium.org01294102011-02-28 19:52:18 +00001071 size_t availableGlyphs =
1072 font->glyphsToPDFFontEncoding(glyphIDs + consumedGlyphCount,
1073 numGlyphs - consumedGlyphCount);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001074 fFontGlyphUsage->noteGlyphUsage(font, glyphIDs + consumedGlyphCount,
1075 availableGlyphs);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001076 SkString encodedString =
reed@google.comf6c3ebd2011-07-20 17:20:28 +00001077 SkPDFString::FormatString(glyphIDs + consumedGlyphCount,
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001078 availableGlyphs, font->multiByteGlyphs());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001079 content.entry()->fContent.writeText(encodedString.c_str());
vandebo@chromium.org01294102011-02-28 19:52:18 +00001080 consumedGlyphCount += availableGlyphs;
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001081 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001082 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001083 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001084}
1085
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001086void SkPDFDevice::drawPosText(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001087 const SkScalar pos[], SkScalar constY,
1088 int scalarsPerPos, const SkPaint& paint) {
edisonn@google.comb62f93f2013-03-24 18:05:10 +00001089 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
1090 if (paint.getMaskFilter() != NULL) {
1091 // Don't pretend we support drawing MaskFilters, it makes for artifacts
1092 // making text unreadable (e.g. same text twice when using CSS shadows).
1093 return;
1094 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001095 SkASSERT(1 == scalarsPerPos || 2 == scalarsPerPos);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001096 SkPaint textPaint = calculate_text_paint(paint);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001097 ScopedContentEntry content(this, d, textPaint, true);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001098 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001099 return;
1100 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001101
vandebo@chromium.org4e1cc6a2013-01-25 19:27:23 +00001102 SkGlyphStorage storage(0);
1103 uint16_t* glyphIDs = NULL;
1104 size_t numGlyphs = force_glyph_encoding(paint, text, len, &storage,
1105 &glyphIDs);
1106 textPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001107
1108 SkDrawCacheProc glyphCacheProc = textPaint.getDrawCacheProc();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001109 content.entry()->fContent.writeText("BT\n");
1110 updateFont(textPaint, glyphIDs[0], content.entry());
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001111 for (size_t i = 0; i < numGlyphs; i++) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001112 SkPDFFont* font = content.entry()->fState.fFont;
vandebo@chromium.org01294102011-02-28 19:52:18 +00001113 uint16_t encodedValue = glyphIDs[i];
1114 if (font->glyphsToPDFFontEncoding(&encodedValue, 1) != 1) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001115 updateFont(textPaint, glyphIDs[i], content.entry());
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001116 i--;
1117 continue;
1118 }
vandebo@chromium.org98594282011-07-25 22:34:12 +00001119 fFontGlyphUsage->noteGlyphUsage(font, &encodedValue, 1);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001120 SkScalar x = pos[i * scalarsPerPos];
1121 SkScalar y = scalarsPerPos == 1 ? constY : pos[i * scalarsPerPos + 1];
bungeman@google.com9a87cee2011-08-23 17:02:18 +00001122 align_text(glyphCacheProc, textPaint, glyphIDs + i, 1, &x, &y);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001123 set_text_transform(x, y, textPaint.getTextSkewX(),
1124 &content.entry()->fContent);
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001125 SkString encodedString =
reed@google.comf6c3ebd2011-07-20 17:20:28 +00001126 SkPDFString::FormatString(&encodedValue, 1,
vandebo@chromium.orgcae5fba2011-03-28 19:03:50 +00001127 font->multiByteGlyphs());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001128 content.entry()->fContent.writeText(encodedString.c_str());
1129 content.entry()->fContent.writeText(" Tj\n");
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001130 }
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001131 content.entry()->fContent.writeText("ET\n");
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001132}
1133
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001134void SkPDFDevice::drawTextOnPath(const SkDraw& d, const void* text, size_t len,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001135 const SkPath& path, const SkMatrix* matrix,
1136 const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001137 if (d.fClip->isEmpty()) {
1138 return;
1139 }
vandebo@chromium.org290e3bb2011-11-08 23:42:53 +00001140 d.drawTextOnPath((const char*)text, len, path, matrix, paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001141}
1142
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001143void SkPDFDevice::drawVertices(const SkDraw& d, SkCanvas::VertexMode,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001144 int vertexCount, const SkPoint verts[],
1145 const SkPoint texs[], const SkColor colors[],
1146 SkXfermode* xmode, const uint16_t indices[],
1147 int indexCount, const SkPaint& paint) {
vandebo@chromium.orgfb0b0ed2011-04-15 20:01:17 +00001148 if (d.fClip->isEmpty()) {
1149 return;
1150 }
vandebo@chromium.orga5180862010-10-26 19:48:49 +00001151 NOT_IMPLEMENTED("drawVerticies", true);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001152}
1153
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001154void SkPDFDevice::drawDevice(const SkDraw& d, SkDevice* device, int x, int y,
1155 const SkPaint& paint) {
1156 if ((device->getDeviceCapabilities() & kVector_Capability) == 0) {
1157 // If we somehow get a raster device, do what our parent would do.
1158 SkDevice::drawDevice(d, device, x, y, paint);
1159 return;
1160 }
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001161
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001162 // Assume that a vector capable device means that it's a PDF Device.
1163 SkPDFDevice* pdfDevice = static_cast<SkPDFDevice*>(device);
ctguil@chromium.orgf4ff39c2011-05-24 19:55:05 +00001164 if (pdfDevice->isContentEmpty()) {
vandebo@chromium.orgee7a9562011-05-24 17:38:01 +00001165 return;
1166 }
1167
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001168 SkMatrix matrix;
reed@google.coma6d59f62011-03-07 21:29:21 +00001169 matrix.setTranslate(SkIntToScalar(x), SkIntToScalar(y));
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001170 ScopedContentEntry content(this, d.fClipStack, *d.fClip, matrix, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001171 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001172 return;
1173 }
vandebo@chromium.org1aef2ed2011-02-03 21:46:10 +00001174
1175 SkPDFFormXObject* xobject = new SkPDFFormXObject(pdfDevice);
vandebo@chromium.orgeb6c7592010-10-26 19:54:45 +00001176 fXObjectResources.push(xobject); // Transfer reference.
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001177 SkPDFUtils::DrawFormXObject(fXObjectResources.count() - 1,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001178 &content.entry()->fContent);
vandebo@chromium.org98594282011-07-25 22:34:12 +00001179
1180 // Merge glyph sets from the drawn device.
1181 fFontGlyphUsage->merge(pdfDevice->getFontGlyphUsage());
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001182}
1183
robertphillips@google.com40a1ae42012-07-13 15:36:15 +00001184void SkPDFDevice::onAttachToCanvas(SkCanvas* canvas) {
1185 INHERITED::onAttachToCanvas(canvas);
1186
1187 // Canvas promises that this ptr is valid until onDetachFromCanvas is called
1188 fClipStack = canvas->getClipStack();
1189}
1190
1191void SkPDFDevice::onDetachFromCanvas() {
1192 INHERITED::onDetachFromCanvas();
1193
1194 fClipStack = NULL;
1195}
1196
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001197ContentEntry* SkPDFDevice::getLastContentEntry() {
1198 if (fDrawingArea == kContent_DrawingArea) {
1199 return fLastContentEntry;
1200 } else {
1201 return fLastMarginContentEntry;
1202 }
1203}
1204
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001205SkTScopedPtr<ContentEntry>* SkPDFDevice::getContentEntries() {
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001206 if (fDrawingArea == kContent_DrawingArea) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001207 return &fContentEntries;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001208 } else {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001209 return &fMarginContentEntries;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001210 }
1211}
1212
1213void SkPDFDevice::setLastContentEntry(ContentEntry* contentEntry) {
1214 if (fDrawingArea == kContent_DrawingArea) {
1215 fLastContentEntry = contentEntry;
1216 } else {
1217 fLastMarginContentEntry = contentEntry;
1218 }
1219}
1220
1221void SkPDFDevice::setDrawingArea(DrawingArea drawingArea) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001222 // A ScopedContentEntry only exists during the course of a draw call, so
1223 // this can't be called while a ScopedContentEntry exists.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001224 fDrawingArea = drawingArea;
1225}
1226
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001227SkPDFResourceDict* SkPDFDevice::getResourceDict() {
reed@google.comfc641d02012-09-20 17:52:20 +00001228 if (NULL == fResourceDict) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001229 fResourceDict = SkNEW(SkPDFResourceDict);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001230
1231 if (fGraphicStateResources.count()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001232 for (int i = 0; i < fGraphicStateResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001233 fResourceDict->insertResourceAsReference(
1234 SkPDFResourceDict::kExtGState_ResourceType,
1235 i, fGraphicStateResources[i]);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001236 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001237 }
1238
1239 if (fXObjectResources.count()) {
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001240 for (int i = 0; i < fXObjectResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001241 fResourceDict->insertResourceAsReference(
1242 SkPDFResourceDict::kXObject_ResourceType,
1243 i, fXObjectResources[i]);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001244 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001245 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001246
1247 if (fFontResources.count()) {
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001248 for (int i = 0; i < fFontResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001249 fResourceDict->insertResourceAsReference(
1250 SkPDFResourceDict::kFont_ResourceType,
1251 i, fFontResources[i]);
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001252 }
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001253 }
1254
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001255 if (fShaderResources.count()) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001256 SkAutoTUnref<SkPDFDict> patterns(new SkPDFDict());
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001257 for (int i = 0; i < fShaderResources.count(); i++) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001258 fResourceDict->insertResourceAsReference(
1259 SkPDFResourceDict::kPattern_ResourceType,
1260 i, fShaderResources[i]);
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001261 }
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001262 }
vandebo@chromium.orgfc166672013-07-22 18:31:24 +00001263 }
1264 return fResourceDict;
1265}
1266
vandebo@chromium.orgf0ec2662011-05-29 05:55:42 +00001267const SkTDArray<SkPDFFont*>& SkPDFDevice::getFontResources() const {
1268 return fFontResources;
1269}
1270
reed@google.com2a006c12012-09-19 17:05:55 +00001271SkPDFArray* SkPDFDevice::copyMediaBox() const {
1272 // should this be a singleton?
1273 SkAutoTUnref<SkPDFInt> zero(SkNEW_ARGS(SkPDFInt, (0)));
vandebo@chromium.orgf7c15762011-02-01 22:19:44 +00001274
reed@google.com2a006c12012-09-19 17:05:55 +00001275 SkPDFArray* mediaBox = SkNEW(SkPDFArray);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001276 mediaBox->reserve(4);
1277 mediaBox->append(zero.get());
1278 mediaBox->append(zero.get());
reed@google.comc789cf12011-07-20 12:14:33 +00001279 mediaBox->appendInt(fPageSize.fWidth);
1280 mediaBox->appendInt(fPageSize.fHeight);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001281 return mediaBox;
1282}
1283
vandebo@chromium.orgc2a9b7f2011-02-24 23:22:30 +00001284SkStream* SkPDFDevice::content() const {
reed@google.com5667afc2011-06-27 14:42:15 +00001285 SkMemoryStream* result = new SkMemoryStream;
1286 result->setData(this->copyContentToData())->unref();
1287 return result;
1288}
1289
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001290void SkPDFDevice::copyContentEntriesToData(ContentEntry* entry,
1291 SkWStream* data) const {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001292 // TODO(ctguil): For margins, I'm not sure fExistingClipStack/Region is the
1293 // right thing to pass here.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001294 GraphicStackState gsState(fExistingClipStack, fExistingClipRegion, data);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001295 while (entry != NULL) {
vandebo@chromium.org663515b2012-01-05 18:45:27 +00001296 SkPoint translation;
1297 translation.iset(this->getOrigin());
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001298 translation.negate();
1299 gsState.updateClip(entry->fState.fClipStack, entry->fState.fClipRegion,
1300 translation);
1301 gsState.updateMatrix(entry->fState.fMatrix);
1302 gsState.updateDrawingState(entry->fState);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001303
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001304 SkAutoDataUnref copy(entry->fContent.copyToData());
robertphillips@google.com59f46b82012-07-10 17:30:58 +00001305 data->write(copy->data(), copy->size());
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001306 entry = entry->fNext.get();
1307 }
1308 gsState.drainStack();
1309}
1310
reed@google.com5667afc2011-06-27 14:42:15 +00001311SkData* SkPDFDevice::copyContentToData() const {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001312 SkDynamicMemoryWStream data;
1313 if (fInitialTransform.getType() != SkMatrix::kIdentity_Mask) {
1314 SkPDFUtils::AppendTransform(fInitialTransform, &data);
vandebo@chromium.orgc2a9b7f2011-02-24 23:22:30 +00001315 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001316
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001317 // TODO(aayushkumar): Apply clip along the margins. Currently, webkit
1318 // colors the contentArea white before it starts drawing into it and
1319 // that currently acts as our clip.
1320 // Also, think about adding a transform here (or assume that the values
1321 // sent across account for that)
1322 SkPDFDevice::copyContentEntriesToData(fMarginContentEntries.get(), &data);
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001323
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001324 // If the content area is the entire page, then we don't need to clip
1325 // the content area (PDF area clips to the page size). Otherwise,
1326 // we have to clip to the content area; we've already applied the
1327 // initial transform, so just clip to the device size.
1328 if (fPageSize != fContentSize) {
robertphillips@google.com8637a362012-04-10 18:32:35 +00001329 SkRect r = SkRect::MakeWH(SkIntToScalar(this->width()),
1330 SkIntToScalar(this->height()));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001331 emit_clip(NULL, &r, &data);
1332 }
vandebo@chromium.org98594282011-07-25 22:34:12 +00001333
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001334 SkPDFDevice::copyContentEntriesToData(fContentEntries.get(), &data);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001335
reed@google.com5667afc2011-06-27 14:42:15 +00001336 // potentially we could cache this SkData, and only rebuild it if we
1337 // see that our state has changed.
1338 return data.copyToData();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001339}
1340
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +00001341#ifdef SK_PDF_USE_PATHOPS
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001342/* Draws an inverse filled path by using Path Ops to compute the positive
1343 * inverse using the current clip as the inverse bounds.
1344 * Return true if this was an inverse path and was properly handled,
1345 * otherwise returns false and the normal drawing routine should continue,
1346 * either as a (incorrect) fallback or because the path was not inverse
1347 * in the first place.
1348 */
1349bool SkPDFDevice::handleInversePath(const SkDraw& d, const SkPath& origPath,
1350 const SkPaint& paint, bool pathIsMutable) {
1351 if (!origPath.isInverseFillType()) {
1352 return false;
1353 }
1354
1355 if (d.fClip->isEmpty()) {
1356 return false;
1357 }
1358
1359 SkPath modifiedPath;
1360 SkPath* pathPtr = const_cast<SkPath*>(&origPath);
1361 SkPaint noInversePaint(paint);
1362
1363 // Merge stroking operations into final path.
1364 if (SkPaint::kStroke_Style == paint.getStyle() ||
1365 SkPaint::kStrokeAndFill_Style == paint.getStyle()) {
1366 bool doFillPath = paint.getFillPath(origPath, &modifiedPath);
1367 if (doFillPath) {
1368 noInversePaint.setStyle(SkPaint::kFill_Style);
1369 noInversePaint.setStrokeWidth(0);
1370 pathPtr = &modifiedPath;
1371 } else {
1372 // To be consistent with the raster output, hairline strokes
1373 // are rendered as non-inverted.
1374 modifiedPath.toggleInverseFillType();
1375 drawPath(d, modifiedPath, paint, NULL, true);
1376 return true;
1377 }
1378 }
1379
1380 // Get bounds of clip in current transform space
1381 // (clip bounds are given in device space).
1382 SkRect bounds;
1383 SkMatrix transformInverse;
1384 if (!d.fMatrix->invert(&transformInverse)) {
1385 return false;
1386 }
1387 bounds.set(d.fClip->getBounds());
1388 transformInverse.mapRect(&bounds);
1389
1390 // Extend the bounds by the line width (plus some padding)
1391 // so the edge doesn't cause a visible stroke.
1392 bounds.outset(paint.getStrokeWidth() + SK_Scalar1,
1393 paint.getStrokeWidth() + SK_Scalar1);
1394
1395 if (!calculate_inverse_path(bounds, *pathPtr, &modifiedPath)) {
1396 return false;
1397 }
1398
1399 drawPath(d, modifiedPath, noInversePaint, NULL, true);
1400 return true;
1401}
commit-bot@chromium.orgd2623a12013-08-08 02:52:05 +00001402#endif
commit-bot@chromium.org92ffe7d2013-07-31 22:54:31 +00001403
epoger@google.comb58772f2013-03-08 09:09:10 +00001404bool SkPDFDevice::handleRectAnnotation(const SkRect& r, const SkMatrix& matrix,
1405 const SkPaint& p) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001406 SkAnnotation* annotationInfo = p.getAnnotation();
1407 if (!annotationInfo) {
1408 return false;
1409 }
1410 SkData* urlData = annotationInfo->find(SkAnnotationKeys::URL_Key());
epoger@google.comb58772f2013-03-08 09:09:10 +00001411 if (urlData) {
1412 handleLinkToURL(urlData, r, matrix);
1413 return p.isNoDrawAnnotation();
1414 }
1415 SkData* linkToName = annotationInfo->find(SkAnnotationKeys::Link_Named_Dest_Key());
1416 if (linkToName) {
1417 handleLinkToNamedDest(linkToName, r, matrix);
1418 return p.isNoDrawAnnotation();
1419 }
1420 return false;
1421}
1422
1423bool SkPDFDevice::handlePointAnnotation(const SkPoint* points, size_t count,
1424 const SkMatrix& matrix,
1425 const SkPaint& paint) {
1426 SkAnnotation* annotationInfo = paint.getAnnotation();
1427 if (!annotationInfo) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001428 return false;
1429 }
epoger@google.comb58772f2013-03-08 09:09:10 +00001430 SkData* nameData = annotationInfo->find(SkAnnotationKeys::Define_Named_Dest_Key());
1431 if (nameData) {
1432 for (size_t i = 0; i < count; i++) {
1433 defineNamedDestination(nameData, points[i], matrix);
1434 }
1435 return paint.isNoDrawAnnotation();
1436 }
1437 return false;
1438}
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001439
epoger@google.comb58772f2013-03-08 09:09:10 +00001440SkPDFDict* SkPDFDevice::createLinkAnnotation(const SkRect& r, const SkMatrix& matrix) {
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001441 SkMatrix transform = matrix;
1442 transform.postConcat(fInitialTransform);
1443 SkRect translatedRect;
1444 transform.mapRect(&translatedRect, r);
1445
reed@google.com2a006c12012-09-19 17:05:55 +00001446 if (NULL == fAnnotations) {
1447 fAnnotations = SkNEW(SkPDFArray);
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001448 }
epoger@google.comb58772f2013-03-08 09:09:10 +00001449 SkPDFDict* annotation(SkNEW_ARGS(SkPDFDict, ("Annot")));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001450 annotation->insertName("Subtype", "Link");
epoger@google.comb58772f2013-03-08 09:09:10 +00001451 fAnnotations->append(annotation);
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001452
epoger@google.comb58772f2013-03-08 09:09:10 +00001453 SkAutoTUnref<SkPDFArray> border(SkNEW(SkPDFArray));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001454 border->reserve(3);
1455 border->appendInt(0); // Horizontal corner radius.
1456 border->appendInt(0); // Vertical corner radius.
1457 border->appendInt(0); // Width, 0 = no border.
1458 annotation->insert("Border", border.get());
1459
epoger@google.comb58772f2013-03-08 09:09:10 +00001460 SkAutoTUnref<SkPDFArray> rect(SkNEW(SkPDFArray));
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001461 rect->reserve(4);
1462 rect->appendScalar(translatedRect.fLeft);
1463 rect->appendScalar(translatedRect.fTop);
1464 rect->appendScalar(translatedRect.fRight);
1465 rect->appendScalar(translatedRect.fBottom);
1466 annotation->insert("Rect", rect.get());
1467
epoger@google.comb58772f2013-03-08 09:09:10 +00001468 return annotation;
1469}
epoger@google.com1cad8982013-03-06 00:05:13 +00001470
epoger@google.comb58772f2013-03-08 09:09:10 +00001471void SkPDFDevice::handleLinkToURL(SkData* urlData, const SkRect& r,
1472 const SkMatrix& matrix) {
1473 SkAutoTUnref<SkPDFDict> annotation(createLinkAnnotation(r, matrix));
1474
1475 SkString url(static_cast<const char *>(urlData->data()),
1476 urlData->size() - 1);
1477 SkAutoTUnref<SkPDFDict> action(SkNEW_ARGS(SkPDFDict, ("Action")));
1478 action->insertName("S", "URI");
1479 action->insert("URI", SkNEW_ARGS(SkPDFString, (url)))->unref();
1480 annotation->insert("A", action.get());
1481}
1482
1483void SkPDFDevice::handleLinkToNamedDest(SkData* nameData, const SkRect& r,
1484 const SkMatrix& matrix) {
1485 SkAutoTUnref<SkPDFDict> annotation(createLinkAnnotation(r, matrix));
1486 SkString name(static_cast<const char *>(nameData->data()),
1487 nameData->size() - 1);
1488 annotation->insert("Dest", SkNEW_ARGS(SkPDFName, (name)))->unref();
1489}
1490
1491struct NamedDestination {
1492 const SkData* nameData;
1493 SkPoint point;
1494
1495 NamedDestination(const SkData* nameData, const SkPoint& point)
1496 : nameData(nameData), point(point) {
1497 nameData->ref();
1498 }
1499
1500 ~NamedDestination() {
1501 nameData->unref();
1502 }
1503};
1504
1505void SkPDFDevice::defineNamedDestination(SkData* nameData, const SkPoint& point,
1506 const SkMatrix& matrix) {
1507 SkMatrix transform = matrix;
1508 transform.postConcat(fInitialTransform);
1509 SkPoint translatedPoint;
1510 transform.mapXY(point.x(), point.y(), &translatedPoint);
1511 fNamedDestinations.push(
1512 SkNEW_ARGS(NamedDestination, (nameData, translatedPoint)));
1513}
1514
1515void SkPDFDevice::appendDestinations(SkPDFDict* dict, SkPDFObject* page) {
1516 int nDest = fNamedDestinations.count();
1517 for (int i = 0; i < nDest; i++) {
1518 NamedDestination* dest = fNamedDestinations[i];
1519 SkAutoTUnref<SkPDFArray> pdfDest(SkNEW(SkPDFArray));
1520 pdfDest->reserve(5);
1521 pdfDest->append(SkNEW_ARGS(SkPDFObjRef, (page)))->unref();
1522 pdfDest->appendName("XYZ");
1523 pdfDest->appendScalar(dest->point.x());
1524 pdfDest->appendScalar(dest->point.y());
1525 pdfDest->appendInt(0); // Leave zoom unchanged
1526 dict->insert(static_cast<const char *>(dest->nameData->data()), pdfDest);
1527 }
vandebo@chromium.org238be8c2012-07-13 20:06:02 +00001528}
1529
reed@google.comfc641d02012-09-20 17:52:20 +00001530SkPDFFormXObject* SkPDFDevice::createFormXObjectFromDevice() {
1531 SkPDFFormXObject* xobject = SkNEW_ARGS(SkPDFFormXObject, (this));
vandebo@chromium.org98594282011-07-25 22:34:12 +00001532 // We always draw the form xobjects that we create back into the device, so
1533 // we simply preserve the font usage instead of pulling it out and merging
1534 // it back in later.
1535 cleanUp(false); // Reset this device to have no content.
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001536 init();
reed@google.comfc641d02012-09-20 17:52:20 +00001537 return xobject;
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001538}
1539
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001540void SkPDFDevice::clearClipFromContent(const SkClipStack* clipStack,
1541 const SkRegion& clipRegion) {
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001542 if (clipRegion.isEmpty() || isContentEmpty()) {
1543 return;
1544 }
reed@google.comfc641d02012-09-20 17:52:20 +00001545 SkAutoTUnref<SkPDFFormXObject> curContent(createFormXObjectFromDevice());
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001546
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001547 // Redraw what we already had, but with the clip as a mask.
reed@google.comfc641d02012-09-20 17:52:20 +00001548 drawFormXObjectWithClip(curContent, clipStack, clipRegion, true);
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001549}
1550
1551void SkPDFDevice::drawFormXObjectWithClip(SkPDFFormXObject* xobject,
1552 const SkClipStack* clipStack,
1553 const SkRegion& clipRegion,
1554 bool invertClip) {
1555 if (clipRegion.isEmpty() && !invertClip) {
1556 return;
1557 }
1558
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001559 // Create the mask.
1560 SkMatrix identity;
1561 identity.reset();
1562 SkDraw draw;
1563 draw.fMatrix = &identity;
1564 draw.fClip = &clipRegion;
1565 draw.fClipStack = clipStack;
1566 SkPaint stockPaint;
1567 this->drawPaint(draw, stockPaint);
reed@google.comfc641d02012-09-20 17:52:20 +00001568 SkAutoTUnref<SkPDFFormXObject> maskFormXObject(createFormXObjectFromDevice());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001569 SkAutoTUnref<SkPDFGraphicState> sMaskGS(
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +00001570 SkPDFGraphicState::GetSMaskGraphicState(maskFormXObject, invertClip,
1571 SkPDFGraphicState::kAlpha_SMaskMode));
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001572
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001573 // Draw the xobject with the clip as a mask.
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001574 ScopedContentEntry content(this, &fExistingClipStack, fExistingClipRegion,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001575 identity, stockPaint);
1576 if (!content.entry()) {
1577 return;
1578 }
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001579 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001580 &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001581 SkPDFUtils::DrawFormXObject(fXObjectResources.count(),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001582 &content.entry()->fContent);
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001583 fXObjectResources.push(xobject);
1584 xobject->ref();
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001585
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001586 sMaskGS.reset(SkPDFGraphicState::GetNoSMaskGraphicState());
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001587 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001588 &content.entry()->fContent);
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001589}
1590
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001591ContentEntry* SkPDFDevice::setUpContentEntry(const SkClipStack* clipStack,
1592 const SkRegion& clipRegion,
1593 const SkMatrix& matrix,
1594 const SkPaint& paint,
1595 bool hasText,
reed@google.comfc641d02012-09-20 17:52:20 +00001596 SkPDFFormXObject** dst) {
1597 *dst = NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001598 if (clipRegion.isEmpty()) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001599 return NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001600 }
1601
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001602 // The clip stack can come from an SkDraw where it is technically optional.
1603 SkClipStack synthesizedClipStack;
1604 if (clipStack == NULL) {
1605 if (clipRegion == fExistingClipRegion) {
1606 clipStack = &fExistingClipStack;
1607 } else {
1608 // GraphicStackState::updateClip expects the clip stack to have
1609 // fExistingClip as a prefix, so start there, then set the clip
1610 // to the passed region.
1611 synthesizedClipStack = fExistingClipStack;
1612 SkPath clipPath;
1613 clipRegion.getBoundaryPath(&clipPath);
reed@google.com00177082011-10-12 14:34:30 +00001614 synthesizedClipStack.clipDevPath(clipPath, SkRegion::kReplace_Op,
1615 false);
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001616 clipStack = &synthesizedClipStack;
1617 }
1618 }
1619
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001620 SkXfermode::Mode xfermode = SkXfermode::kSrcOver_Mode;
1621 if (paint.getXfermode()) {
1622 paint.getXfermode()->asMode(&xfermode);
1623 }
1624
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001625 if (xfermode == SkXfermode::kClear_Mode ||
1626 xfermode == SkXfermode::kSrc_Mode) {
vandebo@chromium.org466f3d62011-05-18 23:06:29 +00001627 this->clearClipFromContent(clipStack, clipRegion);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001628 } else if (xfermode == SkXfermode::kSrcIn_Mode ||
1629 xfermode == SkXfermode::kDstIn_Mode ||
1630 xfermode == SkXfermode::kSrcOut_Mode ||
1631 xfermode == SkXfermode::kDstOut_Mode) {
1632 // For the following modes, we use both source and destination, but
1633 // we use one as a smask for the other, so we have to make form xobjects
1634 // out of both of them: SrcIn, DstIn, SrcOut, DstOut.
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001635 if (isContentEmpty()) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001636 return NULL;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001637 } else {
reed@google.comfc641d02012-09-20 17:52:20 +00001638 *dst = createFormXObjectFromDevice();
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001639 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001640 }
ctguil@chromium.org769fa6a2011-08-20 00:36:18 +00001641 // TODO(vandebo): Figure out how/if we can handle the following modes:
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001642 // SrcAtop, DestAtop, Xor, Plus.
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001643
1644 // These xfer modes don't draw source at all.
1645 if (xfermode == SkXfermode::kClear_Mode ||
1646 xfermode == SkXfermode::kDst_Mode) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001647 return NULL;
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001648 }
1649
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001650 ContentEntry* entry;
1651 SkTScopedPtr<ContentEntry> newEntry;
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001652
1653 ContentEntry* lastContentEntry = getLastContentEntry();
1654 if (lastContentEntry && lastContentEntry->fContent.getOffset() == 0) {
1655 entry = lastContentEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001656 } else {
1657 newEntry.reset(new ContentEntry);
1658 entry = newEntry.get();
1659 }
1660
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001661 populateGraphicStateEntryFromPaint(matrix, *clipStack, clipRegion, paint,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001662 hasText, &entry->fState);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001663 if (lastContentEntry && xfermode != SkXfermode::kDstOver_Mode &&
1664 entry->fState.compareInitialState(lastContentEntry->fState)) {
1665 return lastContentEntry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001666 }
1667
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001668 SkTScopedPtr<ContentEntry>* contentEntries = getContentEntries();
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001669 if (!lastContentEntry) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001670 contentEntries->reset(entry);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001671 setLastContentEntry(entry);
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001672 } else if (xfermode == SkXfermode::kDstOver_Mode) {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001673 entry->fNext.reset(contentEntries->release());
1674 contentEntries->reset(entry);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001675 } else {
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001676 lastContentEntry->fNext.reset(entry);
1677 setLastContentEntry(entry);
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001678 }
1679 newEntry.release();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001680 return entry;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001681}
1682
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001683void SkPDFDevice::finishContentEntry(const SkXfermode::Mode xfermode,
1684 SkPDFFormXObject* dst) {
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001685 if (xfermode != SkXfermode::kSrcIn_Mode &&
1686 xfermode != SkXfermode::kDstIn_Mode &&
1687 xfermode != SkXfermode::kSrcOut_Mode &&
1688 xfermode != SkXfermode::kDstOut_Mode) {
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001689 SkASSERT(!dst);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001690 return;
1691 }
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001692
1693 ContentEntry* contentEntries = getContentEntries()->get();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001694 SkASSERT(dst);
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001695 SkASSERT(!contentEntries->fNext.get());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001696 // We have to make a copy of these here because changing the current
1697 // content into a form xobject will destroy them.
ctguil@chromium.org8dcf74f2011-07-12 21:56:27 +00001698 SkClipStack clipStack = contentEntries->fState.fClipStack;
1699 SkRegion clipRegion = contentEntries->fState.fClipRegion;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001700
reed@google.comfc641d02012-09-20 17:52:20 +00001701 SkAutoTUnref<SkPDFFormXObject> srcFormXObject;
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001702 if (!isContentEmpty()) {
reed@google.comfc641d02012-09-20 17:52:20 +00001703 srcFormXObject.reset(createFormXObjectFromDevice());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001704 }
1705
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001706 drawFormXObjectWithClip(dst, &clipStack, clipRegion, true);
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001707
1708 // We've redrawn dst minus the clip area, if there's no src, we're done.
1709 if (!srcFormXObject.get()) {
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001710 return;
1711 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001712
1713 SkMatrix identity;
1714 identity.reset();
1715 SkPaint stockPaint;
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001716 ScopedContentEntry inClipContentEntry(this, &fExistingClipStack,
1717 fExistingClipRegion, identity,
1718 stockPaint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001719 if (!inClipContentEntry.entry()) {
1720 return;
1721 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001722
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001723 SkAutoTUnref<SkPDFGraphicState> sMaskGS;
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001724 if (xfermode == SkXfermode::kSrcIn_Mode ||
1725 xfermode == SkXfermode::kSrcOut_Mode) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001726 sMaskGS.reset(SkPDFGraphicState::GetSMaskGraphicState(
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +00001727 dst,
1728 xfermode == SkXfermode::kSrcOut_Mode,
1729 SkPDFGraphicState::kAlpha_SMaskMode));
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001730 fXObjectResources.push(srcFormXObject.get());
reed@google.comfc641d02012-09-20 17:52:20 +00001731 srcFormXObject.get()->ref();
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001732 } else {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001733 sMaskGS.reset(SkPDFGraphicState::GetSMaskGraphicState(
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +00001734 srcFormXObject.get(),
1735 xfermode == SkXfermode::kDstOut_Mode,
1736 SkPDFGraphicState::kAlpha_SMaskMode));
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001737 // dst already added to fXObjectResources in drawFormXObjectWithClip.
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001738 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001739 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001740 &inClipContentEntry.entry()->fContent);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001741
1742 SkPDFUtils::DrawFormXObject(fXObjectResources.count() - 1,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001743 &inClipContentEntry.entry()->fContent);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001744
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001745 sMaskGS.reset(SkPDFGraphicState::GetNoSMaskGraphicState());
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001746 SkPDFUtils::ApplyGraphicState(addGraphicStateResource(sMaskGS.get()),
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001747 &inClipContentEntry.entry()->fContent);
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001748}
1749
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001750bool SkPDFDevice::isContentEmpty() {
ctguil@chromium.org9510ccc2011-07-27 00:10:51 +00001751 ContentEntry* contentEntries = getContentEntries()->get();
1752 if (!contentEntries || contentEntries->fContent.getOffset() == 0) {
1753 SkASSERT(!contentEntries || !contentEntries->fNext.get());
vandebo@chromium.org481aef62011-05-24 16:39:05 +00001754 return true;
1755 }
1756 return false;
1757}
1758
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001759void SkPDFDevice::populateGraphicStateEntryFromPaint(
1760 const SkMatrix& matrix,
1761 const SkClipStack& clipStack,
1762 const SkRegion& clipRegion,
1763 const SkPaint& paint,
1764 bool hasText,
1765 GraphicStateEntry* entry) {
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001766 SkASSERT(paint.getPathEffect() == NULL);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001767
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001768 NOT_IMPLEMENTED(paint.getMaskFilter() != NULL, false);
1769 NOT_IMPLEMENTED(paint.getColorFilter() != NULL, false);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001770
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001771 entry->fMatrix = matrix;
1772 entry->fClipStack = clipStack;
1773 entry->fClipRegion = clipRegion;
vandebo@chromium.orgda6c5692012-06-28 21:37:20 +00001774 entry->fColor = SkColorSetA(paint.getColor(), 0xFF);
1775 entry->fShaderIndex = -1;
vandebo@chromium.org48543272011-02-08 19:28:07 +00001776
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001777 // PDF treats a shader as a color, so we only set one or the other.
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001778 SkAutoTUnref<SkPDFObject> pdfShader;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001779 const SkShader* shader = paint.getShader();
1780 SkColor color = paint.getColor();
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001781 if (shader) {
1782 // PDF positions patterns relative to the initial transform, so
1783 // we need to apply the current transform to the shader parameters.
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001784 SkMatrix transform = matrix;
vandebo@chromium.org75f97e42011-04-11 23:24:18 +00001785 transform.postConcat(fInitialTransform);
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001786
1787 // PDF doesn't support kClamp_TileMode, so we simulate it by making
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001788 // a pattern the size of the current clip.
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001789 SkIRect bounds = clipRegion.getBounds();
vandebo@chromium.org293a7582012-03-16 19:50:37 +00001790
1791 // We need to apply the initial transform to bounds in order to get
1792 // bounds in a consistent coordinate system.
1793 SkRect boundsTemp;
1794 boundsTemp.set(bounds);
1795 fInitialTransform.mapRect(&boundsTemp);
1796 boundsTemp.roundOut(&bounds);
1797
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001798 pdfShader.reset(SkPDFShader::GetPDFShader(*shader, transform, bounds));
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001799
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00001800 if (pdfShader.get()) {
1801 // pdfShader has been canonicalized so we can directly compare
1802 // pointers.
1803 int resourceIndex = fShaderResources.find(pdfShader.get());
1804 if (resourceIndex < 0) {
1805 resourceIndex = fShaderResources.count();
1806 fShaderResources.push(pdfShader.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001807 pdfShader.get()->ref();
vandebo@chromium.orgb88cfe52011-07-18 18:40:32 +00001808 }
1809 entry->fShaderIndex = resourceIndex;
1810 } else {
1811 // A color shader is treated as an invalid shader so we don't have
1812 // to set a shader just for a color.
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001813 SkShader::GradientInfo gradientInfo;
1814 SkColor gradientColor;
1815 gradientInfo.fColors = &gradientColor;
1816 gradientInfo.fColorOffsets = NULL;
1817 gradientInfo.fColorCount = 1;
1818 if (shader->asAGradient(&gradientInfo) ==
1819 SkShader::kColor_GradientType) {
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001820 entry->fColor = SkColorSetA(gradientColor, 0xFF);
1821 color = gradientColor;
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001822 }
1823 }
vandebo@chromium.orgda912d62011-03-08 18:31:02 +00001824 }
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001825
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001826 SkAutoTUnref<SkPDFGraphicState> newGraphicState;
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001827 if (color == paint.getColor()) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001828 newGraphicState.reset(
1829 SkPDFGraphicState::GetGraphicStateForPaint(paint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001830 } else {
1831 SkPaint newPaint = paint;
1832 newPaint.setColor(color);
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001833 newGraphicState.reset(
1834 SkPDFGraphicState::GetGraphicStateForPaint(newPaint));
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001835 }
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001836 int resourceIndex = addGraphicStateResource(newGraphicState.get());
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001837 entry->fGraphicStateIndex = resourceIndex;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001838
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001839 if (hasText) {
1840 entry->fTextScaleX = paint.getTextScaleX();
1841 entry->fTextFill = paint.getStyle();
1842 } else {
1843 entry->fTextScaleX = 0;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001844 }
1845}
1846
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001847int SkPDFDevice::addGraphicStateResource(SkPDFGraphicState* gs) {
1848 // Assumes that gs has been canonicalized (so we can directly compare
1849 // pointers).
1850 int result = fGraphicStateResources.find(gs);
1851 if (result < 0) {
1852 result = fGraphicStateResources.count();
1853 fGraphicStateResources.push(gs);
1854 gs->ref();
1855 }
1856 return result;
1857}
1858
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001859void SkPDFDevice::updateFont(const SkPaint& paint, uint16_t glyphID,
1860 ContentEntry* contentEntry) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00001861 SkTypeface* typeface = paint.getTypeface();
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001862 if (contentEntry->fState.fFont == NULL ||
1863 contentEntry->fState.fTextSize != paint.getTextSize() ||
1864 !contentEntry->fState.fFont->hasGlyph(glyphID)) {
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00001865 int fontIndex = getFontResourceIndex(typeface, glyphID);
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001866 contentEntry->fContent.writeText("/");
1867 contentEntry->fContent.writeText(SkPDFResourceDict::getResourceName(
1868 SkPDFResourceDict::kFont_ResourceType,
1869 fontIndex).c_str());
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001870 contentEntry->fContent.writeText(" ");
1871 SkPDFScalar::Append(paint.getTextSize(), &contentEntry->fContent);
1872 contentEntry->fContent.writeText(" Tf\n");
1873 contentEntry->fState.fFont = fFontResources[fontIndex];
vandebo@chromium.org2a22e102011-01-25 21:01:34 +00001874 }
1875}
1876
ctguil@chromium.org9db86bb2011-03-04 21:43:27 +00001877int SkPDFDevice::getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID) {
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001878 SkAutoTUnref<SkPDFFont> newFont(SkPDFFont::GetFontResource(typeface, glyphID));
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001879 int resourceIndex = fFontResources.find(newFont.get());
1880 if (resourceIndex < 0) {
1881 resourceIndex = fFontResources.count();
1882 fFontResources.push(newFont.get());
vandebo@chromium.orgd96d17b2013-01-04 19:31:24 +00001883 newFont.get()->ref();
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001884 }
1885 return resourceIndex;
1886}
1887
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001888void SkPDFDevice::internalDrawBitmap(const SkMatrix& matrix,
vandebo@chromium.org78dad542011-05-11 18:46:03 +00001889 const SkClipStack* clipStack,
vandebo@chromium.org9fbdf872011-05-09 07:55:58 +00001890 const SkRegion& clipRegion,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001891 const SkBitmap& bitmap,
vandebo@chromium.orgbefebb82011-01-29 01:38:50 +00001892 const SkIRect* srcRect,
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001893 const SkPaint& paint) {
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001894 SkMatrix scaled;
1895 // Adjust for origin flip.
vandebo@chromium.org663515b2012-01-05 18:45:27 +00001896 scaled.setScale(SK_Scalar1, -SK_Scalar1);
1897 scaled.postTranslate(0, SK_Scalar1);
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001898 // Scale the image up from 1x1 to WxH.
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001899 SkIRect subset = SkIRect::MakeWH(bitmap.width(), bitmap.height());
reed@google.coma6d59f62011-03-07 21:29:21 +00001900 scaled.postScale(SkIntToScalar(subset.width()),
1901 SkIntToScalar(subset.height()));
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001902 scaled.postConcat(matrix);
vandebo@chromium.org13d14a92011-05-24 23:12:41 +00001903 ScopedContentEntry content(this, clipStack, clipRegion, scaled, paint);
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001904 if (!content.entry()) {
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001905 return;
1906 }
1907
1908 if (srcRect && !subset.intersect(*srcRect)) {
1909 return;
1910 }
1911
edisonn@google.comd9dfa182013-04-24 13:01:01 +00001912 SkPDFImage* image = SkPDFImage::CreateImage(bitmap, subset, fEncoder);
vandebo@chromium.org25adce82011-05-09 08:05:01 +00001913 if (!image) {
1914 return;
1915 }
vandebo@chromium.org7e2ff7c2010-11-03 23:55:28 +00001916
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001917 fXObjectResources.push(image); // Transfer reference.
vandebo@chromium.org6112c212011-05-13 03:50:38 +00001918 SkPDFUtils::DrawFormXObject(fXObjectResources.count() - 1,
vandebo@chromium.orgb069c8c2011-05-24 17:19:38 +00001919 &content.entry()->fContent);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00001920}
reed@google.com982cb872011-12-07 18:34:08 +00001921
1922bool SkPDFDevice::onReadPixels(const SkBitmap& bitmap, int x, int y,
1923 SkCanvas::Config8888) {
1924 return false;
1925}
reed@google.comb55deeb2012-01-06 14:43:09 +00001926
1927bool SkPDFDevice::allowImageFilter(SkImageFilter*) {
1928 return false;
1929}