added bitmap fields
[swftools.git] / lib / pdf / BitmapOutputDev.h
1 /* BitmapOutputDev.cc
2    Output device which creates a bitmap.
3
4    This file is part of swftools.
5
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.
10
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.
15
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 */
19
20 #ifndef __BitmapOutputDev_h__
21 #define __BitmapOutputDev_h__
22
23 #include "../gfxdevice.h"
24 #include "../gfxsource.h"
25 #include "../gfxtools.h"
26
27 #include "config.h"
28 #include "GFXOutputDev.h"
29 #include "InfoOutputDev.h"
30 #include "PDFDoc.h"
31 #include "CommonOutputDev.h"
32
33 struct ClipState
34 {
35     ClipState*next;
36     SplashBitmap*clipbitmap;
37     char written;
38     ClipState();
39 };
40
41 #define STATE_PARALLEL 0
42 #define STATE_TEXT_IS_ABOVE 1
43 #define STATE_BITMAP_IS_ABOVE 2
44
45 class BitmapOutputDev: public CommonOutputDev {
46 public:
47     BitmapOutputDev(InfoOutputDev*info, PDFDoc*doc);
48     virtual ~BitmapOutputDev();
49    
50     // CommonOutputDev:
51     virtual void setDevice(gfxdevice_t*dev);
52     virtual void setMove(int x,int y);
53     virtual void setClip(int x1,int y1,int x2,int y2);
54     virtual void setParameter(const char*key, const char*value);
55     virtual void preparePage(int pdfpage, int outputpage);
56
57     // OutputDev:
58     virtual GBool upsideDown();
59     virtual GBool useDrawChar();
60     virtual GBool useTilingPatternFill();
61     virtual GBool useShadedFills();
62     virtual GBool useDrawForm();
63     virtual GBool interpretType3Chars();
64     virtual GBool needNonText();
65     virtual void setDefaultCTM(double *ctm);
66 /*    virtual GBool checkPageSlice(Page *page, double hDPI, double vDPI,
67                                int rotate, GBool useMediaBox, GBool crop,
68                                int sliceX, int sliceY, int sliceW, int sliceH,
69                                GBool printing, Catalog *catalog,
70                                GBool (*abortCheckCbk)(void *data) = NULL,
71                                void *abortCheckCbkData = NULL);*/
72
73     virtual void startPage(int pageNum, GfxState *state, double x1,double y1,double x2,double y2);
74     virtual void endPage();
75
76     virtual void saveState(GfxState *state);
77     virtual void restoreState(GfxState *state);
78
79     virtual void updateAll(GfxState *state);
80     virtual void updateCTM(GfxState *state, double m11, double m12, double m21, double m22, double m31, double m32);
81     virtual void updateLineDash(GfxState *state);
82     virtual void updateFlatness(GfxState *state);
83     virtual void updateLineJoin(GfxState *state);
84     virtual void updateLineCap(GfxState *state);
85     virtual void updateMiterLimit(GfxState *state);
86     virtual void updateLineWidth(GfxState *state);
87     virtual void updateStrokeAdjust(GfxState *state);
88     virtual void updateFillColorSpace(GfxState *state);
89     virtual void updateStrokeColorSpace(GfxState *state);
90     virtual void updateFillColor(GfxState *state);
91     virtual void updateStrokeColor(GfxState *state);
92     virtual void updateBlendMode(GfxState *state);
93     virtual void updateFillOpacity(GfxState *state);
94     virtual void updateStrokeOpacity(GfxState *state);
95     virtual void updateFillOverprint(GfxState *state);
96     virtual void updateStrokeOverprint(GfxState *state);
97     virtual void updateTransfer(GfxState *state);
98     virtual void updateFont(GfxState *state);
99     virtual void updateTextMat(GfxState *state);
100     virtual void updateCharSpace(GfxState *state);
101     virtual void updateRender(GfxState *state);
102     virtual void updateRise(GfxState *state);
103     virtual void updateWordSpace(GfxState *state);
104     virtual void updateHorizScaling(GfxState *state);
105     virtual void updateTextPos(GfxState *state);
106     virtual void updateTextShift(GfxState *state, double shift);
107
108     virtual void stroke(GfxState *state);
109     virtual void fill(GfxState *state);
110     virtual void eoFill(GfxState *state);
111 #if (xpdfMajorVersion < 3) || (xpdfMinorVersion < 2) || (xpdfUpdateVersion < 7)
112     virtual void tilingPatternFill(GfxState *state, Object *str,
113                                int paintType, Dict *resDict,
114                                double *mat, double *bbox,
115                                int x0, int y0, int x1, int y1,
116                                double xStep, double yStep);
117 #else
118     virtual void tilingPatternFill(GfxState *state, Gfx *gfx, Object *str,
119                                int paintType, Dict *resDict,
120                                double *mat, double *bbox,
121                                int x0, int y0, int x1, int y1,
122                                double xStep, double yStep);
123 #endif
124
125     virtual GBool functionShadedFill(GfxState *state,
126                                      GfxFunctionShading *shading);
127     virtual GBool axialShadedFill(GfxState *state, GfxAxialShading *shading);
128     virtual GBool radialShadedFill(GfxState *state, GfxRadialShading *shading);
129
130     virtual void clip(GfxState *state);
131     virtual void eoClip(GfxState *state);
132     virtual void clipToStrokePath(GfxState *state);
133
134     virtual void beginStringOp(GfxState *state);
135     virtual void endStringOp(GfxState *state);
136     virtual void beginString(GfxState *state, GString *s);
137     virtual void endString(GfxState *state);
138     virtual void drawChar(GfxState *state, double x, double y,
139                           double dx, double dy,
140                           double originX, double originY,
141                           CharCode code, int nBytes, Unicode *u, int uLen);
142     virtual void drawString(GfxState *state, GString *s);
143     virtual GBool beginType3Char(GfxState *state, double x, double y,
144                                  double dx, double dy,
145                                  CharCode code, Unicode *u, int uLen);
146     virtual void endType3Char(GfxState *state);
147     virtual void endTextObject(GfxState *state);
148
149     virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
150                                int width, int height, GBool invert,
151                                GBool inlineImg);
152     virtual void drawImage(GfxState *state, Object *ref, Stream *str,
153                            int width, int height, GfxImageColorMap *colorMap,
154                            int *maskColors, GBool inlineImg);
155     virtual void drawMaskedImage(GfxState *state, Object *ref, Stream *str,
156                                  int width, int height,
157                                  GfxImageColorMap *colorMap,
158                                  Stream *maskStr, int maskWidth, int maskHeight,
159                                  GBool maskInvert);
160     virtual void drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str,
161                                      int width, int height,
162                                      GfxImageColorMap *colorMap,
163                                      Stream *maskStr,
164                                      int maskWidth, int maskHeight,
165                                      GfxImageColorMap *maskColorMap);
166
167     virtual void type3D0(GfxState *state, double wx, double wy);
168     virtual void type3D1(GfxState *state, double wx, double wy, double llx, double lly, double urx, double ury);
169
170     virtual void drawForm(Ref id);
171
172     virtual void beginTransparencyGroup(GfxState *state, double *bbox,
173                                         GfxColorSpace *blendingColorSpace,
174                                         GBool isolated, GBool knockout,
175                                         GBool forSoftMask);
176     virtual void endTransparencyGroup(GfxState *state);
177     virtual void paintTransparencyGroup(GfxState *state, double *bbox);
178     virtual void setSoftMask(GfxState *state, double *bbox, GBool alpha, Function *transferFunc, GfxColor *backdropColor);
179     virtual void clearSoftMask(GfxState *state);
180
181     virtual void processLink(Link *link, Catalog *catalog);
182   
183     virtual void setVectorAntialias(GBool vaa);
184     virtual GBool getVectorAntialias();
185
186     
187 private:
188     void clearClips();
189     void clearBoolPolyDev();
190     void clearBoolTextDev();
191     void flushText();
192     void flushBitmap();
193     void checkNewText();
194     void checkNewBitmap();
195     GBool clip0and1differ();
196     GBool intersection();
197
198     char config_extrafontdata;
199
200     int layerstate;
201     GBool emptypage;
202
203     SplashPath*bboxpath;
204
205     PDFDoc*doc;
206     XRef*xref;
207     SplashOutputDev*rgbdev;
208     SplashOutputDev*clip0dev;
209     SplashOutputDev*clip1dev;
210     SplashOutputDev*boolpolydev;
211     SplashOutputDev*booltextdev;
212
213     SplashBitmap*rgbbitmap;
214     SplashBitmap*clip0bitmap;
215     SplashBitmap*clip1bitmap;
216     SplashBitmap*boolpolybitmap;
217     SplashBitmap*booltextbitmap;
218
219     gfxdevice_t* gfxoutput;
220     GFXOutputDev*gfxdev;
221     InfoOutputDev*info;
222     gfxdevice_t*dev;
223
224     int movex, movey;
225     int width, height;
226
227     int user_movex, user_movey;
228     int user_clipx1, user_clipy1;
229     int user_clipx2, user_clipy2;
230
231     //ClipState*clipstates;
232 };
233
234 #endif