protect against broken fonts
[swftools.git] / lib / pdf / InfoOutputDev.cc
1 #include "config.h"
2 #include "Object.h"
3 #include "InfoOutputDev.h"
4 #include "SplashOutputDev.h"
5 #ifdef HAVE_POPPLER
6 #include <splash/SplashTypes.h>
7 #include <splash/SplashPath.h>
8 #include <splash/SplashFont.h>
9 #include <splash/SplashFontFile.h>
10 #else
11 #include "SplashTypes.h"
12 #include "SplashPath.h"
13 #include "SplashFont.h"
14 #include "SplashFontFile.h"
15 #endif
16 #include "GfxState.h"
17 #include "../log.h"
18 #include <math.h>
19
20 InfoOutputDev::InfoOutputDev(XRef*xref) 
21 {
22     num_links = 0;
23     num_images = 0;
24     num_fonts = 0;
25     num_polygons= 0;
26     currentfont = 0;
27     currentglyph = 0;
28     id2font = new GHash(1);
29     SplashColor white = {255,255,255};
30     splash = new SplashOutputDev(splashModeRGB8,320,0,white,0,0);
31     splash->startDoc(xref);
32 }
33 InfoOutputDev::~InfoOutputDev() 
34 {
35     GHashIter*i;
36     id2font->startIter(&i);
37     GString*key;
38     FontInfo*fontinfo;
39     while(id2font->getNext(&i, &key, (void**)&fontinfo)) {
40         delete fontinfo;
41     }
42     id2font->killIter(&i);
43
44     delete id2font;id2font=0;
45     delete splash;splash=0;
46 }
47 void FontInfo::grow(int size)
48 {
49     if(size >= this->num_glyphs) {
50         this->glyphs = (GlyphInfo**)realloc(this->glyphs, sizeof(GlyphInfo*)*(size));
51         memset(&this->glyphs[this->num_glyphs], 0, sizeof(SplashPath*)*((size)-this->num_glyphs));
52         this->num_glyphs = size;
53     }
54 }
55 FontInfo::FontInfo()
56 {
57     this->charid2glyph = 0;
58     this->seen = 0;
59     this->num_glyphs = 0;
60     this->glyphs = 0;
61     this->splash_font = 0;
62     this->lastchar = -1;
63     this->lastx = 0;
64     this->lasty = 0;
65 }
66 FontInfo::~FontInfo()
67 {
68     this->font = 0;
69     if(this->charid2glyph) {
70         free(this->charid2glyph);
71         this->charid2glyph = 0;
72     }
73     int t;
74     for(t=0;t<num_glyphs;t++) {
75         if(glyphs[t]) {
76             delete glyphs[t]->path;glyphs[t]->path = 0;
77             delete glyphs[t];
78             glyphs[t]=0;
79         }
80     }
81     free(glyphs);glyphs=0;
82 }
83 GBool InfoOutputDev::upsideDown() {return gTrue;}
84 GBool InfoOutputDev::useDrawChar() {return gTrue;}
85 GBool InfoOutputDev::interpretType3Chars() {return gTrue;}
86 GBool InfoOutputDev::useTilingPatternFill() {return gTrue;}
87
88 void InfoOutputDev::startPage(int pageNum, GfxState *state, double crop_x1, double crop_y1, double crop_x2, double crop_y2)
89 {
90     double x1,y1,x2,y2;
91     state->transform(crop_x1,crop_y1,&x1,&y1);
92     state->transform(crop_x2,crop_y2,&x2,&y2);
93     if(x2<x1) {double x3=x1;x1=x2;x2=x3;}
94     if(y2<y1) {double y3=y1;y1=y2;y2=y3;}
95     this->x1 = (int)x1;
96     this->y1 = (int)y1;
97     this->x2 = (int)x2;
98     this->y2 = (int)y2;
99     msg("<verbose> Generating info structure for page %d", pageNum);
100 }
101 void InfoOutputDev::endPage()
102 {
103 }
104 void InfoOutputDev::drawLink(Link *link, Catalog *catalog) 
105 {
106     num_links++;
107 }
108 double InfoOutputDev::getMaximumFontSize(char*id)
109 {
110     FontInfo*info = (FontInfo*)id2font->lookup(id);
111     if(!info) {
112         msg("<error> Unknown font id: %s", id);
113         return 0.0;
114     }
115     return info->max_size;
116 }
117
118 char*getFontID(GfxFont*font)
119 {
120     Ref*ref = font->getID();
121     GString*gstr = font->getName();
122     char* fname = gstr==0?0:gstr->getCString();
123     char buf[128];
124     if(fname==0) {
125         if(font->getType() == fontType3) {
126             sprintf(buf, "t3font-%d-%d", ref->num, ref->gen);
127         } else {
128             sprintf(buf, "font-%d-%d", ref->num, ref->gen);
129         }
130     } else {
131         sprintf(buf, "%s-%d-%d", fname, ref->num, ref->gen);
132     }
133     return strdup(buf);
134 }
135
136 void InfoOutputDev::updateFont(GfxState *state) 
137 {
138     GfxFont*font = state->getFont();
139     if(!font) {
140         currentfont = 0;
141         return;
142     }
143     if(font->getType() == fontType3) {
144         currentfont = 0;
145         return;
146     }
147     char*id = getFontID(font);
148
149     if(currentfont)
150         currentfont->splash_font = 0;
151
152     currentfont = (FontInfo*)id2font->lookup(id);
153     if(!currentfont) {
154         currentfont = new FontInfo;
155         currentfont->font = font;
156         currentfont->max_size = 0;
157         GString* idStr = new GString(id);
158         id2font->add(idStr, (void*)currentfont);
159         num_fonts++;
160     }
161
162     state->setCTM(1.0,0,0,1.0,0,0);
163     splash->updateCTM(state, 0,0,0,0,0,0);
164     state->setTextMat(1.0,0,0,1.0,0,0);
165     state->setFont(font, 1024.0);
166     splash->doUpdateFont(state);
167     currentfont->splash_font = splash->getCurrentFont();
168     if(currentfont->splash_font) {
169         currentfont->ascender = currentfont->splash_font->ascender;
170         currentfont->descender = currentfont->splash_font->descender;
171     } else {
172         currentfont->ascender = currentfont->descender = 0;
173     }
174     free(id);
175 }
176
177 void InfoOutputDev::fill(GfxState *state)
178 {
179     num_polygons++;
180 }
181
182 void InfoOutputDev::eoFill(GfxState *state)
183 {
184     num_polygons++;
185 }
186
187 FontInfo* InfoOutputDev::getFont(char*id)
188 {
189     return (FontInfo*)id2font->lookup(id);
190 }
191
192 void InfoOutputDev::drawChar(GfxState *state, double x, double y,
193                       double dx, double dy,
194                       double originX, double originY,
195                       CharCode code, int nBytes, Unicode *u, int uLen)
196 {
197     double m11,m21,m12,m22;
198     state->getFontTransMat(&m11, &m12, &m21, &m22);
199     m11 *= state->getHorizScaling();
200     m21 *= state->getHorizScaling();
201     double lenx = sqrt(m11*m11 + m12*m12);
202     double leny = sqrt(m21*m21 + m22*m22);
203     double len = lenx>leny?lenx:leny;
204     if(!currentfont || !currentfont->splash_font) {
205         return; //error
206     }
207     if(currentfont && currentfont->max_size < len) {
208         currentfont->max_size = len;
209     }
210     currentfont->grow(code+1);
211     GlyphInfo*g = currentfont->glyphs[code];
212     if(!g) {
213         g = currentfont->glyphs[code] = new GlyphInfo();
214         g->advance_max = 0;
215         currentfont->splash_font->last_advance = -1;
216         g->path = currentfont->splash_font->getGlyphPath(code);
217         g->advance = currentfont->splash_font->last_advance;
218         g->unicode = 0;
219     }
220     if(uLen && (u[0]>=32 && u[0]<g->unicode || !g->unicode)) {
221         g->unicode = u[0];
222     }
223     if(currentfont->lastchar>=0 && currentfont->lasty == y) {
224         double xshift = x - currentfont->lastx;
225         if(xshift>=0 && xshift > g->advance_max) {
226             g->advance_max = xshift;
227         }
228     }
229
230     currentfont->lastx = x;
231     currentfont->lasty = y;
232     currentfont->lastchar = code;
233 }
234
235 GBool InfoOutputDev::beginType3Char(GfxState *state, double x, double y, double dx, double dy, CharCode code, Unicode *u, int uLen)
236 {
237     GfxFont*font = state->getFont();
238     if(!font)
239         return gTrue;
240     if(font->getType() != fontType3)
241         return gTrue;
242
243     char*id = getFontID(font);
244     currentfont = (FontInfo*)id2font->lookup(id);
245     if(!currentfont) {
246         currentfont = new FontInfo;
247         currentfont->font = font;
248         GString* idStr = new GString(id);
249         id2font->add(idStr, (void*)currentfont);
250         num_fonts++;
251     }
252     currentfont = currentfont;
253     free(id);
254
255     currentfont->grow(code+1);
256     if(!currentfont->glyphs[code]) {
257         currentglyph = currentfont->glyphs[code] = new GlyphInfo();
258         currentglyph->unicode = uLen?u[0]:0;
259         currentglyph->path = new SplashPath();
260         currentglyph->x1=0;
261         currentglyph->y1=0;
262         currentglyph->x2=dx;
263         currentglyph->y2=dy;
264         return gFalse;
265     } else {
266         return gTrue;
267     }
268 }
269
270 void InfoOutputDev::type3D0(GfxState *state, double wx, double wy)
271 {
272     currentglyph->x1=0;
273     currentglyph->y1=0;
274     currentglyph->x2=wx;
275     currentglyph->y2=wy;
276 }
277
278 void InfoOutputDev::type3D1(GfxState *state, double wx, double wy, double llx, double lly, double urx, double ury)
279 {
280     currentglyph->x1=llx;
281     currentglyph->y1=lly;
282     currentglyph->x2=urx;
283     currentglyph->y2=ury;
284 }
285
286 void InfoOutputDev::endType3Char(GfxState *state)
287 {
288     double x1 = currentglyph->x1;
289     double y1 = currentglyph->y1;
290     double x2 = currentglyph->x2;
291     double y2 = currentglyph->y2;
292     currentglyph->path->moveTo(x1,y1);
293     currentglyph->path->lineTo(x2,y1);
294     currentglyph->path->lineTo(x2,y2);
295     currentglyph->path->lineTo(x1,y2);
296     currentglyph->path->close();
297 }
298
299 void InfoOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
300                            int width, int height, GBool invert,
301                            GBool inlineImg) 
302 {
303     num_images++;
304     OutputDev::drawImageMask(state,ref,str,width,height,invert,inlineImg);
305 }
306 void InfoOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
307                        int width, int height, GfxImageColorMap *colorMap,
308                        int *maskColors, GBool inlineImg)
309 {
310     num_images++;
311     OutputDev::drawImage(state,ref,str,width,height,colorMap,maskColors,inlineImg);
312 }
313 void InfoOutputDev::drawMaskedImage(GfxState *state, Object *ref, Stream *str,
314                                 int width, int height,
315                                 GfxImageColorMap *colorMap,
316                                 Stream *maskStr,
317                                 int maskWidth, int maskHeight,
318                                 GBool maskInvert) 
319 {
320     OutputDev::drawMaskedImage(state,ref,str,width,height,colorMap,maskStr,maskWidth,maskHeight,maskInvert);
321 }
322
323 void InfoOutputDev::drawSoftMaskedImage(GfxState *state, Object *ref, Stream *str,
324                                     int width, int height,
325                                     GfxImageColorMap *colorMap,
326                                     Stream *maskStr,
327                                     int maskWidth, int maskHeight,
328                                     GfxImageColorMap *maskColorMap) 
329 {
330     OutputDev::drawSoftMaskedImage(state,ref,str,width,height,colorMap,maskStr,maskWidth,maskHeight,maskColorMap);
331 }