added Link support
[swftools.git] / pdf2swf / SWFOutputDev.cc
1 /* pdfswf.cc
2    implements a pdf output device (OutputDev).
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 #include <stdio.h>
21 #include <stdlib.h>
22 #include <stddef.h>
23 #include <string.h>
24 #include <unistd.h>
25 //xpdf header files
26 #include "GString.h"
27 #include "gmem.h"
28 #include "Object.h"
29 #include "Stream.h"
30 #include "Array.h"
31 #include "Dict.h"
32 #include "XRef.h"
33 #include "Catalog.h"
34 #include "Page.h"
35 #include "PDFDoc.h"
36 #include "Params.h"
37 #include "Error.h"
38 #include "config.h"
39 #include "OutputDev.h"
40 #include "GfxState.h"
41 #include "GfxFont.h"
42 #include "FontFile.h"
43 //swftools header files
44 #include "swfoutput.h"
45 extern "C" {
46 #include "../lib/log.h"
47 }
48
49 static PDFDoc*doc = 0;
50 static char* swffilename = 0;
51 int numpages;
52 int currentpage;
53
54 // swf <-> pdf pages
55 int*pages = 0;
56 int pagebuflen = 0;
57 int pagepos = 0;
58
59 static void printInfoString(Dict *infoDict, char *key, char *fmt);
60 static void printInfoDate(Dict *infoDict, char *key, char *fmt);
61
62 static char userPassword[33] = "";
63 static GBool printVersion = gFalse;
64 static GBool printHelp = gFalse;
65
66 double fontsizes[] = 
67 {
68  0.833,0.833,0.889,0.889,0.788,0.722,0.833,0.778,0.600,0.600,0.600,0.600,0.576,0.576,0.576,0.576
69 };
70 char*fontnames[]={
71 "Helvetica",             
72 "Helvetica-Bold",        
73 "Helvetica-BoldOblique", 
74 "Helvetica-Oblique",     
75 "Times-Roman",           
76 "Times-Bold",            
77 "Times-BoldItalic",      
78 "Times-Italic",          
79 "Courier",               
80 "Courier-Bold",          
81 "Courier-BoldOblique",   
82 "Courier-Oblique",       
83 "Symbol",                
84 "Symbol",                
85 "Symbol",                
86 "Symbol",
87 "ZapfDingBats"
88 };
89
90 struct mapping {
91     char*pdffont;
92     char*filename;
93     int id;
94 } pdf2t1map[] ={
95 {"Times-Roman",           "n021003l.pfb"},
96 {"Times-Italic",          "n021023l.pfb"},
97 {"Times-Bold",            "n021004l.pfb"},
98 {"Times-BoldItalic",      "n021024l.pfb"},
99 {"Helvetica",             "n019003l.pfb"},
100 {"Helvetica-Oblique",     "n019023l.pfb"},
101 {"Helvetica-Bold",        "n019004l.pfb"},
102 {"Helvetica-BoldOblique", "n019024l.pfb"},
103 {"Courier",               "n022003l.pfb"},
104 {"Courier-Oblique",       "n022023l.pfb"},
105 {"Courier-Bold",          "n022004l.pfb"},
106 {"Courier-BoldOblique",   "n022024l.pfb"},
107 {"Symbol",                "s050000l.pfb"},
108 {"ZapfDingbats",          "d050000l.pfb"}};
109
110 static void printInfoString(Dict *infoDict, char *key, char *fmt) {
111   Object obj;
112   GString *s1, *s2;
113   int i;
114
115   if (infoDict->lookup(key, &obj)->isString()) {
116     s1 = obj.getString();
117     if ((s1->getChar(0) & 0xff) == 0xfe &&
118         (s1->getChar(1) & 0xff) == 0xff) {
119       s2 = new GString();
120       for (i = 2; i < obj.getString()->getLength(); i += 2) {
121         if (s1->getChar(i) == '\0') {
122           s2->append(s1->getChar(i+1));
123         } else {
124           delete s2;
125           s2 = new GString("<unicode>");
126           break;
127         }
128       }
129       printf(fmt, s2->getCString());
130       delete s2;
131     } else {
132       printf(fmt, s1->getCString());
133     }
134   }
135   obj.free();
136 }
137
138 static void printInfoDate(Dict *infoDict, char *key, char *fmt) {
139   Object obj;
140   char *s;
141
142   if (infoDict->lookup(key, &obj)->isString()) {
143     s = obj.getString()->getCString();
144     if (s[0] == 'D' && s[1] == ':') {
145       s += 2;
146     }
147     printf(fmt, s);
148   }
149   obj.free();
150 }
151
152 class GfxState;
153 class GfxImageColorMap;
154
155 class SWFOutputDev:  public OutputDev {
156   struct swfoutput output;
157   int outputstarted;
158 public:
159
160   // Constructor.
161   SWFOutputDev();
162
163   // Destructor.
164   virtual ~SWFOutputDev() ;
165
166   //----- get info about output device
167
168   // Does this device use upside-down coordinates?
169   // (Upside-down means (0,0) is the top left corner of the page.)
170   virtual GBool upsideDown();
171
172   // Does this device use drawChar() or drawString()?
173   virtual GBool useDrawChar();
174
175   //----- initialization and control
176
177   // Start a page.
178   virtual void startPage(int pageNum, GfxState *state) ;
179
180   //----- link borders
181   virtual void drawLink(Link *link, Catalog *catalog) ;
182
183   //----- save/restore graphics state
184   virtual void saveState(GfxState *state) ;
185   virtual void restoreState(GfxState *state) ;
186
187   //----- update graphics state
188
189   virtual void updateFont(GfxState *state);
190   virtual void updateFillColor(GfxState *state);
191   virtual void updateStrokeColor(GfxState *state);
192   virtual void updateLineWidth(GfxState *state);
193   
194   virtual void updateAll(GfxState *state) 
195   {
196       updateFont(state);
197       updateFillColor(state);
198       updateStrokeColor(state);
199       updateLineWidth(state);
200   };
201
202   //----- path painting
203   virtual void stroke(GfxState *state) ;
204   virtual void fill(GfxState *state) ;
205   virtual void eoFill(GfxState *state) ;
206
207   //----- path clipping
208   virtual void clip(GfxState *state) ;
209   virtual void eoClip(GfxState *state) ;
210
211   //----- text drawing
212   virtual void beginString(GfxState *state, GString *s) ;
213   virtual void endString(GfxState *state) ;
214   virtual void drawChar(GfxState *state, double x, double y,
215                         double dx, double dy, Guchar c) ;
216   virtual void drawChar16(GfxState *state, double x, double y,
217                           double dx, double dy, int c) ;
218
219   //----- image drawing
220   virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
221                              int width, int height, GBool invert,
222                              GBool inlineImg);
223   virtual void drawImage(GfxState *state, Object *ref, Stream *str,
224                          int width, int height, GfxImageColorMap *colorMap,
225                          GBool inlineImg);
226
227   private:
228   void drawGeneralImage(GfxState *state, Object *ref, Stream *str,
229                                    int width, int height, GfxImageColorMap*colorMap, GBool invert,
230                                    GBool inlineImg, int mask);
231   int clipping[32];
232   int clippos;
233
234   int setT1Font(char*name,FontEncoding*enc);
235   int t1id;
236   int jpeginfo; // did we write "Page contains jpegs" yet?
237   int pbminfo; // did we write "Page contains jpegs" yet?
238 };
239
240 char mybuf[1024];
241 char* gfxstate2str(GfxState *state)
242 {
243   char*bufpos = mybuf;
244   GfxRGB rgb;
245   bufpos+=sprintf(bufpos,"CTM[%.3f/%.3f/%.3f/%.3f/%.3f/%.3f] ",
246                                     state->getCTM()[0],
247                                     state->getCTM()[1],
248                                     state->getCTM()[2],
249                                     state->getCTM()[3],
250                                     state->getCTM()[4],
251                                     state->getCTM()[5]);
252   if(state->getX1()!=0.0)
253   bufpos+=sprintf(bufpos,"X1-%.1f ",state->getX1());
254   if(state->getY1()!=0.0)
255   bufpos+=sprintf(bufpos,"Y1-%.1f ",state->getY1());
256   bufpos+=sprintf(bufpos,"X2-%.1f ",state->getX2());
257   bufpos+=sprintf(bufpos,"Y2-%.1f ",state->getY2());
258   bufpos+=sprintf(bufpos,"PW%.1f ",state->getPageWidth());
259   bufpos+=sprintf(bufpos,"PH%.1f ",state->getPageHeight());
260   /*bufpos+=sprintf(bufpos,"FC[%.1f/%.1f] ",
261           state->getFillColor()->c[0], state->getFillColor()->c[1]);
262   bufpos+=sprintf(bufpos,"SC[%.1f/%.1f] ",
263           state->getStrokeColor()->c[0], state->getFillColor()->c[1]);*/
264 /*  bufpos+=sprintf(bufpos,"FC[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f]",
265           state->getFillColor()->c[0], state->getFillColor()->c[1],
266           state->getFillColor()->c[2], state->getFillColor()->c[3],
267           state->getFillColor()->c[4], state->getFillColor()->c[5],
268           state->getFillColor()->c[6], state->getFillColor()->c[7]);
269   bufpos+=sprintf(bufpos,"SC[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f]",
270           state->getStrokeColor()->c[0], state->getFillColor()->c[1],
271           state->getStrokeColor()->c[2], state->getFillColor()->c[3],
272           state->getStrokeColor()->c[4], state->getFillColor()->c[5],
273           state->getStrokeColor()->c[6], state->getFillColor()->c[7]);*/
274   state->getFillRGB(&rgb);
275   if(rgb.r || rgb.g || rgb.b)
276   bufpos+=sprintf(bufpos,"FR[%.1f/%.1f/%.1f] ", rgb.r,rgb.g,rgb.b);
277   state->getStrokeRGB(&rgb);
278   if(rgb.r || rgb.g || rgb.b)
279   bufpos+=sprintf(bufpos,"SR[%.1f/%.1f/%.1f] ", rgb.r,rgb.g,rgb.b);
280   if(state->getFillColorSpace()->getNComps()>1)
281   bufpos+=sprintf(bufpos,"CS[[%d]] ",state->getFillColorSpace()->getNComps());
282   if(state->getStrokeColorSpace()->getNComps()>1)
283   bufpos+=sprintf(bufpos,"SS[[%d]] ",state->getStrokeColorSpace()->getNComps());
284   if(state->getFillPattern())
285   bufpos+=sprintf(bufpos,"FP%08x ", state->getFillPattern());
286   if(state->getStrokePattern())
287   bufpos+=sprintf(bufpos,"SP%08x ", state->getStrokePattern());
288  
289   if(state->getFillOpacity()!=1.0)
290   bufpos+=sprintf(bufpos,"FO%.1f ", state->getFillOpacity());
291   if(state->getStrokeOpacity()!=1.0)
292   bufpos+=sprintf(bufpos,"SO%.1f ", state->getStrokeOpacity());
293
294   bufpos+=sprintf(bufpos,"LW%.1f ", state->getLineWidth());
295  
296   double * dash;
297   int length;
298   double start;
299   state->getLineDash(&dash, &length, &start);
300   int t;
301   if(length)
302   {
303       bufpos+=sprintf(bufpos,"DASH%.1f[",start);
304       for(t=0;t<length;t++) {
305           bufpos+=sprintf(bufpos,"D%.1f",dash[t]);
306       }
307       bufpos+=sprintf(bufpos,"]");
308   }
309
310   if(state->getFlatness()!=1)
311   bufpos+=sprintf(bufpos,"F%d ", state->getFlatness());
312   if(state->getLineJoin()!=0)
313   bufpos+=sprintf(bufpos,"J%d ", state->getLineJoin());
314   if(state->getLineJoin()!=0)
315   bufpos+=sprintf(bufpos,"C%d ", state->getLineCap());
316   if(state->getLineJoin()!=0)
317   bufpos+=sprintf(bufpos,"ML%d ", state->getMiterLimit());
318
319   if(state->getFont() && state->getFont()->getName() && state->getFont()->getName()->getCString())
320   bufpos+=sprintf(bufpos,"F\"%s\" ",((state->getFont())->getName())->getCString());
321   bufpos+=sprintf(bufpos,"FS%.1f ", state->getFontSize());
322   bufpos+=sprintf(bufpos,"MAT[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f] ", state->getTextMat()[0],state->getTextMat()[1],state->getTextMat()[2],
323                                    state->getTextMat()[3],state->getTextMat()[4],state->getTextMat()[5]);
324   if(state->getCharSpace())
325   bufpos+=sprintf(bufpos,"CS%.5f ", state->getCharSpace());
326   if(state->getWordSpace())
327   bufpos+=sprintf(bufpos,"WS%.5f ", state->getWordSpace());
328   if(state->getHorizScaling()!=1.0)
329   bufpos+=sprintf(bufpos,"SC%.1f ", state->getHorizScaling());
330   if(state->getLeading())
331   bufpos+=sprintf(bufpos,"L%.1f ", state->getLeading());
332   if(state->getRise())
333   bufpos+=sprintf(bufpos,"R%.1f ", state->getRise());
334   if(state->getRender())
335   bufpos+=sprintf(bufpos,"R%d ", state->getRender());
336   bufpos+=sprintf(bufpos,"P%08x ", state->getPath());
337   bufpos+=sprintf(bufpos,"CX%.1f ", state->getCurX());
338   bufpos+=sprintf(bufpos,"CY%.1f ", state->getCurY());
339   if(state->getLineX())
340   bufpos+=sprintf(bufpos,"LX%.1f ", state->getLineX());
341   if(state->getLineY())
342   bufpos+=sprintf(bufpos,"LY%.1f ", state->getLineY());
343   bufpos+=sprintf(bufpos," ");
344   return mybuf;
345 }
346
347 void dumpFontInfo(char*loglevel, GfxFont*font);
348 int lastdumps[1024];
349 int lastdumppos = 0;
350 /* nr = 0  unknown
351    nr = 1  substituting
352    nr = 2  type 3
353  */
354 void showFontError(GfxFont*font, int nr) 
355 {  
356     Ref r=font->getID();
357     int t;
358     for(t=0;t<lastdumppos;t++)
359         if(lastdumps[t] == r.num)
360             break;
361     if(t < lastdumppos)
362       return;
363     if(lastdumppos<sizeof(lastdumps)/sizeof(int))
364     lastdumps[lastdumppos++] = r.num;
365     if(nr == 0)
366       logf("<warning> The following font caused problems:");
367     else if(nr == 1)
368       logf("<warning> The following font caused problems (substituting):");
369     else if(nr == 2)
370       logf("<warning> This document contains Type 3 Fonts: (some text may be incorrectly displayed)");
371
372     dumpFontInfo("<warning>", font);
373 }
374
375 void dumpFontInfo(char*loglevel, GfxFont*font)
376 {
377   GString *gstr;
378   char*name;
379   gstr = font->getName();
380   Ref r=font->getID();
381   logf("%s=========== %s (ID:%d,%d) ==========\n", loglevel, gstr?gstr->getCString():"(unknown font)", r.num,r.gen);
382
383   gstr  = font->getTag();
384   if(gstr) 
385    logf("%sTag: %s\n", loglevel, gstr->getCString());
386   if(font->is16Bit()) logf("%sis 16 bit\n", loglevel);
387
388   GfxFontType type=font->getType();
389   switch(type) {
390     case fontUnknownType:
391      logf("%sType: unknown\n",loglevel);
392     break;
393     case fontType0:
394      logf("%sType: 0\n",loglevel);
395     break;
396     case fontType1:
397      logf("%sType: 1\n",loglevel);
398     break;
399     case fontType1C:
400      logf("%sType: 1C\n",loglevel);
401     break;
402     case fontType3:
403      logf("%sType: 3\n",loglevel);
404     break;
405     case fontTrueType:
406      logf("%sType: TrueType\n",loglevel);
407     break;
408   }
409   
410   Ref embRef;
411   GBool embedded = font->getEmbeddedFontID(&embRef);
412   name = font->getEmbeddedFontName();
413   if(embedded)
414    logf("%sEmbedded name: %s id: %d\n",loglevel, name, embRef.num);
415
416   gstr = font->getExtFontFile();
417   if(gstr)
418    logf("%sExternal Font file: %s\n", loglevel, gstr->getCString());
419
420   // Get font descriptor flags.
421   if(font->isFixedWidth()) logf("%sis fixed width\n", loglevel);
422   if(font->isSerif()) logf("%sis serif\n", loglevel);
423   if(font->isSymbolic()) logf("%sis symbolic\n", loglevel);
424   if(font->isItalic()) logf("%sis italic\n", loglevel);
425   if(font->isBold()) logf("%sis bold\n", loglevel);
426 }
427
428 //void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, GBool invert, GBool inlineImg) {printf("void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, GBool invert, GBool inlineImg) \n");}
429 //void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, GBool inlineImg) {printf("void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, GBool inlineImg) \n");}
430
431 SWFOutputDev::SWFOutputDev() 
432 {
433     jpeginfo = 0;
434     pbminfo = 0;
435     clippos = 0;
436     clipping[clippos] = 0;
437     outputstarted = 0;
438 //    printf("SWFOutputDev::SWFOutputDev() \n");
439 };
440
441 T1_OUTLINE* gfxPath_to_T1_OUTLINE(GfxState*state, GfxPath*path)
442 {
443     int num = path->getNumSubpaths();
444     int s,t;
445     bezierpathsegment*start,*last;
446     bezierpathsegment*outline = start = new bezierpathsegment();
447     int cpos = 0;
448     double lastx=0,lasty=0;
449     for(t = 0; t < num; t++) {
450         GfxSubpath *subpath = path->getSubpath(t);
451         int subnum = subpath->getNumPoints();
452
453         for(s=0;s<subnum;s++) {
454            double nx,ny;
455            state->transform(subpath->getX(s),subpath->getY(s),&nx,&ny);
456            int x = (int)((nx-lastx)*0xffff);
457            int y = (int)((ny-lasty)*0xffff);
458            if(s==0) 
459            {
460                 last = outline;
461                 outline->type = T1_PATHTYPE_MOVE;
462                 outline->dest.x = x;
463                 outline->dest.y = y;
464                 outline->link = (T1_OUTLINE*)new bezierpathsegment();
465                 outline = (bezierpathsegment*)outline->link;
466                 cpos = 0;
467                 lastx = nx;
468                 lasty = ny;
469            }
470            else if(subpath->getCurve(s) && !cpos)
471            {
472                 outline->B.x = x;
473                 outline->B.y = y;
474                 cpos = 1;
475            } 
476            else if(subpath->getCurve(s) && cpos)
477            {
478                 outline->C.x = x;
479                 outline->C.y = y;
480                 cpos = 2;
481            }
482            else
483            {
484                 last = outline;
485                 outline->dest.x = x;
486                 outline->dest.y = y;
487                 outline->type = cpos?T1_PATHTYPE_BEZIER:T1_PATHTYPE_LINE;
488                 outline->link = 0;
489                 outline->link = (T1_OUTLINE*)new bezierpathsegment();
490                 outline = (bezierpathsegment*)outline->link;
491                 cpos = 0;
492                 lastx = nx;
493                 lasty = ny;
494            }
495         }
496     }
497     last->link = 0;
498     return (T1_OUTLINE*)start;
499 }
500 /*----------------------------------------------------------------------------
501  * Primitive Graphic routines
502  *----------------------------------------------------------------------------*/
503
504 void SWFOutputDev::stroke(GfxState *state) 
505 {
506     logf("<debug> stroke\n");
507     GfxPath * path = state->getPath();
508     struct swfmatrix m;
509     m.m11 = 1; m.m21 = 0; m.m22 = 1;
510     m.m12 = 0; m.m13 = 0; m.m23 = 0;
511     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
512     swfoutput_setdrawmode(&output, DRAWMODE_STROKE);
513     swfoutput_drawpath(&output, outline, &m);
514 }
515 void SWFOutputDev::fill(GfxState *state) 
516 {
517     logf("<debug> fill\n");
518     GfxPath * path = state->getPath();
519     struct swfmatrix m;
520     m.m11 = 1; m.m21 = 0; m.m22 = 1;
521     m.m12 = 0; m.m13 = 0; m.m23 = 0;
522     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
523     swfoutput_setdrawmode(&output, DRAWMODE_FILL);
524     swfoutput_drawpath(&output, outline, &m);
525 }
526 void SWFOutputDev::eoFill(GfxState *state) 
527 {
528     logf("<debug> eofill\n");
529     GfxPath * path = state->getPath();
530     struct swfmatrix m;
531     m.m11 = 1; m.m21 = 0; m.m22 = 1;
532     m.m12 = 0; m.m13 = 0; m.m23 = 0;
533     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
534     swfoutput_setdrawmode(&output, DRAWMODE_EOFILL);
535     swfoutput_drawpath(&output, outline, &m);
536 }
537 void SWFOutputDev::clip(GfxState *state) 
538 {
539     logf("<debug> clip\n");
540     GfxPath * path = state->getPath();
541     struct swfmatrix m;
542     m.m11 = 1; m.m22 = 1;
543     m.m12 = 0; m.m21 = 0; 
544     m.m13 = 0; m.m23 = 0;
545     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
546     swfoutput_startclip(&output, outline, &m);
547     clipping[clippos] = 1;
548 }
549 void SWFOutputDev::eoClip(GfxState *state) 
550 {
551     logf("<debug> eoclip\n");
552     GfxPath * path = state->getPath();
553     struct swfmatrix m;
554     m.m11 = 1; m.m21 = 0; m.m22 = 1;
555     m.m12 = 0; m.m13 = 0; m.m23 = 0;
556     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
557     swfoutput_startclip(&output, outline, &m);
558     clipping[clippos] = 1;
559 }
560
561 SWFOutputDev::~SWFOutputDev() 
562 {
563     swfoutput_destroy(&output);
564     outputstarted = 0;
565 };
566 GBool SWFOutputDev::upsideDown() 
567 {
568     logf("<debug> upsidedown?");
569     return gTrue;
570 };
571 GBool SWFOutputDev::useDrawChar() 
572 {
573     logf("<debug> usedrawchar?");
574     return gTrue;
575 }
576
577 void SWFOutputDev::beginString(GfxState *state, GString *s) 
578
579     double m11,m21,m12,m22;
580     logf("<debug> beginstring \"%s\"\n", s->getCString());
581     state->getFontTransMat(&m11, &m12, &m21, &m22);
582     m11 *= state->getHorizScaling();
583     m21 *= state->getHorizScaling();
584     swfoutput_setfontmatrix(&output, m11, -m12, m21, -m22);
585 }
586
587 int charcounter = 0;
588 void SWFOutputDev::drawChar(GfxState *state, double x, double y, double dx, double dy, Guchar c) 
589 {
590     logf("<debug> drawChar(%f,%f,%f,%f,'%c')\n",x,y,dx,dy,c);
591     // check for invisible text -- this is used by Acrobat Capture
592     if ((state->getRender() & 3) != 3)
593     {
594        FontEncoding*enc=state->getFont()->getEncoding();
595
596        double x1,y1;
597        x1 = x;
598        y1 = y;
599        state->transform(x, y, &x1, &y1);
600
601        if(enc->getCharName(c))
602           swfoutput_drawchar(&output, x1, y1, enc->getCharName(c));
603        else
604           logf("<warning> couldn't get name for character %02x from Encoding", c);
605     }
606 }
607
608 void SWFOutputDev::drawChar16(GfxState *state, double x, double y, double dx, double dy, int c) 
609 {
610     printf("<error> drawChar16(%f,%f,%f,%f,%08x)\n",x,y,dx,dy,c);
611     exit(1);
612 }
613
614 void SWFOutputDev::endString(GfxState *state) 
615
616     logf("<debug> endstring\n");
617 }    
618
619 void SWFOutputDev::startPage(int pageNum, GfxState *state) 
620 {
621   double x1,y1,x2,y2;
622   logf("<debug> startPage %d\n", pageNum);
623   logf("<notice> processing page %d", pageNum);
624
625   state->transform(state->getX1(),state->getY1(),&x1,&y1);
626   state->transform(state->getX2(),state->getY2(),&x2,&y2);
627   if(!outputstarted) {
628     swfoutput_init(&output, swffilename, abs((int)(x2-x1)),abs((int)(y2-y1)));
629     outputstarted = 1;
630   }
631   else
632     swfoutput_newpage(&output);
633 }
634
635 void SWFOutputDev::drawLink(Link *link, Catalog *catalog) 
636 {
637   double x1, y1, x2, y2, w;
638   GfxRGB rgb;
639   swfcoord points[5];
640   int x, y;
641
642   link->getBorder(&x1, &y1, &x2, &y2, &w);
643 //  if (w > 0) 
644   {
645     rgb.r = 0;
646     rgb.g = 0;
647     rgb.b = 1;
648     cvtu2d(this, x1, y1, &x, &y);
649     points[0].x = points[4].x = (int)x;
650     points[0].y = points[4].y = (int)y;
651     cvtu2d(this, x2, y1, &x, &y);
652     points[1].x = (int)x;
653     points[1].y = (int)y;
654     cvtu2d(this, x2, y2, &x, &y);
655     points[2].x = (int)x;
656     points[2].y = (int)y;
657     cvtu2d(this, x1, y2, &x, &y);
658     points[3].x = (int)x;
659     points[3].y = (int)y;
660
661     LinkAction*action=link->getAction();
662     char buf[128];
663     char*s = "-?-";
664     char*type = "-?-";
665     char*url = 0;
666     int page = -1;
667     switch(action->getKind())
668     {
669         case actionGoTo: {
670             type = "GoTo";
671             LinkGoTo *ha=(LinkGoTo *)link->getAction();
672             LinkDest *dest=NULL;
673             if (ha->getDest()==NULL) 
674                 dest=catalog->findDest(ha->getNamedDest());
675             else dest=ha->getDest();
676             if (dest){ 
677               if (dest->isPageRef()){
678                 Ref pageref=dest->getPageRef();
679                 page=catalog->findPage(pageref.num,pageref.gen);
680               }
681               else  page=dest->getPageNum();
682               sprintf(buf, "%d", page);
683               s = buf;
684             }
685         }
686         break;
687         case actionGoToR: {
688             type = "GoToR";
689             LinkGoToR*l = (LinkGoToR*)action;
690             GString*g = l->getNamedDest();
691             if(g)
692              s = g->getCString();
693         }
694         break;
695         case actionNamed: {
696             type = "Named";
697             LinkNamed*l = (LinkNamed*)action;
698             GString*name = l->getName();
699             if(name) {
700               s = name->lowerCase()->getCString();
701               if(strstr(s, "next") || strstr(s, "forward"))
702               {
703                   page = currentpage + 1;
704               }
705               else if(strstr(s, "prev") || strstr(s, "back"))
706               {
707                   page = currentpage - 1;
708               }
709               else if(strstr(s, "last") || strstr(s, "end"))
710               {
711                   page = pages[pagepos-1]; //:)
712               }
713               else if(strstr(s, "first") || strstr(s, "top"))
714               {
715                   page = 1;
716               }
717             }
718         }
719         break;
720         case actionLaunch: {
721             type = "Launch";
722             LinkLaunch*l = (LinkLaunch*)action;
723             GString * str = new GString(l->getFileName());
724             str->append(l->getParams());
725             s = str->getCString();
726         }
727         break;
728         case actionURI: {
729             type = "URI";
730             LinkURI*l = (LinkURI*)action;
731             GString*g = l->getURI();
732             if(g) {
733              url = g->getCString();
734              s = url;
735             }
736         }
737         break;
738         case actionUnknown: {
739             type = "Unknown";
740             LinkUnknown*l = (LinkUnknown*)action;
741             s = "";
742         }
743         break;
744         default: {
745             logf("<error> Unknown link type!\n");
746             break;
747         }
748     }
749     if(page>0)
750     {
751         int t;
752         for(t=0;t<pagepos;t++)
753             if(pages[t]==page)
754                 break;
755         if(t!=pagepos)
756         swfoutput_linktopage(&output, t, points);
757     }
758     else if(url)
759     {
760         swfoutput_linktourl(&output, url, points);
761     }
762     logf("<notice> \"%s\" link to \"%s\" (%d)\n", type, s, page);
763   }
764 }
765
766 void SWFOutputDev::saveState(GfxState *state) {
767   logf("<debug> saveState\n");
768   updateAll(state);
769   clippos ++;
770   clipping[clippos] = 0;
771 };
772
773 void SWFOutputDev::restoreState(GfxState *state) {
774   logf("<debug> restoreState\n");
775   updateAll(state);
776   if(clipping[clippos])
777       swfoutput_endclip(&output);
778   clippos--;
779 }
780
781 char type3Warning=0;
782
783 int SWFOutputDev::setT1Font(char*name, FontEncoding*encoding) 
784 {       
785     int i;
786     
787     int id=-1;
788     int mapid=-1;
789     char*filename=0;
790     for(i=0;i<sizeof(pdf2t1map)/sizeof(mapping);i++) 
791     {
792         if(!strcmp(name, pdf2t1map[i].pdffont))
793         {
794             filename = pdf2t1map[i].filename;
795             mapid = i;
796         }
797     }
798     if(filename)
799     for(i=0; i<T1_Get_no_fonts(); i++)
800     {
801         char*fontfilename = T1_GetFontFileName (i);
802         if(strstr(fontfilename, filename))
803         {
804                 id = i;
805                 pdf2t1map[i].id = mapid;
806         }
807     }
808     if(id<0)
809      return 0;
810
811     this->t1id = id;
812 }
813
814 void SWFOutputDev::updateLineWidth(GfxState *state)
815 {
816     double width = state->getTransformedLineWidth();
817     swfoutput_setlinewidth(&output, width);
818 }
819
820 void SWFOutputDev::updateFillColor(GfxState *state) 
821 {
822     GfxRGB rgb;
823     double opaq = state->getFillOpacity();
824     state->getFillRGB(&rgb);
825
826     swfoutput_setfillcolor(&output, (char)(rgb.r*255), (char)(rgb.g*255), 
827                                     (char)(rgb.b*255), (char)(opaq*255));
828 }
829
830 void SWFOutputDev::updateStrokeColor(GfxState *state) 
831 {
832     GfxRGB rgb;
833     double opaq = state->getStrokeOpacity();
834     state->getStrokeRGB(&rgb);
835
836     swfoutput_setstrokecolor(&output, (char)(rgb.r*255), (char)(rgb.g*255), 
837                                       (char)(rgb.b*255), (char)(opaq*255));
838 }
839
840 char*writeEmbeddedFontToFile(GfxFont*font)
841 {
842       char*tmpFileName = NULL;
843       char*fileName = NULL;
844       FILE *f;
845       int c;
846       char *fontBuf;
847       int fontLen;
848       Type1CFontConverter *cvt;
849       Ref embRef;
850       Object refObj, strObj;
851       tmpFileName = "/tmp/tmpfont";
852       font->getEmbeddedFontID(&embRef);
853
854       f = fopen(tmpFileName, "wb");
855       if (!f) {
856         logf("<error> Couldn't create temporary Type 1 font file");
857         return 0;
858       }
859       if (font->getType() == fontType1C) {
860         if (!(fontBuf = font->readEmbFontFile(&fontLen))) {
861           fclose(f);
862           logf("<error> Couldn't read embedded font file");
863           return 0;
864         }
865         cvt = new Type1CFontConverter(fontBuf, fontLen, f);
866         cvt->convert();
867         delete cvt;
868         gfree(fontBuf);
869       } else {
870         font->getEmbeddedFontID(&embRef);
871         refObj.initRef(embRef.num, embRef.gen);
872         refObj.fetch(&strObj);
873         refObj.free();
874         strObj.streamReset();
875         while ((c = strObj.streamGetChar()) != EOF) {
876           fputc(c, f);
877         }
878         strObj.streamClose();
879         strObj.free();
880       }
881       fclose(f);
882       fileName = tmpFileName;
883       if(!fileName) {
884           logf("<error> Embedded font writer didn't create a file");
885           return 0;
886       }
887       return fileName;
888 }
889
890 char* gfxFontName(GfxFont* gfxFont)
891 {
892       GString *gstr;
893       gstr = gfxFont->getName();
894       if(gstr) {
895           return gstr->getCString();
896       }
897       else {
898           char buf[32];
899           Ref r=gfxFont->getID();
900           sprintf(buf, "UFONT%d", r.num);
901           return strdup(buf);
902       }
903 }
904
905 void SWFOutputDev::updateFont(GfxState *state) 
906 {
907   double m11, m12, m21, m22;
908   char * fontname = 0;
909   GfxFont*gfxFont = state->getFont();
910   char * fileName = 0;
911
912   if (!gfxFont) {
913     return;
914   }  
915
916   if(swfoutput_queryfont(&output, gfxFontName(gfxFont)))
917   {
918       swfoutput_setfont(&output, gfxFontName(gfxFont), -1, 0);
919       return;
920   }
921
922   // look for Type 3 font
923   if (!type3Warning && gfxFont->getType() == fontType3) {
924     type3Warning = gTrue;
925     showFontError(gfxFont, 2);
926   }
927   //dumpFontInfo ("<notice>", gfxFont);
928
929   Ref embRef;
930   GBool embedded = gfxFont->getEmbeddedFontID(&embRef);
931   if(embedded) {
932     if (!gfxFont->is16Bit() &&
933         (gfxFont->getType() == fontType1 ||
934          gfxFont->getType() == fontType1C)) {
935         
936         fileName = writeEmbeddedFontToFile(gfxFont);
937         if(!fileName)
938           return ;
939     }
940     else {
941         showFontError(gfxFont,0);
942         return ;
943     }
944     
945     t1id = T1_AddFont(fileName);
946   } else {
947     fontname = NULL;
948     if(gfxFont->getName()) {
949       fontname = gfxFont->getName()->getCString();
950       //logf("<notice> Processing font %s", fontname);
951     }
952     if(!fontname || !setT1Font(state->getFont()->getName()->getCString(), gfxFont->getEncoding()))
953     { //substitute font
954       int index;
955       int code;
956       double w,w1,w2;
957       double*fm;
958       double v;
959       showFontError(gfxFont, 1);
960       if (!gfxFont->is16Bit()) {
961         if (gfxFont->isFixedWidth()) {
962           index = 8;
963         } else if (gfxFont->isSerif()) {
964           index = 4;
965         } else {
966           index = 0;
967         }
968         if (gfxFont->isBold())
969           index += 2;
970         if (gfxFont->isItalic())
971           index += 1;
972         fontname = fontnames[index];
973         // get width of 'm' in real font and substituted font
974         if ((code = gfxFont->getCharCode("m")) >= 0)
975           w1 = gfxFont->getWidth(code);
976         else
977           w1 = 0;
978         w2 = fontsizes[index];
979         if (gfxFont->getType() == fontType3) {
980           // This is a hack which makes it possible to substitute for some
981           // Type 3 fonts.  The problem is that it's impossible to know what
982           // the base coordinate system used in the font is without actually
983           // rendering the font.  This code tries to guess by looking at the
984           // width of the character 'm' (which breaks if the font is a
985           // subset that doesn't contain 'm').
986           if (w1 > 0 && (w1 > 1.1 * w2 || w1 < 0.9 * w2)) {
987             w1 /= w2;
988             m11 *= w1;
989             m12 *= w1;
990             m21 *= w1;
991             m22 *= w1;
992           }
993           fm = gfxFont->getFontMatrix();
994           v = (fm[0] == 0) ? 1 : (fm[3] / fm[0]);
995           m21 *= v;
996           m22 *= v;
997         } else if (!gfxFont->isSymbolic()) {
998           // if real font is substantially narrower than substituted
999           // font, reduce the font size accordingly
1000           if (w1 > 0.01 && w1 < 0.9 * w2) {
1001             w1 /= w2;
1002             if (w1 < 0.8) {
1003               w1 = 0.8;
1004             }
1005             m11 *= w1;
1006             m12 *= w1;
1007             m21 *= w1;
1008             m22 *= w1;
1009           }
1010         }
1011       }
1012       if(fontname)
1013         setT1Font(fontname, gfxFont->getEncoding());
1014     }
1015   }
1016
1017   swfoutput_setfont(&output,gfxFontName(gfxFont),t1id, fileName);
1018   if(fileName)
1019       unlink(fileName);
1020 }
1021
1022 int pic_xids[1024];
1023 int pic_yids[1024];
1024 int pic_ids[1024];
1025 int picpos = 0;
1026 int pic_id = 0;
1027
1028 void SWFOutputDev::drawGeneralImage(GfxState *state, Object *ref, Stream *str,
1029                                    int width, int height, GfxImageColorMap*colorMap, GBool invert,
1030                                    GBool inlineImg, int mask)
1031 {
1032   FILE *fi;
1033   int c;
1034   char fileName[128];
1035   double x1,y1,x2,y2,x3,y3,x4,y4;
1036   ImageStream *imgStr;
1037   Guchar pixBuf[4];
1038   GfxRGB rgb;
1039   if(!width || !height)
1040       return;
1041   
1042   state->transform(0, 1, &x1, &y1);
1043   state->transform(0, 0, &x2, &y2);
1044   state->transform(1, 0, &x3, &y3);
1045   state->transform(1, 1, &x4, &y4);
1046
1047   if (str->getKind() == strDCT &&
1048       (colorMap->getNumPixelComps() == 3 || !mask) )
1049   {
1050     sprintf(fileName, "/tmp/tmp%08x.jpg",lrand48());
1051     logf("<verbose> Found jpeg. Temporary storage is %s", fileName);
1052     if(!jpeginfo)
1053     {
1054         logf("<notice> file contains jpeg pictures");
1055         jpeginfo = 1;
1056     }
1057     if (!(fi = fopen(fileName, "wb"))) {
1058       logf("<error> Couldn't open temporary image file '%s'", fileName);
1059       return;
1060     }
1061     str = ((DCTStream *)str)->getRawStream();
1062     str->reset();
1063     int xid = 0;
1064     int yid = 0;
1065     int count = 0;
1066     while ((c = str->getChar()) != EOF)
1067     {
1068       fputc(c, fi);
1069       xid += count*c;
1070       yid += (~count)*c;
1071       count++;
1072     }
1073     fclose(fi);
1074     
1075     int t,found = -1;
1076     for(t=0;t<picpos;t++)
1077     {
1078         if(pic_xids[t] == xid &&
1079            pic_yids[t] == yid) {
1080             found = t;break;
1081         }
1082     }
1083     if(found<0) {
1084         pic_ids[picpos] = swfoutput_drawimagejpeg(&output, fileName, width, height, 
1085                 x1,y1,x2,y2,x3,y3,x4,y4);
1086         pic_xids[picpos] = xid;
1087         pic_yids[picpos] = yid;
1088         if(picpos<1024)
1089             picpos++;
1090     } else {
1091         swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1092                 x1,y1,x2,y2,x3,y3,x4,y4);
1093     }
1094     unlink(fileName);
1095   } else {
1096
1097     if(!pbminfo) {
1098         logf("<notice> file contains pbm pictures %s",mask?"(masked)":"");
1099         if(mask)
1100         logf("<verbose> ignoring %d by %d masked picture\n", width, height);
1101         pbminfo = 1;
1102     }
1103
1104     if(mask) {
1105         str->reset();
1106         int yes=0;
1107         while ((c = str->getChar()) != EOF)
1108         {
1109             if((c<32 || c>'z') && yes && (c!=13) && (c!=10)) {
1110                 printf("no ascii: %02x\n", c);
1111                 yes = 1;
1112            }
1113         }
1114     } else {
1115         int x,y;
1116         int width2 = (width+3)&(~3);
1117         imgStr = new ImageStream(str, width, colorMap->getNumPixelComps(),
1118                                  colorMap->getBits());
1119         imgStr->reset();
1120
1121         if(colorMap->getNumPixelComps()!=1)
1122         {
1123             RGBA*pic=new RGBA[width*height];
1124             int xid = 0;
1125             int yid = 0;
1126             for (y = 0; y < height; ++y) {
1127               for (x = 0; x < width; ++x) {
1128                 int r,g,b,a;
1129                 imgStr->getPixel(pixBuf);
1130                 colorMap->getRGB(pixBuf, &rgb);
1131                 pic[width*y+x].r = r = (U8)(rgb.r * 255 + 0.5);
1132                 pic[width*y+x].g = g = (U8)(rgb.g * 255 + 0.5);
1133                 pic[width*y+x].b = b = (U8)(rgb.b * 255 + 0.5);
1134                 pic[width*y+x].a = a = 255;//(U8)(rgb.a * 255 + 0.5);
1135                 xid += x*r+x*b*3+x*g*7+x*a*11;
1136                 yid += y*r*3+y*b*17+y*g*19+y*a*11;
1137               }
1138             }
1139             int t,found = -1;
1140             for(t=0;t<picpos;t++)
1141             {
1142                 if(pic_xids[t] == xid &&
1143                    pic_yids[t] == yid) {
1144                     found = t;break;
1145                 }
1146             }
1147             if(found<0) {
1148                 pic_ids[picpos] = swfoutput_drawimagelossless(&output, pic, width, height, 
1149                         x1,y1,x2,y2,x3,y3,x4,y4);
1150                 pic_xids[picpos] = xid;
1151                 pic_yids[picpos] = yid;
1152                 if(picpos<1024)
1153                     picpos++;
1154             } else {
1155                 swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1156                         x1,y1,x2,y2,x3,y3,x4,y4);
1157             }
1158             delete pic;
1159         }
1160         else
1161         {
1162             U8*pic = new U8[width2*height];
1163             RGBA pal[256];
1164             int t;
1165             int xid=0,yid=0;
1166             for(t=0;t<256;t++)
1167             {
1168                 int r,g,b,a;
1169                 pixBuf[0] = t;
1170                 colorMap->getRGB(pixBuf, &rgb);
1171                 pal[t].r = r = (U8)(rgb.r * 255 + 0.5);
1172                 pal[t].g = g = (U8)(rgb.g * 255 + 0.5);
1173                 pal[t].b = b = (U8)(rgb.b * 255 + 0.5);
1174                 pal[t].a = a = 255;//(U8)(rgb.b * 255 + 0.5);
1175                 xid += t*r+t*b*3+t*g*7+t*a*11;
1176                 xid += (~t)*r+t*b*3+t*g*7+t*a*11;
1177             }
1178             for (y = 0; y < height; ++y) {
1179               for (x = 0; x < width; ++x) {
1180                 imgStr->getPixel(pixBuf);
1181                 pic[width2*y+x] = pixBuf[0];
1182                 xid += x*pixBuf[0]*7;
1183                 yid += y*pixBuf[0]*3;
1184               }
1185             }
1186             int found = -1;
1187             for(t=0;t<picpos;t++)
1188             {
1189                 if(pic_xids[t] == xid &&
1190                    pic_yids[t] == yid) {
1191                     found = t;break;
1192                 }
1193             }
1194             if(found<0) {
1195                 pic_ids[picpos] = swfoutput_drawimagelossless256(&output, pic, pal, width, height, 
1196                         x1,y1,x2,y2,x3,y3,x4,y4);
1197                 pic_xids[picpos] = xid;
1198                 pic_yids[picpos] = yid;
1199                 if(picpos<1024)
1200                     picpos++;
1201             } else {
1202                 swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1203                         x1,y1,x2,y2,x3,y3,x4,y4);
1204             }
1205             delete pic;
1206         }
1207         delete imgStr;
1208     }
1209
1210   }
1211 }
1212
1213 void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
1214                                    int width, int height, GBool invert,
1215                                    GBool inlineImg) 
1216 {
1217   drawGeneralImage(state,ref,str,width,height,0,invert,inlineImg,1);
1218 }
1219
1220 void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
1221                                int width, int height,
1222                                GfxImageColorMap *colorMap, GBool inlineImg) 
1223 {
1224   drawGeneralImage(state,ref,str,width,height,colorMap,0,inlineImg,0);
1225 }
1226
1227 SWFOutputDev*output = 0; 
1228
1229 void pdfswf_init(char*filename, char*userPassword) 
1230 {
1231   GString *fileName = new GString(filename);
1232   GString *userPW;
1233   Object info;
1234   // init error file
1235   errorInit();
1236
1237   // read config file
1238   initParams(xpdfConfigFile);
1239
1240   // open PDF file
1241   xref = NULL;
1242   if (userPassword && userPassword[0]) {
1243     userPW = new GString(userPassword);
1244   } else {
1245     userPW = NULL;
1246   }
1247   doc = new PDFDoc(fileName, userPW);
1248   if (userPW) {
1249     delete userPW;
1250   }
1251   if (!doc->isOk()) {
1252     exit(1);
1253   }
1254
1255   // print doc info
1256   doc->getDocInfo(&info);
1257   if (info.isDict()) {
1258     printInfoString(info.getDict(), "Title",        "Title:        %s\n");
1259     printInfoString(info.getDict(), "Subject",      "Subject:      %s\n");
1260     printInfoString(info.getDict(), "Keywords",     "Keywords:     %s\n");
1261     printInfoString(info.getDict(), "Author",       "Author:       %s\n");
1262     printInfoString(info.getDict(), "Creator",      "Creator:      %s\n");
1263     printInfoString(info.getDict(), "Producer",     "Producer:     %s\n");
1264     printInfoDate(info.getDict(),   "CreationDate", "CreationDate: %s\n");
1265     printInfoDate(info.getDict(),   "ModDate",      "ModDate:      %s\n");
1266   }
1267   info.free();
1268
1269   // print page count
1270   printf("Pages:        %d\n", doc->getNumPages());
1271   numpages = doc->getNumPages();
1272   
1273   // print linearization info
1274   printf("Linearized:   %s\n", doc->isLinearized() ? "yes" : "no");
1275
1276   // print encryption info
1277   printf("Encrypted:    ");
1278   if (doc->isEncrypted()) {
1279     printf("yes (print:%s copy:%s change:%s addNotes:%s)\n",
1280            doc->okToPrint() ? "yes" : "no",
1281            doc->okToCopy() ? "yes" : "no",
1282            doc->okToChange() ? "yes" : "no",
1283            doc->okToAddNotes() ? "yes" : "no");
1284         /*ERROR: This pdf is encrypted, and disallows copying.
1285           Due to the DMCA, paragraph 1201, (2) A-C, circumventing
1286           a technological measure that efficively controls access to
1287           a protected work is violating American law. 
1288           See www.eff.org for more information about DMCA issues.
1289          */
1290         if(!doc->okToCopy()) {
1291             printf("PDF disallows copying. Bailing out.\n");
1292             exit(1); //bail out
1293         }
1294         if(!doc->okToChange() || !doc->okToAddNotes())
1295             swfoutput_setprotected();
1296     }
1297   else {
1298     printf("no\n");
1299   }
1300
1301
1302   output = new SWFOutputDev();
1303 }
1304
1305 void pdfswf_drawonlyshapes()
1306 {
1307     drawonlyshapes = 1;
1308 }
1309
1310 void pdfswf_ignoredraworder()
1311 {
1312     ignoredraworder = 1;
1313 }
1314
1315 void pdfswf_linksopennewwindow()
1316 {
1317     opennewwindow = 1;
1318 }
1319
1320 void pdfswf_jpegquality(int val)
1321 {
1322     if(val<0) val=0;
1323     if(val>100) val=100;
1324     jpegquality = val;
1325 }
1326
1327 void pdfswf_setoutputfilename(char*_filename)
1328 {
1329     swffilename = _filename;
1330 }
1331
1332
1333 void pdfswf_convertpage(int page)
1334 {
1335     if(!pages)
1336     {
1337         pages = (int*)malloc(1024*sizeof(int));
1338         pagebuflen = 1024;
1339     } else {
1340         if(pagepos == pagebuflen)
1341         {
1342             pagebuflen+=1024;
1343             pages = (int*)realloc(pages, pagebuflen);
1344         }
1345     }
1346     pages[pagepos++] = page;
1347 }
1348
1349 void pdfswf_performconversion()
1350 {
1351     int t;
1352     for(t=0;t<pagepos;t++)
1353     {
1354        currentpage = pages[t];
1355        doc->displayPage((OutputDev*)output, currentpage, /*zoom*/100, /*rotate*/0, /*doLinks*/(int)1);
1356     }
1357 }
1358
1359 int pdfswf_numpages()
1360 {
1361   return doc->getNumPages();
1362 }
1363
1364 int closed=0;
1365 void pdfswf_close()
1366 {
1367     logf("<debug> pdfswf.cc: pdfswf_close()");
1368     delete output;
1369     delete doc;
1370     freeParams();
1371     // check for memory leaks
1372     Object::memCheck(stderr);
1373     gMemReport(stderr);
1374 }
1375