vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2011 Google Inc. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 3 | * |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef SkPDFDevice_DEFINED |
| 9 | #define SkPDFDevice_DEFINED |
| 10 | |
commit-bot@chromium.org | 5e00989 | 2013-10-14 13:42:12 +0000 | [diff] [blame] | 11 | #include "SkBitmap.h" |
halcanary | a50151d | 2016-03-25 11:57:49 -0700 | [diff] [blame] | 12 | #include "SkBitmapKey.h" |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 13 | #include "SkCanvas.h" |
bungeman | d3ebb48 | 2015-08-05 13:57:49 -0700 | [diff] [blame] | 14 | #include "SkClipStack.h" |
halcanary | 91fcb3e | 2016-03-04 13:53:22 -0800 | [diff] [blame] | 15 | #include "SkData.h" |
bungeman | d3ebb48 | 2015-08-05 13:57:49 -0700 | [diff] [blame] | 16 | #include "SkDevice.h" |
vandebo@chromium.org | a518086 | 2010-10-26 19:48:49 +0000 | [diff] [blame] | 17 | #include "SkPaint.h" |
| 18 | #include "SkPath.h" |
commit-bot@chromium.org | 608ea65 | 2013-10-03 19:29:21 +0000 | [diff] [blame] | 19 | #include "SkPicture.h" |
vandebo@chromium.org | 238be8c | 2012-07-13 20:06:02 +0000 | [diff] [blame] | 20 | #include "SkRect.h" |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 21 | #include "SkRefCnt.h" |
| 22 | #include "SkStream.h" |
epoger@google.com | b58772f | 2013-03-08 09:09:10 +0000 | [diff] [blame] | 23 | #include "SkTDArray.h" |
commit-bot@chromium.org | e029440 | 2013-08-29 22:14:04 +0000 | [diff] [blame] | 24 | #include "SkTemplates.h" |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 25 | |
halcanary | 2be7e01 | 2016-03-28 11:58:08 -0700 | [diff] [blame] | 26 | #include "SkSinglyLinkedList.h" |
| 27 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 28 | class SkPDFArray; |
halcanary | a1f1ee9 | 2015-02-20 06:17:26 -0800 | [diff] [blame] | 29 | class SkPDFCanon; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 30 | class SkPDFDevice; |
halcanary | 989da4a | 2016-03-21 14:33:17 -0700 | [diff] [blame] | 31 | class SkPDFDocument; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 32 | class SkPDFDict; |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 33 | class SkPDFFont; |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 34 | class SkPDFFormXObject; |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 35 | class SkPDFGlyphSetMap; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 36 | class SkPDFGraphicState; |
| 37 | class SkPDFObject; |
vandebo@chromium.org | da912d6 | 2011-03-08 18:31:02 +0000 | [diff] [blame] | 38 | class SkPDFShader; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 39 | class SkPDFStream; |
scroggo@google.com | a8e33a9 | 2013-11-08 18:02:53 +0000 | [diff] [blame] | 40 | class SkRRect; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 41 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 42 | /** \class SkPDFDevice |
| 43 | |
| 44 | The drawing context for the PDF backend. |
| 45 | */ |
halcanary | 70d1554 | 2015-11-22 12:55:04 -0800 | [diff] [blame] | 46 | class SkPDFDevice final : public SkBaseDevice { |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 47 | public: |
halcanary | a1f1ee9 | 2015-02-20 06:17:26 -0800 | [diff] [blame] | 48 | /** Create a PDF drawing context. SkPDFDevice applies a |
| 49 | * scale-and-translate transform to move the origin from the |
| 50 | * bottom left (PDF default) to the top left (Skia default). |
| 51 | * @param pageSize Page size in point units. |
| 52 | * 1 point == 127/360 mm == 1/72 inch |
| 53 | * @param rasterDpi the DPI at which features without native PDF |
| 54 | * support will be rasterized (e.g. draw image with |
| 55 | * perspective, draw text with perspective, ...). A |
| 56 | * larger DPI would create a PDF that reflects the |
| 57 | * original intent with better fidelity, but it can make |
| 58 | * for larger PDF files too, which would use more memory |
| 59 | * while rendering, and it would be slower to be processed |
| 60 | * or sent online or to printer. A good choice is |
| 61 | * SK_ScalarDefaultRasterDPI(72.0f). |
halcanary | 989da4a | 2016-03-21 14:33:17 -0700 | [diff] [blame] | 62 | * @param SkPDFDocument. A non-null pointer back to the |
| 63 | * document. The document is repsonsible for |
| 64 | * de-duplicating across pages (via the SkPDFCanon) and |
| 65 | * for early serializing of large immutable objects, such |
| 66 | * as images (via SkPDFDocument::serialize()). |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 67 | */ |
halcanary | a1f1ee9 | 2015-02-20 06:17:26 -0800 | [diff] [blame] | 68 | static SkPDFDevice* Create(SkISize pageSize, |
| 69 | SkScalar rasterDpi, |
halcanary | 989da4a | 2016-03-21 14:33:17 -0700 | [diff] [blame] | 70 | SkPDFDocument* doc) { |
| 71 | return new SkPDFDevice(pageSize, rasterDpi, doc, true); |
halcanary | a1f1ee9 | 2015-02-20 06:17:26 -0800 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | /** Create a PDF drawing context without fipping the y-axis. */ |
| 75 | static SkPDFDevice* CreateUnflipped(SkISize pageSize, |
| 76 | SkScalar rasterDpi, |
halcanary | 989da4a | 2016-03-21 14:33:17 -0700 | [diff] [blame] | 77 | SkPDFDocument* doc) { |
| 78 | return new SkPDFDevice(pageSize, rasterDpi, doc, false); |
halcanary | a1f1ee9 | 2015-02-20 06:17:26 -0800 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | virtual ~SkPDFDevice(); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 82 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 83 | /** These are called inside the per-device-layer loop for each draw call. |
| 84 | When these are called, we have already applied any saveLayer operations, |
| 85 | and are handling any looping from the paint, and any effects from the |
| 86 | DrawFilter. |
| 87 | */ |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 88 | void drawPaint(const SkDraw&, const SkPaint& paint) override; |
tfarina | fa4f6cb | 2014-12-21 10:27:07 -0800 | [diff] [blame] | 89 | void drawPoints(const SkDraw&, SkCanvas::PointMode mode, |
| 90 | size_t count, const SkPoint[], |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 91 | const SkPaint& paint) override; |
| 92 | void drawRect(const SkDraw&, const SkRect& r, const SkPaint& paint) override; |
| 93 | void drawOval(const SkDraw&, const SkRect& oval, const SkPaint& paint) override; |
| 94 | void drawRRect(const SkDraw&, const SkRRect& rr, const SkPaint& paint) override; |
tfarina | fa4f6cb | 2014-12-21 10:27:07 -0800 | [diff] [blame] | 95 | void drawPath(const SkDraw&, const SkPath& origpath, |
| 96 | const SkPaint& paint, const SkMatrix* prePathMatrix, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 97 | bool pathIsMutable) override; |
reed | 562fe47 | 2015-07-28 07:35:14 -0700 | [diff] [blame] | 98 | void drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap, const SkRect* src, |
| 99 | const SkRect& dst, const SkPaint&, SkCanvas::SrcRectConstraint) override; |
tfarina | fa4f6cb | 2014-12-21 10:27:07 -0800 | [diff] [blame] | 100 | void drawBitmap(const SkDraw&, const SkBitmap& bitmap, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 101 | const SkMatrix& matrix, const SkPaint&) override; |
tfarina | fa4f6cb | 2014-12-21 10:27:07 -0800 | [diff] [blame] | 102 | void drawSprite(const SkDraw&, const SkBitmap& bitmap, int x, int y, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 103 | const SkPaint& paint) override; |
halcanary | 7a14b31 | 2015-10-01 07:28:13 -0700 | [diff] [blame] | 104 | void drawImage(const SkDraw&, |
| 105 | const SkImage*, |
| 106 | SkScalar x, |
| 107 | SkScalar y, |
| 108 | const SkPaint&) override; |
| 109 | void drawImageRect(const SkDraw&, |
| 110 | const SkImage*, |
| 111 | const SkRect* src, |
| 112 | const SkRect& dst, |
| 113 | const SkPaint&, |
| 114 | SkCanvas::SrcRectConstraint) override; |
tfarina | fa4f6cb | 2014-12-21 10:27:07 -0800 | [diff] [blame] | 115 | void drawText(const SkDraw&, const void* text, size_t len, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 116 | SkScalar x, SkScalar y, const SkPaint&) override; |
tfarina | fa4f6cb | 2014-12-21 10:27:07 -0800 | [diff] [blame] | 117 | void drawPosText(const SkDraw&, const void* text, size_t len, |
| 118 | const SkScalar pos[], int scalarsPerPos, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 119 | const SkPoint& offset, const SkPaint&) override; |
tfarina | fa4f6cb | 2014-12-21 10:27:07 -0800 | [diff] [blame] | 120 | void drawVertices(const SkDraw&, SkCanvas::VertexMode, |
| 121 | int vertexCount, const SkPoint verts[], |
| 122 | const SkPoint texs[], const SkColor colors[], |
| 123 | SkXfermode* xmode, const uint16_t indices[], |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 124 | int indexCount, const SkPaint& paint) override; |
tfarina | fa4f6cb | 2014-12-21 10:27:07 -0800 | [diff] [blame] | 125 | void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y, |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 126 | const SkPaint&) override; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 127 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 128 | void onAttachToCanvas(SkCanvas* canvas) override; |
| 129 | void onDetachFromCanvas() override; |
| 130 | SkImageInfo imageInfo() const override; |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 131 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 132 | // PDF specific methods. |
| 133 | |
halcanary | 8103a34 | 2016-03-08 15:10:16 -0800 | [diff] [blame] | 134 | /** Create the resource dictionary for this device. */ |
| 135 | sk_sp<SkPDFDict> makeResourceDict() const; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 136 | |
vandebo@chromium.org | f0ec266 | 2011-05-29 05:55:42 +0000 | [diff] [blame] | 137 | /** Get the fonts used on this device. |
| 138 | */ |
halcanary | 4e4e816 | 2015-02-25 08:59:48 -0800 | [diff] [blame] | 139 | const SkTDArray<SkPDFFont*>& getFontResources() const; |
vandebo@chromium.org | f0ec266 | 2011-05-29 05:55:42 +0000 | [diff] [blame] | 140 | |
wangxianzhu | ef6c50a | 2015-09-17 20:38:02 -0700 | [diff] [blame] | 141 | /** Add our annotations (link to urls and destinations) to the supplied |
| 142 | * array. |
| 143 | * @param array Array to add annotations to. |
| 144 | */ |
| 145 | void appendAnnotations(SkPDFArray* array) const; |
| 146 | |
epoger@google.com | b58772f | 2013-03-08 09:09:10 +0000 | [diff] [blame] | 147 | /** Add our named destinations to the supplied dictionary. |
| 148 | * @param dict Dictionary to add destinations to. |
| 149 | * @param page The PDF object representing the page for this device. |
| 150 | */ |
halcanary | 6d62270 | 2015-03-25 08:45:42 -0700 | [diff] [blame] | 151 | void appendDestinations(SkPDFDict* dict, SkPDFObject* page) const; |
epoger@google.com | b58772f | 2013-03-08 09:09:10 +0000 | [diff] [blame] | 152 | |
halcanary | 8103a34 | 2016-03-08 15:10:16 -0800 | [diff] [blame] | 153 | /** Returns a copy of the media box for this device. */ |
| 154 | sk_sp<SkPDFArray> copyMediaBox() const; |
halcanary | 51d04d3 | 2016-03-08 13:03:55 -0800 | [diff] [blame] | 155 | |
halcanary | 8103a34 | 2016-03-08 15:10:16 -0800 | [diff] [blame] | 156 | /** Returns a SkStream with the page contents. |
halcanary | 51d04d3 | 2016-03-08 13:03:55 -0800 | [diff] [blame] | 157 | */ |
mtklein | 5f939ab | 2016-03-16 10:28:35 -0700 | [diff] [blame] | 158 | std::unique_ptr<SkStreamAsset> content() const; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 159 | |
halcanary | 334fcbc | 2015-02-24 12:56:16 -0800 | [diff] [blame] | 160 | /** Writes the page contents to the stream. */ |
halcanary | 4e4e816 | 2015-02-25 08:59:48 -0800 | [diff] [blame] | 161 | void writeContent(SkWStream*) const; |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 162 | |
halcanary | 4e4e816 | 2015-02-25 08:59:48 -0800 | [diff] [blame] | 163 | const SkMatrix& initialTransform() const { |
vandebo@chromium.org | 3509f05 | 2011-05-30 20:52:33 +0000 | [diff] [blame] | 164 | return fInitialTransform; |
| 165 | } |
vandebo@chromium.org | 61d2678 | 2011-05-24 23:02:07 +0000 | [diff] [blame] | 166 | |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 167 | /** Returns a SkPDFGlyphSetMap which represents glyph usage of every font |
| 168 | * that shows on this device. |
| 169 | */ |
| 170 | const SkPDFGlyphSetMap& getFontGlyphUsage() const { |
| 171 | return *(fFontGlyphUsage.get()); |
| 172 | } |
vandebo@chromium.org | 74b4619 | 2012-01-28 01:45:11 +0000 | [diff] [blame] | 173 | |
halcanary | 989da4a | 2016-03-21 14:33:17 -0700 | [diff] [blame] | 174 | SkPDFCanon* getCanon() const; |
halcanary | 26b5d15 | 2015-03-25 08:38:03 -0700 | [diff] [blame] | 175 | |
halcanary | 2be7e01 | 2016-03-28 11:58:08 -0700 | [diff] [blame] | 176 | // It is important to not confuse GraphicStateEntry with SkPDFGraphicState, the |
| 177 | // later being our representation of an object in the PDF file. |
| 178 | struct GraphicStateEntry { |
| 179 | GraphicStateEntry(); |
| 180 | |
| 181 | // Compare the fields we care about when setting up a new content entry. |
| 182 | bool compareInitialState(const GraphicStateEntry& b); |
| 183 | |
| 184 | SkMatrix fMatrix; |
| 185 | // We can't do set operations on Paths, though PDF natively supports |
| 186 | // intersect. If the clip stack does anything other than intersect, |
| 187 | // we have to fall back to the region. Treat fClipStack as authoritative. |
| 188 | // See https://bugs.skia.org/221 |
| 189 | SkClipStack fClipStack; |
| 190 | SkRegion fClipRegion; |
| 191 | |
| 192 | // When emitting the content entry, we will ensure the graphic state |
| 193 | // is set to these values first. |
| 194 | SkColor fColor; |
| 195 | SkScalar fTextScaleX; // Zero means we don't care what the value is. |
| 196 | SkPaint::Style fTextFill; // Only if TextScaleX is non-zero. |
| 197 | int fShaderIndex; |
| 198 | int fGraphicStateIndex; |
| 199 | |
| 200 | // We may change the font (i.e. for Type1 support) within a |
| 201 | // ContentEntry. This is the one currently in effect, or nullptr if none. |
| 202 | SkPDFFont* fFont; |
| 203 | // In PDF, text size has no default value. It is only valid if fFont is |
| 204 | // not nullptr. |
| 205 | SkScalar fTextSize; |
| 206 | }; |
| 207 | |
edisonn@google.com | 73a7ea3 | 2013-11-11 20:55:15 +0000 | [diff] [blame] | 208 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 209 | const SkBitmap& onAccessBitmap() override { |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 210 | return fLegacyBitmap; |
| 211 | } |
| 212 | |
reed | e8f3062 | 2016-03-23 18:59:25 -0700 | [diff] [blame] | 213 | sk_sp<SkSurface> makeSurface(const SkImageInfo&, const SkSurfaceProps&) override; |
edisonn@google.com | 73a7ea3 | 2013-11-11 20:55:15 +0000 | [diff] [blame] | 214 | |
reed | f70b531 | 2016-03-04 16:36:20 -0800 | [diff] [blame] | 215 | void drawAnnotation(const SkDraw&, const SkRect&, const char key[], SkData* value) override; |
| 216 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 217 | private: |
halcanary | 91fcb3e | 2016-03-04 13:53:22 -0800 | [diff] [blame] | 218 | struct RectWithData { |
| 219 | SkRect rect; |
halcanary | d7b2885 | 2016-03-07 12:39:14 -0800 | [diff] [blame] | 220 | sk_sp<SkData> data; |
halcanary | 91fcb3e | 2016-03-04 13:53:22 -0800 | [diff] [blame] | 221 | RectWithData(const SkRect& rect, SkData* data) |
| 222 | : rect(rect), data(SkRef(data)) {} |
halcanary | d7b2885 | 2016-03-07 12:39:14 -0800 | [diff] [blame] | 223 | RectWithData(RectWithData&& other) |
| 224 | : rect(other.rect), data(std::move(other.data)) {} |
| 225 | RectWithData& operator=(RectWithData&& other) { |
| 226 | rect = other.rect; |
| 227 | data = std::move(other.data); |
| 228 | return *this; |
| 229 | } |
halcanary | 91fcb3e | 2016-03-04 13:53:22 -0800 | [diff] [blame] | 230 | }; |
| 231 | |
| 232 | struct NamedDestination { |
halcanary | d7b2885 | 2016-03-07 12:39:14 -0800 | [diff] [blame] | 233 | sk_sp<SkData> nameData; |
halcanary | 91fcb3e | 2016-03-04 13:53:22 -0800 | [diff] [blame] | 234 | SkPoint point; |
| 235 | NamedDestination(SkData* nameData, const SkPoint& point) |
| 236 | : nameData(SkRef(nameData)), point(point) {} |
halcanary | d7b2885 | 2016-03-07 12:39:14 -0800 | [diff] [blame] | 237 | NamedDestination(NamedDestination&& other) |
| 238 | : nameData(std::move(other.nameData)), point(other.point) {} |
| 239 | NamedDestination& operator=(NamedDestination&& other) { |
| 240 | nameData = std::move(other.nameData); |
| 241 | point = other.point; |
| 242 | return *this; |
| 243 | } |
halcanary | 91fcb3e | 2016-03-04 13:53:22 -0800 | [diff] [blame] | 244 | }; |
| 245 | |
ctguil@chromium.org | 769fa6a | 2011-08-20 00:36:18 +0000 | [diff] [blame] | 246 | // TODO(vandebo): push most of SkPDFDevice's state into a core object in |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 247 | // order to get the right access levels without using friend. |
vandebo@chromium.org | 13d14a9 | 2011-05-24 23:12:41 +0000 | [diff] [blame] | 248 | friend class ScopedContentEntry; |
vandebo@chromium.org | a0c7edb | 2011-05-09 07:58:08 +0000 | [diff] [blame] | 249 | |
ctguil@chromium.org | 1526129 | 2011-04-29 17:54:16 +0000 | [diff] [blame] | 250 | SkISize fPageSize; |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 251 | SkISize fContentSize; |
vandebo@chromium.org | 75f97e4 | 2011-04-11 23:24:18 +0000 | [diff] [blame] | 252 | SkMatrix fInitialTransform; |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 253 | SkClipStack fExistingClipStack; |
| 254 | SkRegion fExistingClipRegion; |
wangxianzhu | ef6c50a | 2015-09-17 20:38:02 -0700 | [diff] [blame] | 255 | |
halcanary | 91fcb3e | 2016-03-04 13:53:22 -0800 | [diff] [blame] | 256 | SkTArray<RectWithData> fLinkToURLs; |
| 257 | SkTArray<RectWithData> fLinkToDestinations; |
| 258 | SkTArray<NamedDestination> fNamedDestinations; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 259 | |
halcanary | be27a11 | 2015-04-01 13:31:19 -0700 | [diff] [blame] | 260 | SkTDArray<SkPDFObject*> fGraphicStateResources; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 261 | SkTDArray<SkPDFObject*> fXObjectResources; |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 262 | SkTDArray<SkPDFFont*> fFontResources; |
vandebo@chromium.org | 421d644 | 2011-07-20 17:39:01 +0000 | [diff] [blame] | 263 | SkTDArray<SkPDFObject*> fShaderResources; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 264 | |
halcanary | 2be7e01 | 2016-03-28 11:58:08 -0700 | [diff] [blame] | 265 | struct ContentEntry { |
| 266 | GraphicStateEntry fState; |
| 267 | SkDynamicMemoryWStream fContent; |
| 268 | }; |
| 269 | SkSinglyLinkedList<ContentEntry> fContentEntries; |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 270 | |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 271 | const SkClipStack* fClipStack; |
| 272 | |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 273 | // Glyph ids used for each font on this device. |
halcanary | b8fb993 | 2016-03-28 07:58:30 -0700 | [diff] [blame] | 274 | std::unique_ptr<SkPDFGlyphSetMap> fFontGlyphUsage; |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 275 | |
commit-bot@chromium.org | 8c29490 | 2013-10-21 17:14:37 +0000 | [diff] [blame] | 276 | SkScalar fRasterDpi; |
edisonn@google.com | d9dfa18 | 2013-04-24 13:01:01 +0000 | [diff] [blame] | 277 | |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 278 | SkBitmap fLegacyBitmap; |
| 279 | |
halcanary | 989da4a | 2016-03-21 14:33:17 -0700 | [diff] [blame] | 280 | SkPDFDocument* fDocument; |
halcanary | a1f1ee9 | 2015-02-20 06:17:26 -0800 | [diff] [blame] | 281 | //////////////////////////////////////////////////////////////////////////// |
| 282 | |
| 283 | SkPDFDevice(SkISize pageSize, |
| 284 | SkScalar rasterDpi, |
halcanary | 989da4a | 2016-03-21 14:33:17 -0700 | [diff] [blame] | 285 | SkPDFDocument* doc, |
halcanary | a1f1ee9 | 2015-02-20 06:17:26 -0800 | [diff] [blame] | 286 | bool flip); |
| 287 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 288 | SkBaseDevice* onCreateDevice(const CreateInfo&, const SkPaint*) override; |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 289 | |
vandebo@chromium.org | 77bcaa3 | 2011-04-15 20:57:37 +0000 | [diff] [blame] | 290 | void init(); |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 291 | void cleanUp(bool clearFontUsage); |
reed@google.com | fc641d0 | 2012-09-20 17:52:20 +0000 | [diff] [blame] | 292 | SkPDFFormXObject* createFormXObjectFromDevice(); |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 293 | |
vandebo@chromium.org | 3b41621 | 2013-10-30 20:48:05 +0000 | [diff] [blame] | 294 | void drawFormXObjectWithMask(int xObjectIndex, |
| 295 | SkPDFFormXObject* mask, |
vandebo@chromium.org | 481aef6 | 2011-05-24 16:39:05 +0000 | [diff] [blame] | 296 | const SkClipStack* clipStack, |
| 297 | const SkRegion& clipRegion, |
vandebo@chromium.org | 3b41621 | 2013-10-30 20:48:05 +0000 | [diff] [blame] | 298 | SkXfermode::Mode mode, |
vandebo@chromium.org | 481aef6 | 2011-05-24 16:39:05 +0000 | [diff] [blame] | 299 | bool invertClip); |
vandebo@chromium.org | 466f3d6 | 2011-05-18 23:06:29 +0000 | [diff] [blame] | 300 | |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 301 | // If the paint or clip is such that we shouldn't draw anything, this |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 302 | // returns nullptr and does not create a content entry. |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 303 | // setUpContentEntry and finishContentEntry can be used directly, but |
vandebo@chromium.org | 13d14a9 | 2011-05-24 23:12:41 +0000 | [diff] [blame] | 304 | // the preferred method is to use the ScopedContentEntry helper class. |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 305 | ContentEntry* setUpContentEntry(const SkClipStack* clipStack, |
| 306 | const SkRegion& clipRegion, |
| 307 | const SkMatrix& matrix, |
| 308 | const SkPaint& paint, |
| 309 | bool hasText, |
reed@google.com | fc641d0 | 2012-09-20 17:52:20 +0000 | [diff] [blame] | 310 | SkPDFFormXObject** dst); |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 311 | void finishContentEntry(SkXfermode::Mode xfermode, |
vandebo@chromium.org | 3b41621 | 2013-10-30 20:48:05 +0000 | [diff] [blame] | 312 | SkPDFFormXObject* dst, |
| 313 | SkPath* shape); |
vandebo@chromium.org | 481aef6 | 2011-05-24 16:39:05 +0000 | [diff] [blame] | 314 | bool isContentEmpty(); |
| 315 | |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 316 | void populateGraphicStateEntryFromPaint(const SkMatrix& matrix, |
| 317 | const SkClipStack& clipStack, |
| 318 | const SkRegion& clipRegion, |
| 319 | const SkPaint& paint, |
| 320 | bool hasText, |
| 321 | GraphicStateEntry* entry); |
halcanary | be27a11 | 2015-04-01 13:31:19 -0700 | [diff] [blame] | 322 | int addGraphicStateResource(SkPDFObject* gs); |
vandebo@chromium.org | 3b41621 | 2013-10-30 20:48:05 +0000 | [diff] [blame] | 323 | int addXObjectResource(SkPDFObject* xObject); |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 324 | |
robertphillips | 8e0c150 | 2015-07-07 10:28:43 -0700 | [diff] [blame] | 325 | void updateFont(const SkPaint& paint, uint16_t glyphID, ContentEntry* contentEntry); |
ctguil@chromium.org | 9db86bb | 2011-03-04 21:43:27 +0000 | [diff] [blame] | 326 | int getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 327 | |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 328 | void internalDrawPaint(const SkPaint& paint, ContentEntry* contentEntry); |
halcanary | a50151d | 2016-03-25 11:57:49 -0700 | [diff] [blame] | 329 | |
| 330 | void internalDrawImage(const SkMatrix& origMatrix, |
halcanary | 7a14b31 | 2015-10-01 07:28:13 -0700 | [diff] [blame] | 331 | const SkClipStack* clipStack, |
halcanary | a50151d | 2016-03-25 11:57:49 -0700 | [diff] [blame] | 332 | const SkRegion& origClipRegion, |
| 333 | SkImageBitmap imageBitmap, |
halcanary | 7a14b31 | 2015-10-01 07:28:13 -0700 | [diff] [blame] | 334 | const SkPaint& paint); |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 335 | |
commit-bot@chromium.org | 92ffe7d | 2013-07-31 22:54:31 +0000 | [diff] [blame] | 336 | bool handleInversePath(const SkDraw& d, const SkPath& origPath, |
edisonn@google.com | a9ebd16 | 2013-10-07 13:22:21 +0000 | [diff] [blame] | 337 | const SkPaint& paint, bool pathIsMutable, |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 338 | const SkMatrix* prePathMatrix = nullptr); |
reed | f70b531 | 2016-03-04 16:36:20 -0800 | [diff] [blame] | 339 | void handlePointAnnotation(const SkPoint&, const SkMatrix&, const char key[], SkData* value); |
| 340 | void handlePathAnnotation(const SkPath&, const SkDraw& d, const char key[], SkData* value); |
vandebo@chromium.org | 238be8c | 2012-07-13 20:06:02 +0000 | [diff] [blame] | 341 | |
reed | 89443ab | 2014-06-27 11:34:19 -0700 | [diff] [blame] | 342 | typedef SkBaseDevice INHERITED; |
commit-bot@chromium.org | 5e00989 | 2013-10-14 13:42:12 +0000 | [diff] [blame] | 343 | |
| 344 | // TODO(edisonn): Only SkDocument_PDF and SkPDFImageShader should be able to create |
| 345 | // an SkPDFDevice |
| 346 | //friend class SkDocument_PDF; |
| 347 | //friend class SkPDFImageShader; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 348 | }; |
| 349 | |
| 350 | #endif |