2 Output device which creates a bitmap.
4 This file is part of swftools.
6 Swftools is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 Swftools is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with swftools; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
20 #ifndef __BitmapOutputDev_h__
21 #define __BitmapOutputDev_h__
23 #include "../gfxdevice.h"
24 #include "../gfxsource.h"
25 #include "../gfxtools.h"
28 #include "GFXOutputDev.h"
29 #include "InfoOutputDev.h"
31 #include "CommonOutputDev.h"
36 SplashBitmap*clipbitmap;
41 #define STATE_PARALLEL 0
42 #define STATE_TEXT_IS_ABOVE 1
43 #define STATE_BITMAP_IS_ABOVE 2
45 class BitmapOutputDev: public CommonOutputDev {
47 BitmapOutputDev(InfoOutputDev*info, PDFDoc*doc);
48 virtual ~BitmapOutputDev();
50 virtual void dbg_newdata(char*newdata);
53 virtual void setDevice(gfxdevice_t*dev);
54 virtual void setMove(int x,int y);
55 virtual void setClip(int x1,int y1,int x2,int y2);
56 virtual void setParameter(const char*key, const char*value);
57 virtual void setPageMap(int*page2page, int pagemap_size);
60 virtual GBool upsideDown();
61 virtual GBool useDrawChar();
62 virtual GBool useTilingPatternFill();
63 virtual GBool useShadedFills();
64 virtual GBool useDrawForm();
65 virtual GBool interpretType3Chars();
66 virtual GBool needNonText();
67 virtual void setDefaultCTM(double *ctm);
68 virtual GBool checkPageSlice(Page *page, double hDPI, double vDPI,
69 int rotate, GBool useMediaBox, GBool crop,
70 int sliceX, int sliceY, int sliceW, int sliceH,
71 GBool printing, Catalog *catalog,
72 GBool (*abortCheckCbk)(void *data) = NULL,
73 void *abortCheckCbkData = NULL);
75 virtual void startPage(int pageNum, GfxState *state);
76 virtual void endPage();
77 virtual void finishPage();
79 virtual void saveState(GfxState *state);
80 virtual void restoreState(GfxState *state);
82 virtual void updateAll(GfxState *state);
83 virtual void updateCTM(GfxState *state, double m11, double m12, double m21, double m22, double m31, double m32);
84 virtual void updateLineDash(GfxState *state);
85 virtual void updateFlatness(GfxState *state);
86 virtual void updateLineJoin(GfxState *state);
87 virtual void updateLineCap(GfxState *state);
88 virtual void updateMiterLimit(GfxState *state);
89 virtual void updateLineWidth(GfxState *state);
90 virtual void updateStrokeAdjust(GfxState *state);
91 virtual void updateFillColorSpace(GfxState *state);
92 virtual void updateStrokeColorSpace(GfxState *state);
93 virtual void updateFillColor(GfxState *state);
94 virtual void updateStrokeColor(GfxState *state);
95 virtual void updateBlendMode(GfxState *state);
96 virtual void updateFillOpacity(GfxState *state);
97 virtual void updateStrokeOpacity(GfxState *state);
98 virtual void updateFillOverprint(GfxState *state);
99 virtual void updateStrokeOverprint(GfxState *state);
100 virtual void updateTransfer(GfxState *state);
101 virtual void updateFont(GfxState *state);
102 virtual void updateTextMat(GfxState *state);
103 virtual void updateCharSpace(GfxState *state);
104 virtual void updateRender(GfxState *state);
105 virtual void updateRise(GfxState *state);
106 virtual void updateWordSpace(GfxState *state);
107 virtual void updateHorizScaling(GfxState *state);
108 virtual void updateTextPos(GfxState *state);
109 virtual void updateTextShift(GfxState *state, double shift);
111 virtual void stroke(GfxState *state);
112 virtual void fill(GfxState *state);
113 virtual void eoFill(GfxState *state);
114 #if (xpdfMajorVersion < 3) || (xpdfMinorVersion < 2) || (xpdfUpdateVersion < 7)
115 virtual void tilingPatternFill(GfxState *state, Object *str,
116 int paintType, Dict *resDict,
117 double *mat, double *bbox,
118 int x0, int y0, int x1, int y1,
119 double xStep, double yStep);
121 virtual void tilingPatternFill(GfxState *state, Gfx *gfx, Object *str,
122 int paintType, Dict *resDict,
123 double *mat, double *bbox,
124 int x0, int y0, int x1, int y1,
125 double xStep, double yStep);
128 virtual GBool functionShadedFill(GfxState *state,
129 GfxFunctionShading *shading);
130 virtual GBool axialShadedFill(GfxState *state, GfxAxialShading *shading);
131 virtual GBool radialShadedFill(GfxState *state, GfxRadialShading *shading);
133 virtual void clip(GfxState *state);
134 virtual void eoClip(GfxState *state);
135 virtual void clipToStrokePath(GfxState *state);
137 virtual void beginStringOp(GfxState *state);
138 virtual void endStringOp(GfxState *state);
139 virtual void beginString(GfxState *state, GString *s);
140 virtual void endString(GfxState *state);
141 virtual void drawChar(GfxState *state, double x, double y,
142 double dx, double dy,
143 double originX, double originY,
144 CharCode code, int nBytes, Unicode *u, int uLen);
145 virtual void drawString(GfxState *state, GString *s);
146 virtual GBool beginType3Char(GfxState *state, double x, double y,
147 double dx, double dy,
148 CharCode code, Unicode *u, int uLen);
149 virtual void endType3Char(GfxState *state);
150 virtual void endTextObject(GfxState *state);
152 virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
153 int width, int height, GBool invert,
155 virtual void drawImage(GfxState *state, Object *ref, Stream *str,
156 int width, int height, GfxImageColorMap *colorMap,
157 int *maskColors, GBool inlineImg);
158 virtual void drawMaskedImage(GfxState *state, Object *ref, Stream *str,
159 int width, int height,
160 GfxImageColorMap *colorMap,
161 Stream *maskStr, int maskWidth, int maskHeight,
163 virtual void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str,
164 int width, int height,
165 GfxImageColorMap *colorMap,
167 int maskWidth, int maskHeight,
168 GfxImageColorMap *maskColorMap);
170 virtual void type3D0(GfxState *state, double wx, double wy);
171 virtual void type3D1(GfxState *state, double wx, double wy, double llx, double lly, double urx, double ury);
173 virtual void drawForm(Ref id);
175 virtual void beginTransparencyGroup(GfxState *state, double *bbox,
176 GfxColorSpace *blendingColorSpace,
177 GBool isolated, GBool knockout,
179 virtual void endTransparencyGroup(GfxState *state);
180 virtual void paintTransparencyGroup(GfxState *state, double *bbox);
181 virtual void setSoftMask(GfxState *state, double *bbox, GBool alpha, Function *transferFunc, GfxColor *backdropColor);
182 virtual void clearSoftMask(GfxState *state);
184 virtual void processLink(Link *link, Catalog *catalog);
186 virtual void setVectorAntialias(GBool vaa);
187 virtual GBool getVectorAntialias();
191 void flushEverything();
193 void clearBoolPolyDev();
194 void clearBoolTextDev();
197 GBool checkNewText(int x1, int y1, int x2, int y2);
198 GBool checkNewBitmap(int x1, int y1, int x2, int y2);
199 GBool clip0and1differ(int x1,int y1,int x2,int y2);
200 GBool intersection(SplashBitmap*boolpoly, SplashBitmap*booltext, int x1, int y1, int x2, int y2);
202 virtual gfxbbox_t getImageBBox(GfxState*state);
203 virtual gfxbbox_t getBBox(GfxState*state);
205 char config_extrafontdata;
206 char config_optimizeplaincolorfills;
215 SplashOutputDev*rgbdev;
216 SplashOutputDev*clip0dev;
217 SplashOutputDev*clip1dev;
218 SplashOutputDev*boolpolydev;
219 SplashOutputDev*booltextdev;
221 SplashBitmap*rgbbitmap;
222 SplashBitmap*clip0bitmap;
223 SplashBitmap*clip1bitmap;
224 SplashBitmap*boolpolybitmap;
225 SplashBitmap*stalepolybitmap;
226 SplashBitmap*booltextbitmap;
227 SplashBitmap*staletextbitmap;
229 gfxdevice_t* gfxoutput;
237 int user_movex, user_movey;
238 int user_clipx1, user_clipy1;
239 int user_clipx2, user_clipy2;
241 //ClipState*clipstates;