vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 1 | /* |
vandebo@chromium.org | 2a22e10 | 2011-01-25 21:01:34 +0000 | [diff] [blame] | 2 | * Copyright (C) 2011 Google Inc. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef SkPDFDevice_DEFINED |
| 18 | #define SkPDFDevice_DEFINED |
| 19 | |
| 20 | #include "SkRefCnt.h" |
| 21 | #include "SkDevice.h" |
| 22 | #include "SkString.h" |
vandebo@chromium.org | a518086 | 2010-10-26 19:48:49 +0000 | [diff] [blame] | 23 | #include "SkPaint.h" |
| 24 | #include "SkPath.h" |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 25 | |
| 26 | class SkPDFArray; |
| 27 | class SkPDFDevice; |
| 28 | class SkPDFDict; |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 29 | class SkPDFFont; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 30 | class SkPDFGraphicState; |
| 31 | class SkPDFObject; |
| 32 | class SkPDFStream; |
| 33 | |
| 34 | class SkPDFDeviceFactory : public SkDeviceFactory { |
reed@android.com | f2b98d6 | 2010-12-20 18:26:13 +0000 | [diff] [blame] | 35 | virtual SkDevice* newDevice(SkCanvas*, SkBitmap::Config, int width, int height, |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 36 | bool isOpaque, bool isForLayer); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | /** \class SkPDFDevice |
| 40 | |
| 41 | The drawing context for the PDF backend. |
| 42 | */ |
| 43 | class SkPDFDevice : public SkDevice { |
| 44 | public: |
| 45 | /** Create a PDF drawing context with the given width and height. |
| 46 | * 72 points/in means letter paper is 612x792. |
| 47 | * @param width Page width in points. |
| 48 | * @param height Page height in points. |
| 49 | */ |
| 50 | SkPDFDevice(int width, int height); |
| 51 | virtual ~SkPDFDevice(); |
| 52 | |
| 53 | virtual SkDeviceFactory* getDeviceFactory() { |
| 54 | return SkNEW(SkPDFDeviceFactory); |
| 55 | } |
| 56 | |
vandebo@chromium.org | 35fc62b | 2010-10-26 19:47:30 +0000 | [diff] [blame] | 57 | virtual uint32_t getDeviceCapabilities() { return kVector_Capability; } |
| 58 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 59 | virtual int width() const { return fWidth; }; |
| 60 | |
| 61 | virtual int height() const { return fHeight; }; |
| 62 | |
| 63 | /** Called with the correct matrix and clip before this device is drawn |
| 64 | to using those settings. If your subclass overrides this, be sure to |
| 65 | call through to the base class as well. |
| 66 | */ |
| 67 | virtual void setMatrixClip(const SkMatrix&, const SkRegion&); |
| 68 | |
reed@android.com | f2b98d6 | 2010-12-20 18:26:13 +0000 | [diff] [blame] | 69 | virtual bool readPixels(const SkIRect& srcRect, SkBitmap* bitmap) { |
| 70 | return false; |
| 71 | } |
| 72 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 73 | /** These are called inside the per-device-layer loop for each draw call. |
| 74 | When these are called, we have already applied any saveLayer operations, |
| 75 | and are handling any looping from the paint, and any effects from the |
| 76 | DrawFilter. |
| 77 | */ |
| 78 | virtual void drawPaint(const SkDraw&, const SkPaint& paint); |
| 79 | virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, |
| 80 | size_t count, const SkPoint[], |
| 81 | const SkPaint& paint); |
| 82 | virtual void drawRect(const SkDraw&, const SkRect& r, const SkPaint& paint); |
| 83 | virtual void drawPath(const SkDraw&, const SkPath& path, |
vandebo@chromium.org | 02cc5aa | 2011-01-25 22:06:29 +0000 | [diff] [blame^] | 84 | const SkPaint& paint, const SkMatrix* prePathMatrix, |
| 85 | bool pathIsMutable); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 86 | virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, |
reed@android.com | f2b98d6 | 2010-12-20 18:26:13 +0000 | [diff] [blame] | 87 | const SkIRect* srcRectOrNull, |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 88 | const SkMatrix& matrix, const SkPaint& paint); |
| 89 | virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, int x, int y, |
| 90 | const SkPaint& paint); |
| 91 | virtual void drawText(const SkDraw&, const void* text, size_t len, |
| 92 | SkScalar x, SkScalar y, const SkPaint& paint); |
| 93 | virtual void drawPosText(const SkDraw&, const void* text, size_t len, |
| 94 | const SkScalar pos[], SkScalar constY, |
| 95 | int scalarsPerPos, const SkPaint& paint); |
| 96 | virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, |
| 97 | const SkPath& path, const SkMatrix* matrix, |
| 98 | const SkPaint& paint); |
| 99 | virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, |
| 100 | int vertexCount, const SkPoint verts[], |
| 101 | const SkPoint texs[], const SkColor colors[], |
| 102 | SkXfermode* xmode, const uint16_t indices[], |
| 103 | int indexCount, const SkPaint& paint); |
| 104 | virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y, |
| 105 | const SkPaint&); |
| 106 | |
| 107 | // PDF specific methods. |
| 108 | |
| 109 | /** Returns a reference to the resource dictionary for this device. |
| 110 | */ |
| 111 | const SkRefPtr<SkPDFDict>& getResourceDict(); |
| 112 | |
vandebo@chromium.org | a518086 | 2010-10-26 19:48:49 +0000 | [diff] [blame] | 113 | /** Get the list of resources (PDF objects) used on this page. |
| 114 | * @param resourceList A list to append the resources to. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 115 | */ |
vandebo@chromium.org | a518086 | 2010-10-26 19:48:49 +0000 | [diff] [blame] | 116 | void getResources(SkTDArray<SkPDFObject*>* resourceList) const; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 117 | |
| 118 | /** Returns the media box for this device. |
| 119 | */ |
vandebo@chromium.org | a518086 | 2010-10-26 19:48:49 +0000 | [diff] [blame] | 120 | SkRefPtr<SkPDFArray> getMediaBox() const; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 121 | |
| 122 | /** Returns a string with the page contents. |
vandebo@chromium.org | ddbbd80 | 2010-10-26 19:45:06 +0000 | [diff] [blame] | 123 | * @param flipOrigin Flip the origin between top and bottom. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 124 | */ |
vandebo@chromium.org | ddbbd80 | 2010-10-26 19:45:06 +0000 | [diff] [blame] | 125 | SkString content(bool flipOrigin) const; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 126 | |
| 127 | private: |
| 128 | int fWidth; |
| 129 | int fHeight; |
| 130 | SkRefPtr<SkPDFDict> fResourceDict; |
| 131 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 132 | SkTDArray<SkPDFGraphicState*> fGraphicStateResources; |
| 133 | SkTDArray<SkPDFObject*> fXObjectResources; |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 134 | SkTDArray<SkPDFFont*> fFontResources; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 135 | |
vandebo@chromium.org | 7e2ff7c | 2010-11-03 23:55:28 +0000 | [diff] [blame] | 136 | // In PDF, transforms and clips can only be undone by popping the graphic |
| 137 | // state to before the transform or clip was applied. Because it can be |
| 138 | // a lot of work to reapply a clip and because this class has to apply |
| 139 | // different transforms to accomplish various operations, the clip is |
| 140 | // always applied before a transform and always at a different graphic |
| 141 | // state-stack level than a transform. This strategy results in the |
| 142 | // following possible states for the graphic state stack: |
| 143 | // empty: (identity transform and clip to page) |
| 144 | // one entry: a transform |
| 145 | // one entry: a clip |
| 146 | // two entries: a clip and then a transform |
vandebo@chromium.org | 2a22e10 | 2011-01-25 21:01:34 +0000 | [diff] [blame] | 147 | // Pointers are owned by the respective Resources list. |
vandebo@chromium.org | 7e2ff7c | 2010-11-03 23:55:28 +0000 | [diff] [blame] | 148 | struct GraphicStackEntry { |
| 149 | SkColor fColor; |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 150 | SkScalar fTextSize; |
vandebo@chromium.org | 7e2ff7c | 2010-11-03 23:55:28 +0000 | [diff] [blame] | 151 | SkScalar fTextScaleX; |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 152 | SkPaint::Style fTextFill; |
vandebo@chromium.org | 2a22e10 | 2011-01-25 21:01:34 +0000 | [diff] [blame] | 153 | SkPDFFont* fFont; |
| 154 | SkPDFGraphicState* fGraphicState; |
vandebo@chromium.org | 7e2ff7c | 2010-11-03 23:55:28 +0000 | [diff] [blame] | 155 | SkRegion fClip; |
| 156 | SkMatrix fTransform; |
| 157 | }; |
| 158 | struct GraphicStackEntry fGraphicStack[3]; |
| 159 | int fGraphicStackIndex; |
| 160 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 161 | SkString fContent; |
| 162 | |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 163 | void updateGSFromPaint(const SkPaint& newPaint, bool forText); |
vandebo@chromium.org | 2a22e10 | 2011-01-25 21:01:34 +0000 | [diff] [blame] | 164 | void updateFont(const SkPaint& paint, uint16_t glyphID); |
| 165 | int getFontResourceIndex(uint32_t fontID, uint16_t glyphID); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 166 | |
| 167 | void moveTo(SkScalar x, SkScalar y); |
| 168 | void appendLine(SkScalar x, SkScalar y); |
| 169 | void appendCubic(SkScalar ctl1X, SkScalar ctl1Y, |
| 170 | SkScalar ctl2X, SkScalar ctl2Y, |
| 171 | SkScalar dstX, SkScalar dstY); |
| 172 | void appendRectangle(SkScalar x, SkScalar y, SkScalar w, SkScalar h); |
vandebo@chromium.org | 7e2ff7c | 2010-11-03 23:55:28 +0000 | [diff] [blame] | 173 | void emitPath(const SkPath& path); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 174 | void closePath(); |
vandebo@chromium.org | a518086 | 2010-10-26 19:48:49 +0000 | [diff] [blame] | 175 | void paintPath(SkPaint::Style style, SkPath::FillType fill); |
vandebo@chromium.org | 7e2ff7c | 2010-11-03 23:55:28 +0000 | [diff] [blame] | 176 | void strokePath(); |
| 177 | void pushGS(); |
| 178 | void popGS(); |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 179 | void setTextTransform(SkScalar x, SkScalar y, SkScalar textSkewX); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 180 | void internalDrawBitmap(const SkMatrix& matrix, const SkBitmap& bitmap, |
| 181 | const SkPaint& paint); |
| 182 | |
vandebo@chromium.org | 7e2ff7c | 2010-11-03 23:55:28 +0000 | [diff] [blame] | 183 | SkMatrix setTransform(const SkMatrix& matrix); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 184 | }; |
| 185 | |
| 186 | #endif |