fc295eb3c32b6e9f7408a5b7118fa6ed2fd4bdcf
[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 "gfile.h"
27 #include "GString.h"
28 #include "gmem.h"
29 #include "Object.h"
30 #include "Stream.h"
31 #include "Array.h"
32 #include "Dict.h"
33 #include "XRef.h"
34 #include "Catalog.h"
35 #include "Page.h"
36 #include "PDFDoc.h"
37 #include "Error.h"
38 #include "config.h"
39 #include "OutputDev.h"
40 #include "GfxState.h"
41 #include "GfxFont.h"
42 #include "CharCodeToUnicode.h"
43 #include "NameToUnicodeTable.h"
44 #include "FontFile.h"
45 #include "GlobalParams.h"
46 //swftools header files
47 #include "swfoutput.h"
48 extern "C" {
49 #include "../lib/log.h"
50 #include "ttf2pt1.h"
51 }
52
53 #define logf logarithmf // logf is also used by ../lib/log.h
54 #include <math.h>
55 #undef logf
56
57 static PDFDoc*doc = 0;
58 static char* swffilename = 0;
59 int numpages;
60 int currentpage;
61
62 // swf <-> pdf pages
63 int*pages = 0;
64 int pagebuflen = 0;
65 int pagepos = 0;
66
67 static void printInfoString(Dict *infoDict, char *key, char *fmt);
68 static void printInfoDate(Dict *infoDict, char *key, char *fmt);
69
70 double fontsizes[] = 
71 {
72  0.833,0.833,0.889,0.889,
73  0.788,0.722,0.833,0.778,
74  0.600,0.600,0.600,0.600,
75  0.576,0.576,0.576,0.576,
76  0.733 //?
77 };
78 char*fontnames[]={
79 "Helvetica",             
80 "Helvetica-Bold",        
81 "Helvetica-BoldOblique", 
82 "Helvetica-Oblique",     
83 "Times-Roman",           
84 "Times-Bold",            
85 "Times-BoldItalic",      
86 "Times-Italic",          
87 "Courier",               
88 "Courier-Bold",          
89 "Courier-BoldOblique",   
90 "Courier-Oblique",       
91 "Symbol",                
92 "Symbol",                
93 "Symbol",                
94 "Symbol",
95 "ZapfDingBats"
96 };
97
98 struct mapping {
99     char*pdffont;
100     char*filename;
101     int id;
102 } pdf2t1map[] ={
103 {"Times-Roman",           "n021003l.pfb"},
104 {"Times-Italic",          "n021023l.pfb"},
105 {"Times-Bold",            "n021004l.pfb"},
106 {"Times-BoldItalic",      "n021024l.pfb"},
107 {"Helvetica",             "n019003l.pfb"},
108 {"Helvetica-Oblique",     "n019023l.pfb"},
109 {"Helvetica-Bold",        "n019004l.pfb"},
110 {"Helvetica-BoldOblique", "n019024l.pfb"},
111 {"Courier",               "n022003l.pfb"},
112 {"Courier-Oblique",       "n022023l.pfb"},
113 {"Courier-Bold",          "n022004l.pfb"},
114 {"Courier-BoldOblique",   "n022024l.pfb"},
115 {"Symbol",                "s050000l.pfb"},
116 {"ZapfDingbats",          "d050000l.pfb"}};
117
118 class GfxState;
119 class GfxImageColorMap;
120
121 class SWFOutputDev:  public OutputDev {
122   struct swfoutput output;
123   int outputstarted;
124 public:
125
126   // Constructor.
127   SWFOutputDev();
128
129   // Destructor.
130   virtual ~SWFOutputDev() ;
131
132   //----- get info about output device
133
134   // Does this device use upside-down coordinates?
135   // (Upside-down means (0,0) is the top left corner of the page.)
136   virtual GBool upsideDown();
137
138   // Does this device use drawChar() or drawString()?
139   virtual GBool useDrawChar();
140   
141   virtual GBool interpretType3Chars() {return gTrue;}
142
143   //----- initialization and control
144
145   void startDoc(XRef *xref);
146
147   // Start a page.
148   virtual void startPage(int pageNum, GfxState *state) ;
149
150   //----- link borders
151   virtual void drawLink(Link *link, Catalog *catalog) ;
152
153   //----- save/restore graphics state
154   virtual void saveState(GfxState *state) ;
155   virtual void restoreState(GfxState *state) ;
156
157   //----- update graphics state
158
159   virtual void updateFont(GfxState *state);
160   virtual void updateFillColor(GfxState *state);
161   virtual void updateStrokeColor(GfxState *state);
162   virtual void updateLineWidth(GfxState *state);
163   
164   virtual void updateAll(GfxState *state) 
165   {
166       updateFont(state);
167       updateFillColor(state);
168       updateStrokeColor(state);
169       updateLineWidth(state);
170   };
171
172   //----- path painting
173   virtual void stroke(GfxState *state) ;
174   virtual void fill(GfxState *state) ;
175   virtual void eoFill(GfxState *state) ;
176
177   //----- path clipping
178   virtual void clip(GfxState *state) ;
179   virtual void eoClip(GfxState *state) ;
180
181   //----- text drawing
182   virtual void beginString(GfxState *state, GString *s) ;
183   virtual void endString(GfxState *state) ;
184   virtual void drawChar(GfxState *state, double x, double y,
185                         double dx, double dy,
186                         double originX, double originY,
187                         CharCode code, Unicode *u, int uLen);
188
189   //----- image drawing
190   virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
191                              int width, int height, GBool invert,
192                              GBool inlineImg);
193   virtual void drawImage(GfxState *state, Object *ref, Stream *str,
194                          int width, int height, GfxImageColorMap *colorMap,
195                          int *maskColors, GBool inlineImg);
196   
197   virtual GBool beginType3Char(GfxState *state,
198                                CharCode code, Unicode *u, int uLen);
199   virtual void endType3Char(GfxState *state);
200
201   private:
202   void drawGeneralImage(GfxState *state, Object *ref, Stream *str,
203                                    int width, int height, GfxImageColorMap*colorMap, GBool invert,
204                                    GBool inlineImg, int mask);
205   int clipping[64];
206   int clippos;
207
208   XRef*xref;
209
210   int searchT1Font(char*name);
211   char* substituteFont(GfxFont*gfxFont, char*oldname);
212   char* writeEmbeddedFontToFile(XRef*ref, GfxFont*font);
213   int t1id;
214   int jpeginfo; // did we write "File contains jpegs" yet?
215   int pbminfo; // did we write "File contains jpegs" yet?
216   int linkinfo; // did we write "File contains links" yet?
217   int ttfinfo; // did we write "File contains TrueType Fonts" yet?
218
219   int type3active; // are we between beginType3()/endType3()?
220
221   GfxState *laststate;
222 };
223
224 char mybuf[1024];
225 char* gfxstate2str(GfxState *state)
226 {
227   char*bufpos = mybuf;
228   GfxRGB rgb;
229   bufpos+=sprintf(bufpos,"CTM[%.3f/%.3f/%.3f/%.3f/%.3f/%.3f] ",
230                                     state->getCTM()[0],
231                                     state->getCTM()[1],
232                                     state->getCTM()[2],
233                                     state->getCTM()[3],
234                                     state->getCTM()[4],
235                                     state->getCTM()[5]);
236   if(state->getX1()!=0.0)
237   bufpos+=sprintf(bufpos,"X1-%.1f ",state->getX1());
238   if(state->getY1()!=0.0)
239   bufpos+=sprintf(bufpos,"Y1-%.1f ",state->getY1());
240   bufpos+=sprintf(bufpos,"X2-%.1f ",state->getX2());
241   bufpos+=sprintf(bufpos,"Y2-%.1f ",state->getY2());
242   bufpos+=sprintf(bufpos,"PW%.1f ",state->getPageWidth());
243   bufpos+=sprintf(bufpos,"PH%.1f ",state->getPageHeight());
244   /*bufpos+=sprintf(bufpos,"FC[%.1f/%.1f] ",
245           state->getFillColor()->c[0], state->getFillColor()->c[1]);
246   bufpos+=sprintf(bufpos,"SC[%.1f/%.1f] ",
247           state->getStrokeColor()->c[0], state->getFillColor()->c[1]);*/
248 /*  bufpos+=sprintf(bufpos,"FC[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f]",
249           state->getFillColor()->c[0], state->getFillColor()->c[1],
250           state->getFillColor()->c[2], state->getFillColor()->c[3],
251           state->getFillColor()->c[4], state->getFillColor()->c[5],
252           state->getFillColor()->c[6], state->getFillColor()->c[7]);
253   bufpos+=sprintf(bufpos,"SC[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f]",
254           state->getStrokeColor()->c[0], state->getFillColor()->c[1],
255           state->getStrokeColor()->c[2], state->getFillColor()->c[3],
256           state->getStrokeColor()->c[4], state->getFillColor()->c[5],
257           state->getStrokeColor()->c[6], state->getFillColor()->c[7]);*/
258   state->getFillRGB(&rgb);
259   if(rgb.r || rgb.g || rgb.b)
260   bufpos+=sprintf(bufpos,"FR[%.1f/%.1f/%.1f] ", rgb.r,rgb.g,rgb.b);
261   state->getStrokeRGB(&rgb);
262   if(rgb.r || rgb.g || rgb.b)
263   bufpos+=sprintf(bufpos,"SR[%.1f/%.1f/%.1f] ", rgb.r,rgb.g,rgb.b);
264   if(state->getFillColorSpace()->getNComps()>1)
265   bufpos+=sprintf(bufpos,"CS[[%d]] ",state->getFillColorSpace()->getNComps());
266   if(state->getStrokeColorSpace()->getNComps()>1)
267   bufpos+=sprintf(bufpos,"SS[[%d]] ",state->getStrokeColorSpace()->getNComps());
268   if(state->getFillPattern())
269   bufpos+=sprintf(bufpos,"FP%08x ", state->getFillPattern());
270   if(state->getStrokePattern())
271   bufpos+=sprintf(bufpos,"SP%08x ", state->getStrokePattern());
272  
273   if(state->getFillOpacity()!=1.0)
274   bufpos+=sprintf(bufpos,"FO%.1f ", state->getFillOpacity());
275   if(state->getStrokeOpacity()!=1.0)
276   bufpos+=sprintf(bufpos,"SO%.1f ", state->getStrokeOpacity());
277
278   bufpos+=sprintf(bufpos,"LW%.1f ", state->getLineWidth());
279  
280   double * dash;
281   int length;
282   double start;
283   state->getLineDash(&dash, &length, &start);
284   int t;
285   if(length)
286   {
287       bufpos+=sprintf(bufpos,"DASH%.1f[",start);
288       for(t=0;t<length;t++) {
289           bufpos+=sprintf(bufpos,"D%.1f",dash[t]);
290       }
291       bufpos+=sprintf(bufpos,"]");
292   }
293
294   if(state->getFlatness()!=1)
295   bufpos+=sprintf(bufpos,"F%d ", state->getFlatness());
296   if(state->getLineJoin()!=0)
297   bufpos+=sprintf(bufpos,"J%d ", state->getLineJoin());
298   if(state->getLineJoin()!=0)
299   bufpos+=sprintf(bufpos,"C%d ", state->getLineCap());
300   if(state->getLineJoin()!=0)
301   bufpos+=sprintf(bufpos,"ML%d ", state->getMiterLimit());
302
303   if(state->getFont() && state->getFont()->getName() && state->getFont()->getName()->getCString())
304   bufpos+=sprintf(bufpos,"F\"%s\" ",((state->getFont())->getName())->getCString());
305   bufpos+=sprintf(bufpos,"FS%.1f ", state->getFontSize());
306   bufpos+=sprintf(bufpos,"MAT[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f] ", state->getTextMat()[0],state->getTextMat()[1],state->getTextMat()[2],
307                                    state->getTextMat()[3],state->getTextMat()[4],state->getTextMat()[5]);
308   if(state->getCharSpace())
309   bufpos+=sprintf(bufpos,"CS%.5f ", state->getCharSpace());
310   if(state->getWordSpace())
311   bufpos+=sprintf(bufpos,"WS%.5f ", state->getWordSpace());
312   if(state->getHorizScaling()!=1.0)
313   bufpos+=sprintf(bufpos,"SC%.1f ", state->getHorizScaling());
314   if(state->getLeading())
315   bufpos+=sprintf(bufpos,"L%.1f ", state->getLeading());
316   if(state->getRise())
317   bufpos+=sprintf(bufpos,"R%.1f ", state->getRise());
318   if(state->getRender())
319   bufpos+=sprintf(bufpos,"R%d ", state->getRender());
320   bufpos+=sprintf(bufpos,"P%08x ", state->getPath());
321   bufpos+=sprintf(bufpos,"CX%.1f ", state->getCurX());
322   bufpos+=sprintf(bufpos,"CY%.1f ", state->getCurY());
323   if(state->getLineX())
324   bufpos+=sprintf(bufpos,"LX%.1f ", state->getLineX());
325   if(state->getLineY())
326   bufpos+=sprintf(bufpos,"LY%.1f ", state->getLineY());
327   bufpos+=sprintf(bufpos," ");
328   return mybuf;
329 }
330
331 void dumpFontInfo(char*loglevel, GfxFont*font);
332 int lastdumps[1024];
333 int lastdumppos = 0;
334 /* nr = 0  unknown
335    nr = 1  substituting
336    nr = 2  type 3
337  */
338 void showFontError(GfxFont*font, int nr) 
339 {  
340     Ref*r=font->getID();
341     int t;
342     for(t=0;t<lastdumppos;t++)
343         if(lastdumps[t] == r->num)
344             break;
345     if(t < lastdumppos)
346       return;
347     if(lastdumppos<sizeof(lastdumps)/sizeof(int))
348     lastdumps[lastdumppos++] = r->num;
349     if(nr == 0)
350       logf("<warning> The following font caused problems:");
351     else if(nr == 1)
352       logf("<warning> The following font caused problems (substituting):");
353     else if(nr == 2)
354       logf("<warning> The following Type 3 Font will be rendered as bitmap:");
355     dumpFontInfo("<warning>", font);
356 }
357
358 void dumpFontInfo(char*loglevel, GfxFont*font)
359 {
360   GString *gstr;
361   char*name = 0;
362   gstr = font->getName();
363   Ref* r=font->getID();
364   logf("%s=========== %s (ID:%d,%d) ==========\n", loglevel, gstr?FIXNULL(gstr->getCString()):"(unknown font)", r->num,r->gen);
365
366   gstr  = font->getTag();
367   if(gstr) 
368    logf("%sTag: %s\n", loglevel, FIXNULL(gstr->getCString()));
369   
370   if(font->isCIDFont()) logf("%sis CID font\n", loglevel);
371
372   GfxFontType type=font->getType();
373   switch(type) {
374     case fontUnknownType:
375      logf("%sType: unknown\n",loglevel);
376     break;
377     case fontType1:
378      logf("%sType: 1\n",loglevel);
379     break;
380     case fontType1C:
381      logf("%sType: 1C\n",loglevel);
382     break;
383     case fontType3:
384      logf("%sType: 3\n",loglevel);
385     break;
386     case fontTrueType:
387      logf("%sType: TrueType\n",loglevel);
388     break;
389     case fontCIDType0:
390      logf("%sType: CIDType0\n",loglevel);
391     break;
392     case fontCIDType0C:
393      logf("%sType: CIDType0C\n",loglevel);
394     break;
395     case fontCIDType2:
396      logf("%sType: CIDType2\n",loglevel);
397     break;
398   }
399   
400   Ref embRef;
401   GBool embedded = font->getEmbeddedFontID(&embRef);
402   if(font->getEmbeddedFontName())
403     name = font->getEmbeddedFontName()->getCString();
404   if(embedded)
405    logf("%sEmbedded name: %s id: %d\n",loglevel, FIXNULL(name), embRef.num);
406
407   gstr = font->getExtFontFile();
408   if(gstr)
409    logf("%sExternal Font file: %s\n", loglevel, FIXNULL(gstr->getCString()));
410
411   // Get font descriptor flags.
412   if(font->isFixedWidth()) logf("%sis fixed width\n", loglevel);
413   if(font->isSerif()) logf("%sis serif\n", loglevel);
414   if(font->isSymbolic()) logf("%sis symbolic\n", loglevel);
415   if(font->isItalic()) logf("%sis italic\n", loglevel);
416   if(font->isBold()) logf("%sis bold\n", loglevel);
417 }
418
419 //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");}
420 //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");}
421
422 SWFOutputDev::SWFOutputDev() 
423 {
424     jpeginfo = 0;
425     ttfinfo = 0;
426     linkinfo = 0;
427     pbminfo = 0;
428     type3active = 0;
429     clippos = 0;
430     clipping[clippos] = 0;
431     outputstarted = 0;
432     xref = 0;
433 //    printf("SWFOutputDev::SWFOutputDev() \n");
434 };
435
436 T1_OUTLINE* gfxPath_to_T1_OUTLINE(GfxState*state, GfxPath*path)
437 {
438     int num = path->getNumSubpaths();
439     int s,t;
440     bezierpathsegment*start,*last=0;
441     bezierpathsegment*outline = start = new bezierpathsegment();
442     int cpos = 0;
443     double lastx=0,lasty=0;
444     for(t = 0; t < num; t++) {
445         GfxSubpath *subpath = path->getSubpath(t);
446         int subnum = subpath->getNumPoints();
447
448         for(s=0;s<subnum;s++) {
449            double nx,ny;
450            state->transform(subpath->getX(s),subpath->getY(s),&nx,&ny);
451            int x = (int)((nx-lastx)*0xffff);
452            int y = (int)((ny-lasty)*0xffff);
453            if(s==0) 
454            {
455                 last = outline;
456                 outline->type = T1_PATHTYPE_MOVE;
457                 outline->dest.x = x;
458                 outline->dest.y = y;
459                 outline->link = (T1_OUTLINE*)new bezierpathsegment();
460                 outline = (bezierpathsegment*)outline->link;
461                 cpos = 0;
462                 lastx = nx;
463                 lasty = ny;
464            }
465            else if(subpath->getCurve(s) && !cpos)
466            {
467                 outline->B.x = x;
468                 outline->B.y = y;
469                 cpos = 1;
470            } 
471            else if(subpath->getCurve(s) && cpos)
472            {
473                 outline->C.x = x;
474                 outline->C.y = y;
475                 cpos = 2;
476            }
477            else
478            {
479                 last = outline;
480                 outline->dest.x = x;
481                 outline->dest.y = y;
482                 outline->type = cpos?T1_PATHTYPE_BEZIER:T1_PATHTYPE_LINE;
483                 outline->link = 0;
484                 outline->link = (T1_OUTLINE*)new bezierpathsegment();
485                 outline = (bezierpathsegment*)outline->link;
486                 cpos = 0;
487                 lastx = nx;
488                 lasty = ny;
489            }
490         }
491     }
492     last->link = 0;
493     return (T1_OUTLINE*)start;
494 }
495 /*----------------------------------------------------------------------------
496  * Primitive Graphic routines
497  *----------------------------------------------------------------------------*/
498
499 void SWFOutputDev::stroke(GfxState *state) 
500 {
501     logf("<debug> stroke\n");
502     GfxPath * path = state->getPath();
503     struct swfmatrix m;
504     m.m11 = 1; m.m21 = 0; m.m22 = 1;
505     m.m12 = 0; m.m13 = 0; m.m23 = 0;
506     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
507     swfoutput_setdrawmode(&output, DRAWMODE_STROKE);
508     swfoutput_drawpath(&output, outline, &m);
509 }
510 void SWFOutputDev::fill(GfxState *state) 
511 {
512     logf("<debug> fill\n");
513     GfxPath * path = state->getPath();
514     struct swfmatrix m;
515     m.m11 = 1; m.m21 = 0; m.m22 = 1;
516     m.m12 = 0; m.m13 = 0; m.m23 = 0;
517     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
518     swfoutput_setdrawmode(&output, DRAWMODE_FILL);
519     swfoutput_drawpath(&output, outline, &m);
520 }
521 void SWFOutputDev::eoFill(GfxState *state) 
522 {
523     logf("<debug> eofill\n");
524     GfxPath * path = state->getPath();
525     struct swfmatrix m;
526     m.m11 = 1; m.m21 = 0; m.m22 = 1;
527     m.m12 = 0; m.m13 = 0; m.m23 = 0;
528     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
529     swfoutput_setdrawmode(&output, DRAWMODE_EOFILL);
530     swfoutput_drawpath(&output, outline, &m);
531 }
532 void SWFOutputDev::clip(GfxState *state) 
533 {
534     logf("<debug> clip\n");
535     GfxPath * path = state->getPath();
536     struct swfmatrix m;
537     m.m11 = 1; m.m22 = 1;
538     m.m12 = 0; m.m21 = 0; 
539     m.m13 = 0; m.m23 = 0;
540     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
541     swfoutput_startclip(&output, outline, &m);
542     clipping[clippos] ++;
543 }
544 void SWFOutputDev::eoClip(GfxState *state) 
545 {
546     logf("<debug> eoclip\n");
547     GfxPath * path = state->getPath();
548     struct swfmatrix m;
549     m.m11 = 1; m.m21 = 0; m.m22 = 1;
550     m.m12 = 0; m.m13 = 0; m.m23 = 0;
551     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
552     swfoutput_startclip(&output, outline, &m);
553     clipping[clippos] ++;
554 }
555
556 SWFOutputDev::~SWFOutputDev() 
557 {
558     swfoutput_destroy(&output);
559     outputstarted = 0;
560 };
561 GBool SWFOutputDev::upsideDown() 
562 {
563     logf("<debug> upsidedown?");
564     return gTrue;
565 };
566 GBool SWFOutputDev::useDrawChar() 
567 {
568     logf("<debug> usedrawchar?");
569     return gTrue;
570 }
571
572 void SWFOutputDev::beginString(GfxState *state, GString *s) 
573
574     double m11,m21,m12,m22;
575 //    logf("<debug> %s beginstring \"%s\"\n", gfxstate2str(state), s->getCString());
576     state->getFontTransMat(&m11, &m12, &m21, &m22);
577     m11 *= state->getHorizScaling();
578     m21 *= state->getHorizScaling();
579     swfoutput_setfontmatrix(&output, m11, -m21, m12, -m22);
580 }
581
582 int charcounter = 0;
583 void SWFOutputDev::drawChar(GfxState *state, double x, double y,
584                         double dx, double dy,
585                         double originX, double originY,
586                         CharCode c, Unicode *_u, int uLen)
587 {
588     logf("<debug> drawChar(%f,%f,%f,%f,'%c')\n",x,y,dx,dy,c);
589     
590     // check for invisible text -- this is used by Acrobat Capture
591     if ((state->getRender() & 3) == 3)
592         return;
593
594     GfxFont*font = state->getFont();
595
596     if(font->getType() == fontType3) {
597         /* type 3 chars are passed primarily as graphics */
598         return;
599     }
600     double x1,y1;
601     x1 = x;
602     y1 = y;
603     state->transform(x, y, &x1, &y1);
604
605     if(font->isCIDFont()) {
606         GfxCIDFont*cfont = (GfxCIDFont*)font;
607         Unicode u=0;
608         char*name=0;
609         if(_u) 
610             u = *_u;
611         if(u) {
612             int t;
613             for(t=0;t<sizeof(nameToUnicodeTab)/sizeof(nameToUnicodeTab[0]);t++)
614                 /* todo: should be precomputed */
615                 if(nameToUnicodeTab[t].u == u) {
616                     name = nameToUnicodeTab[t].name;
617                     break;
618                 }
619         }
620 /*         printf("%02x %04x/%04x-%d \"%s\" %s %d\n", c,u, *_u, uLen, name, cfont->getName()->getCString(),
621                 cfont->getType());*/
622
623         if(name)
624            swfoutput_drawchar(&output, x1, y1, name, c);
625         else
626            logf("<warning> couldn't get name for CID character %02x from Encoding", c);
627     } else {
628         Gfx8BitFont*font8;
629         font8 = (Gfx8BitFont*)font;
630         char**enc=font8->getEncoding();
631
632         if(enc && enc[c])
633            swfoutput_drawchar(&output, x1, y1, enc[c], c);
634         else {
635            logf("<warning> couldn't get name for character %02x from Encoding", c);
636         }
637     }
638 }
639
640 void SWFOutputDev::endString(GfxState *state) 
641
642     logf("<debug> endstring\n");
643 }    
644
645  
646 GBool SWFOutputDev::beginType3Char(GfxState *state,
647                                CharCode code, Unicode *u, int uLen)
648 {
649     logf("<debug> beginType3Char %d, %08x, %d", code, *u, uLen);
650     type3active = 1;
651     /* the character itself is going to be passed using
652        drawImageMask() */
653     return gFalse; /* gTrue= is_in_cache? */
654 }
655
656 void SWFOutputDev::endType3Char(GfxState *state)
657 {
658     type3active = 0;
659     logf("<debug> endType3Char");
660 }
661
662 void SWFOutputDev::startPage(int pageNum, GfxState *state) 
663 {
664   double x1,y1,x2,y2;
665   laststate = state;
666   logf("<debug> startPage %d\n", pageNum);
667   logf("<notice> processing page %d", pageNum);
668
669   state->transform(state->getX1(),state->getY1(),&x1,&y1);
670   state->transform(state->getX2(),state->getY2(),&x2,&y2);
671   if(!outputstarted) {
672     swfoutput_init(&output, swffilename, abs((int)(x2-x1)),abs((int)(y2-y1)));
673     outputstarted = 1;
674   }
675   else
676     swfoutput_newpage(&output);
677 }
678
679 void SWFOutputDev::drawLink(Link *link, Catalog *catalog) 
680 {
681   logf("<debug> drawlink\n");
682   double x1, y1, x2, y2, w;
683   GfxRGB rgb;
684   swfcoord points[5];
685   int x, y;
686
687   link->getBorder(&x1, &y1, &x2, &y2, &w);
688 //  if (w > 0) 
689   {
690     rgb.r = 0;
691     rgb.g = 0;
692     rgb.b = 1;
693     cvtUserToDev(x1, y1, &x, &y);
694     points[0].x = points[4].x = (int)x;
695     points[0].y = points[4].y = (int)y;
696     cvtUserToDev(x2, y1, &x, &y);
697     points[1].x = (int)x;
698     points[1].y = (int)y;
699     cvtUserToDev(x2, y2, &x, &y);
700     points[2].x = (int)x;
701     points[2].y = (int)y;
702     cvtUserToDev(x1, y2, &x, &y);
703     points[3].x = (int)x;
704     points[3].y = (int)y;
705
706     LinkAction*action=link->getAction();
707     char buf[128];
708     char*s = "-?-";
709     char*type = "-?-";
710     char*url = 0;
711     char*named = 0;
712     int page = -1;
713     switch(action->getKind())
714     {
715         case actionGoTo: {
716             type = "GoTo";
717             LinkGoTo *ha=(LinkGoTo *)link->getAction();
718             LinkDest *dest=NULL;
719             if (ha->getDest()==NULL) 
720                 dest=catalog->findDest(ha->getNamedDest());
721             else dest=ha->getDest();
722             if (dest){ 
723               if (dest->isPageRef()){
724                 Ref pageref=dest->getPageRef();
725                 page=catalog->findPage(pageref.num,pageref.gen);
726               }
727               else  page=dest->getPageNum();
728               sprintf(buf, "%d", page);
729               s = buf;
730             }
731         }
732         break;
733         case actionGoToR: {
734             type = "GoToR";
735             LinkGoToR*l = (LinkGoToR*)action;
736             GString*g = l->getNamedDest();
737             if(g)
738              s = g->getCString();
739         }
740         break;
741         case actionNamed: {
742             type = "Named";
743             LinkNamed*l = (LinkNamed*)action;
744             GString*name = l->getName();
745             if(name) {
746               s = name->lowerCase()->getCString();
747               named = name->getCString();
748               if(strstr(s, "next") || strstr(s, "forward"))
749               {
750                   page = currentpage + 1;
751               }
752               else if(strstr(s, "prev") || strstr(s, "back"))
753               {
754                   page = currentpage - 1;
755               }
756               else if(strstr(s, "last") || strstr(s, "end"))
757               {
758                   page = pages[pagepos-1]; //:)
759               }
760               else if(strstr(s, "first") || strstr(s, "top"))
761               {
762                   page = 1;
763               }
764             }
765         }
766         break;
767         case actionLaunch: {
768             type = "Launch";
769             LinkLaunch*l = (LinkLaunch*)action;
770             GString * str = new GString(l->getFileName());
771             str->append(l->getParams());
772             s = str->getCString();
773         }
774         break;
775         case actionURI: {
776             type = "URI";
777             LinkURI*l = (LinkURI*)action;
778             GString*g = l->getURI();
779             if(g) {
780              url = g->getCString();
781              s = url;
782             }
783         }
784         break;
785         case actionUnknown: {
786             type = "Unknown";
787             LinkUnknown*l = (LinkUnknown*)action;
788             s = "";
789         }
790         break;
791         default: {
792             logf("<error> Unknown link type!\n");
793             break;
794         }
795     }
796     if(!linkinfo && (page || url))
797     {
798         logf("<notice> File contains links");
799         linkinfo = 1;
800     }
801     if(page>0)
802     {
803         int t;
804         for(t=0;t<pagepos;t++)
805             if(pages[t]==page)
806                 break;
807         if(t!=pagepos)
808         swfoutput_linktopage(&output, t, points);
809     }
810     else if(url)
811     {
812         swfoutput_linktourl(&output, url, points);
813     }
814     else if(named)
815     {
816         swfoutput_namedlink(&output, named, points);
817     }
818     logf("<verbose> \"%s\" link to \"%s\" (%d)\n", type, FIXNULL(s), page);
819   }
820 }
821
822 void SWFOutputDev::saveState(GfxState *state) {
823   logf("<debug> saveState\n");
824   updateAll(state);
825   if(clippos<64)
826     clippos ++;
827   else
828     logf("<error> Too many nested states in pdf.");
829   clipping[clippos] = 0;
830 };
831
832 void SWFOutputDev::restoreState(GfxState *state) {
833   logf("<debug> restoreState\n");
834   updateAll(state);
835   while(clipping[clippos]) {
836       swfoutput_endclip(&output);
837       clipping[clippos]--;
838   }
839   clippos--;
840 }
841
842 char type3Warning=0;
843
844 int SWFOutputDev::searchT1Font(char*name) 
845 {       
846     int i;
847     int mapid=-1;
848     char*filename=0;
849
850     for(i=0;i<sizeof(pdf2t1map)/sizeof(mapping);i++) 
851     {
852         if(!strcmp(name, pdf2t1map[i].pdffont))
853         {
854             filename = pdf2t1map[i].filename;
855             mapid = i;
856         }
857     }
858     if(filename) {
859         for(i=0; i<T1_Get_no_fonts(); i++)
860         {
861             char*fontfilename = T1_GetFontFileName (i);
862             if(strstr(fontfilename, filename))
863             {
864                     pdf2t1map[i].id = mapid;
865                     return i;
866             }
867         }
868     } else {
869         for(i=0; i<T1_Get_no_fonts(); i++)
870         {
871             char*fontname = T1_GetFontName (i);
872             if(!fontname) {
873                 T1_LoadFont(i);
874                 fontname = T1_GetFontName (i);
875                 logf("<verbose> Loading extra font %s from %s\n", FIXNULL(fontname), 
876                                                                   FIXNULL(T1_GetFontFileName(i)));
877             }
878
879             if(fontname && !strcmp(name, fontname)) {
880                 logf("<notice> Extra font %s is being used.\n", fontname);
881                 return i;
882             }
883             fontname = T1_GetFontFileName(i);
884             if(strrchr(fontname,'/'))
885                     fontname = strrchr(fontname,'/')+1;
886  
887             if(strstr(fontname, name)) {
888                 logf("<notice> Extra font %s is being used.\n", fontname);
889                 return i;
890             }
891         }
892     }
893     return -1;
894 }
895
896 void SWFOutputDev::updateLineWidth(GfxState *state)
897 {
898     double width = state->getTransformedLineWidth();
899     swfoutput_setlinewidth(&output, width);
900 }
901
902 void SWFOutputDev::updateFillColor(GfxState *state) 
903 {
904     GfxRGB rgb;
905     double opaq = state->getFillOpacity();
906     state->getFillRGB(&rgb);
907
908     swfoutput_setfillcolor(&output, (char)(rgb.r*255), (char)(rgb.g*255), 
909                                     (char)(rgb.b*255), (char)(opaq*255));
910 }
911
912 void SWFOutputDev::updateStrokeColor(GfxState *state) 
913 {
914     GfxRGB rgb;
915     double opaq = state->getStrokeOpacity();
916     state->getStrokeRGB(&rgb);
917
918     swfoutput_setstrokecolor(&output, (char)(rgb.r*255), (char)(rgb.g*255), 
919                                       (char)(rgb.b*255), (char)(opaq*255));
920 }
921
922 char*SWFOutputDev::writeEmbeddedFontToFile(XRef*ref, GfxFont*font)
923 {
924       char*tmpFileName = NULL;
925       FILE *f;
926       int c;
927       char *fontBuf;
928       int fontLen;
929       Type1CFontFile *cvt;
930       Ref embRef;
931       Object refObj, strObj;
932       tmpFileName = "/tmp/tmpfont";
933       int ret;
934
935       ret = font->getEmbeddedFontID(&embRef);
936       if(!ret) {
937           logf("<verbose> Didn't get embedded font id");
938           /* not embedded- the caller should now search the font
939              directories for this font */
940           return 0;
941       }
942
943       f = fopen(tmpFileName, "wb");
944       if (!f) {
945         logf("<error> Couldn't create temporary Type 1 font file");
946           return 0;
947       }
948       if (font->getType() == fontType1C) {
949         if (!(fontBuf = font->readEmbFontFile(xref, &fontLen))) {
950           fclose(f);
951           logf("<error> Couldn't read embedded font file");
952           return 0;
953         }
954         cvt = new Type1CFontFile(fontBuf, fontLen);
955         cvt->convertToType1(f);
956         delete cvt;
957         gfree(fontBuf);
958       } else {
959         font->getEmbeddedFontID(&embRef);
960         refObj.initRef(embRef.num, embRef.gen);
961         refObj.fetch(ref, &strObj);
962         refObj.free();
963         strObj.streamReset();
964         while ((c = strObj.streamGetChar()) != EOF) {
965           fputc(c, f);
966         }
967         strObj.streamClose();
968         strObj.free();
969       }
970       fclose(f);
971
972       if(font->getType() == fontTrueType ||
973          font->getType() == fontCIDType2)
974       {
975           if(!ttfinfo) {
976               logf("<notice> File contains TrueType fonts");
977               ttfinfo = 1;
978           }
979           char name2[80];
980           char*tmp;
981           tmp = strdup(mktmpname((char*)name2));
982           sprintf(name2, "%s", tmp);
983           char*a[] = {"./ttf2pt1","-pttf","-b", tmpFileName, name2};
984           logf("<verbose> Invoking ttf2pt1...");
985           ttf2pt1_main(5,a);
986           unlink(tmpFileName);
987           sprintf(name2,"%s.pfb",tmp);
988           tmpFileName = strdup(name2);
989       }
990
991     return tmpFileName;
992 }
993
994 char* gfxFontName(GfxFont* gfxFont)
995 {
996       GString *gstr;
997       gstr = gfxFont->getName();
998       if(gstr) {
999           return gstr->getCString();
1000       }
1001       else {
1002           char buf[32];
1003           Ref*r=gfxFont->getID();
1004           sprintf(buf, "UFONT%d", r->num);
1005           return strdup(buf);
1006       }
1007 }
1008
1009 char* substitutetarget[256];
1010 char* substitutesource[256];
1011 int substitutepos = 0;
1012
1013 char* SWFOutputDev::substituteFont(GfxFont*gfxFont, char* oldname)
1014 {
1015 /* ------------------------------ V1 */
1016
1017     char*fontname = "Times-Roman";
1018     this->t1id = searchT1Font(fontname);
1019     if(substitutepos>=sizeof(substitutesource)/sizeof(char*)) {
1020         logf("<fatal> Too many fonts in file.");
1021         exit(1);
1022     }
1023     if(oldname) {
1024         substitutesource[substitutepos] = oldname;
1025         substitutetarget[substitutepos] = fontname;
1026         logf("<verbose> substituting %s -> %s", FIXNULL(oldname), FIXNULL(fontname));
1027         substitutepos ++;
1028     }
1029     return fontname;
1030
1031 /* ------------------------------ V2 */
1032
1033 /*      //substitute font
1034       char* fontname = 0;
1035       double m11, m12, m21, m22;
1036       int index;
1037       int code;
1038       double w,w1,w2;
1039       double*fm;
1040       double v;
1041       if(gfxFont->getName()) {
1042         fontname = gfxFont->getName()->getCString();
1043       }
1044
1045 //        printf("%d %s\n", t, gfxFont->getCharName(t));
1046       showFontError(gfxFont, 1);
1047       if(1) { //if (!gfxFont->isCIDFont()) { FIXME: xpdf 1.01 does not have is16Bit()
1048         if(gfxFont->isSymbolic()) {
1049           if(fontname && (strstr(fontname,"ing"))) //Dingbats, Wingdings etc.
1050            index = 16;
1051           else 
1052            index = 12;
1053         } else if (gfxFont->isFixedWidth()) {
1054           index = 8;
1055         } else if (gfxFont->isSerif()) {
1056           index = 4;
1057         } else {
1058           index = 0;
1059         }
1060         if (gfxFont->isBold() && index!=16)
1061           index += 2;
1062         if (gfxFont->isItalic() && index!=16)
1063           index += 1;
1064         fontname = fontnames[index];
1065         // get width of 'm' in real font and substituted font
1066         if ((code = gfxFont->getCharCode("m")) >= 0)
1067           w1 = gfxFont->getWidth(code);
1068         else
1069           w1 = 0;
1070         w2 = fontsizes[index];
1071         if (gfxFont->getType() == fontType3) {
1072           // This is a hack which makes it possible to substitute for some
1073           // Type 3 fonts.  The problem is that it's impossible to know what
1074           // the base coordinate system used in the font is without actually
1075           // rendering the font.  This code tries to guess by looking at the
1076           // width of the character 'm' (which breaks if the font is a
1077           // subset that doesn't contain 'm').
1078           if (w1 > 0 && (w1 > 1.1 * w2 || w1 < 0.9 * w2)) {
1079             w1 /= w2;
1080             m11 *= w1;
1081             m12 *= w1;
1082             m21 *= w1;
1083             m22 *= w1;
1084           }
1085           fm = gfxFont->getFontMatrix();
1086           v = (fm[0] == 0) ? 1 : (fm[3] / fm[0]);
1087           m21 *= v;
1088           m22 *= v;
1089         } else if (!gfxFont->isSymbolic()) {
1090           // if real font is substantially narrower than substituted
1091           // font, reduce the font size accordingly
1092           if (w1 > 0.01 && w1 < 0.9 * w2) {
1093             w1 /= w2;
1094             if (w1 < 0.8) {
1095               w1 = 0.8;
1096             }
1097             m11 *= w1;
1098             m12 *= w1;
1099             m21 *= w1;
1100             m22 *= w1;
1101           }
1102         }
1103       }
1104       if(fontname) {
1105         this->t1id = searchT1Font(fontname);
1106       }
1107       if(substitutepos>=sizeof(substitutesource)/sizeof(char*)) {
1108           logf("<fatal> Too many fonts in file.");
1109           exit(1);
1110       }
1111       if(oldname) {
1112           substitutesource[substitutepos] = oldname;
1113           substitutetarget[substitutepos] = fontname;
1114           logf("<verbose> substituting %s -> %s", FIXNULL(oldname), FIXNULL(fontname));
1115           substitutepos ++;
1116       }
1117       return fontname;*/
1118 }
1119
1120 void unlinkfont(char* filename)
1121 {
1122     int l;
1123     if(!filename)
1124         return;
1125     l=strlen(filename);
1126     unlink(filename);
1127     if(!strncmp(&filename[l-4],".afm",4)) {
1128         memcpy(&filename[l-4],".pfb",4);
1129         unlink(filename);
1130         memcpy(&filename[l-4],".pfa",4);
1131         unlink(filename);
1132         memcpy(&filename[l-4],".afm",4);
1133         return;
1134     } else 
1135     if(!strncmp(&filename[l-4],".pfa",4)) {
1136         memcpy(&filename[l-4],".afm",4);
1137         unlink(filename);
1138         memcpy(&filename[l-4],".pfa",4);
1139         return;
1140     } else 
1141     if(!strncmp(&filename[l-4],".pfb",4)) {
1142         memcpy(&filename[l-4],".afm",4);
1143         unlink(filename);
1144         memcpy(&filename[l-4],".pfb",4);
1145         return;
1146     }
1147 }
1148
1149 void SWFOutputDev::startDoc(XRef *xref) 
1150 {
1151   this->xref = xref;
1152 }
1153
1154
1155 void SWFOutputDev::updateFont(GfxState *state) 
1156 {
1157   GfxFont*gfxFont = state->getFont();
1158   char * fileName = 0;
1159     
1160   if (!gfxFont) {
1161     return;
1162   }  
1163   char * fontname = gfxFontName(gfxFont);
1164  
1165   int t;
1166   /* first, look if we substituted this font before-
1167      this way, we don't initialize the T1 Fonts
1168      too often */
1169   for(t=0;t<substitutepos;t++) {
1170       if(!strcmp(fontname, substitutesource[t])) {
1171           fontname = substitutetarget[t];
1172           break;
1173       }
1174   }
1175
1176   /* second, see if swfoutput already has this font
1177      cached- if so, we are done */
1178
1179   if(swfoutput_queryfont(&output, fontname))
1180   {
1181       swfoutput_setfont(&output, fontname, -1, 0);
1182       return;
1183   }
1184
1185   // look for Type 3 font
1186   if (!type3Warning && gfxFont->getType() == fontType3) {
1187     type3Warning = gTrue;
1188     showFontError(gfxFont, 2);
1189   }
1190
1191   /* now either load the font, or find a substitution */
1192
1193   Ref embRef;
1194   GBool embedded = gfxFont->getEmbeddedFontID(&embRef);
1195   if(embedded) {
1196     if (gfxFont->getType() == fontType1 ||
1197         gfxFont->getType() == fontType1C ||
1198         gfxFont->getType() == fontTrueType ||
1199         gfxFont->getType() == fontCIDType2) 
1200     {
1201         fileName = writeEmbeddedFontToFile(xref, gfxFont);
1202         if(!fileName) {
1203           logf("<error> Couldn't write font to file");
1204           showFontError(gfxFont,0);
1205           return ;
1206         }
1207         this->t1id = T1_AddFont(fileName);
1208         if(this->t1id<0) {
1209           logf("<error> Couldn't load font from file");
1210           showFontError(gfxFont,0);
1211           unlinkfont(fileName);
1212           return ;
1213         }
1214     }
1215     else {
1216         /* in case the font is embedded, but has an
1217            unsupported format, we just look through the
1218            font directories */
1219         int newt1id = searchT1Font(fontname);
1220         if(newt1id<0) {
1221             showFontError(gfxFont,0);
1222             fontname = substituteFont(gfxFont, fontname);
1223         } else
1224             this->t1id = newt1id;
1225     }
1226   } else {
1227     if(fontname) {
1228         int newt1id = searchT1Font(fontname);
1229         if(newt1id<0) {
1230             fontname = substituteFont(gfxFont, fontname);
1231         } else
1232             this->t1id = newt1id;
1233     }
1234     else
1235         fontname = substituteFont(gfxFont, fontname);
1236   }
1237
1238   if(t1id<0) {
1239       showFontError(gfxFont,0);
1240       return;
1241   }
1242  
1243   /* we may have done some substitutions here, so check
1244      again if this font is cached. */
1245   if(swfoutput_queryfont(&output, fontname))
1246   {
1247       swfoutput_setfont(&output, fontname, -1, 0);
1248       return;
1249   }
1250
1251   logf("<verbose> Creating new SWF font: t1id: %d, filename: %s name:%s", this->t1id, FIXNULL(fileName), FIXNULL(fontname));
1252   swfoutput_setfont(&output, fontname, this->t1id, fileName);
1253   if(fileName)
1254       unlinkfont(fileName);
1255 }
1256
1257 int pic_xids[1024];
1258 int pic_yids[1024];
1259 int pic_ids[1024];
1260 int pic_width[1024];
1261 int pic_height[1024];
1262 int picpos = 0;
1263 int pic_id = 0;
1264
1265 #define SQR(x) ((x)*(x))
1266
1267 unsigned char* antialize(unsigned char*data, int width, int height, int newwidth, int newheight, int palettesize)
1268 {
1269     if((newwidth<2 || newheight<2) ||
1270        (width<=newwidth || height<=newheight))
1271         return 0;
1272     unsigned char*newdata;
1273     int x,y;
1274     newdata= (unsigned char*)malloc(newwidth*newheight);
1275     int t;
1276     double fx = (double)(width)/newwidth;
1277     double fy = (double)(height)/newheight;
1278     double px = 0;
1279     int blocksize = (int)(8192/(fx*fy));
1280     int r = 8192*256/palettesize;
1281     for(x=0;x<newwidth;x++) {
1282         double ex = px + fx;
1283         int fromx = (int)px;
1284         int tox = (int)ex;
1285         int xweight1 = (int)(((fromx+1)-px)*256);
1286         int xweight2 = (int)((ex-tox)*256);
1287         double py =0;
1288         for(y=0;y<newheight;y++) {
1289             double ey = py + fy;
1290             int fromy = (int)py;
1291             int toy = (int)ey;
1292             int yweight1 = (int)(((fromy+1)-py)*256);
1293             int yweight2 = (int)((ey-toy)*256);
1294             int a = 0;
1295             int xx,yy;
1296             for(xx=fromx;xx<=tox;xx++)
1297             for(yy=fromy;yy<=toy;yy++) {
1298                 int b = 1-data[width*yy+xx];
1299                 int weight=256;
1300                 if(xx==fromx) weight = (weight*xweight1)/256;
1301                 if(xx==tox) weight = (weight*xweight2)/256;
1302                 if(yy==fromy) weight = (weight*yweight1)/256;
1303                 if(yy==toy) weight = (weight*yweight2)/256;
1304                 a+=b*weight;
1305             }
1306             //if(a) a=(palettesize-1)*r/blocksize;
1307             newdata[y*newwidth+x] = (a*blocksize)/r;
1308             py = ey;
1309         }
1310         px = ex;
1311     }
1312     return newdata;
1313 }
1314
1315 void SWFOutputDev::drawGeneralImage(GfxState *state, Object *ref, Stream *str,
1316                                    int width, int height, GfxImageColorMap*colorMap, GBool invert,
1317                                    GBool inlineImg, int mask)
1318 {
1319   FILE *fi;
1320   int c;
1321   char fileName[128];
1322   double x1,y1,x2,y2,x3,y3,x4,y4;
1323   ImageStream *imgStr;
1324   Guchar pixBuf[4];
1325   GfxRGB rgb;
1326   int ncomps = 1;
1327   int bits = 1;
1328                                  
1329   if(colorMap) {
1330     ncomps = colorMap->getNumPixelComps();
1331     bits = colorMap->getBits();
1332   }
1333   imgStr = new ImageStream(str, width, ncomps,bits);
1334   imgStr->reset();
1335
1336   if(!width || !height || (height<=1 && width<=1))
1337   {
1338       logf("<verbose> Ignoring %d by %d image", width, height);
1339       unsigned char buf[8];
1340       int x,y;
1341       for (y = 0; y < height; ++y)
1342       for (x = 0; x < width; ++x) {
1343           imgStr->getPixel(buf);
1344       }
1345       delete imgStr;
1346       return;
1347   }
1348   
1349   state->transform(0, 1, &x1, &y1);
1350   state->transform(0, 0, &x2, &y2);
1351   state->transform(1, 0, &x3, &y3);
1352   state->transform(1, 1, &x4, &y4);
1353
1354   if(!pbminfo && !(str->getKind()==strDCT)) {
1355       if(!type3active) {
1356           logf("<notice> file contains pbm pictures %s",mask?"(masked)":"");
1357           pbminfo = 1;
1358       }
1359       if(mask)
1360       logf("<verbose> drawing %d by %d masked picture\n", width, height);
1361   }
1362   if(!jpeginfo && (str->getKind()==strDCT)) {
1363       logf("<notice> file contains jpeg pictures");
1364       jpeginfo = 1;
1365   }
1366
1367   if(mask) {
1368       int yes=0,i,j;
1369       unsigned char buf[8];
1370       int xid = 0;
1371       int yid = 0;
1372       int x,y;
1373       unsigned char*pic = new unsigned char[width*height];
1374       RGBA pal[256];
1375       GfxRGB rgb;
1376       state->getFillRGB(&rgb);
1377       memset(pal,255,sizeof(pal));
1378       pal[0].r = (int)(rgb.r*255); pal[0].g = (int)(rgb.g*255); 
1379       pal[0].b = (int)(rgb.b*255); pal[0].a = 255;
1380       pal[1].r = 0; pal[1].g = 0; pal[1].b = 0; pal[1].a = 0;
1381       int numpalette = 2;
1382       xid += pal[1].r*3 + pal[1].g*11 + pal[1].b*17;
1383       yid += pal[1].r*7 + pal[1].g*5 + pal[1].b*23;
1384       int realwidth = (int)sqrt(SQR(x2-x3) + SQR(y2-y3));
1385       int realheight = (int)sqrt(SQR(x1-x2) + SQR(y1-y2));
1386       for (y = 0; y < height; ++y)
1387       for (x = 0; x < width; ++x)
1388       {
1389             imgStr->getPixel(buf);
1390             if(invert) 
1391                 buf[0]=1-buf[0];
1392             pic[width*y+x] = buf[0];
1393             xid+=x*buf[0]+1;
1394             yid+=y*buf[0]*3+1;
1395       }
1396       
1397       /* the size of the drawn image is added to the identifier
1398          as the same image may require different bitmaps if displayed
1399          at different sizes (due to antialiasing): */
1400       if(type3active) {
1401           xid += realwidth;
1402           yid += realheight;
1403       }
1404       int t,found = -1;
1405       for(t=0;t<picpos;t++)
1406       {
1407           if(pic_xids[t] == xid &&
1408              pic_yids[t] == yid) {
1409               /* if the image was antialiased, the size has changed: */
1410               width = pic_width[t];
1411               height = pic_height[t];
1412               found = t;break;
1413           }
1414       }
1415       if(found<0) {
1416           if(type3active) {
1417               numpalette = 16;
1418               unsigned char*pic2 = 0;
1419               
1420               pic2 = antialize(pic,width,height,realwidth,realheight, numpalette);
1421
1422               if(pic2) {
1423                   width = realwidth;
1424                   height = realheight;
1425                   free(pic);
1426                   pic = pic2;
1427                   /* make a black/white palette */
1428                   int t;
1429                   GfxRGB rgb2;
1430                   rgb2.r = 1 - rgb.r;
1431                   rgb2.g = 1 - rgb.g;
1432                   rgb2.b = 1 - rgb.b;
1433
1434                   float r = 255/(numpalette-1);
1435                   for(t=0;t<numpalette;t++) {
1436                       /*pal[t].r = (U8)(t*r*rgb.r+(numpalette-1-t)*r*rgb2.r);
1437                       pal[t].g = (U8)(t*r*rgb.g+(numpalette-1-t)*r*rgb2.g);
1438                       pal[t].b = (U8)(t*r*rgb.b+(numpalette-1-t)*r*rgb2.b);
1439                       pal[t].a = 255; */
1440                       pal[t].r = (U8)(255*rgb.r);
1441                       pal[t].g = (U8)(255*rgb.g);
1442                       pal[t].b = (U8)(255*rgb.b);
1443                       pal[t].a = (U8)(t*r);
1444                   }
1445               }
1446           }
1447           pic_ids[picpos] = swfoutput_drawimagelosslessN(&output, pic, pal, width, height, 
1448                   x1,y1,x2,y2,x3,y3,x4,y4, numpalette);
1449           pic_xids[picpos] = xid;
1450           pic_yids[picpos] = yid;
1451           pic_width[picpos] = width;
1452           pic_height[picpos] = height;
1453           if(picpos<1024)
1454               picpos++;
1455       } else {
1456           swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1457                   x1,y1,x2,y2,x3,y3,x4,y4);
1458       }
1459       free(pic);
1460       delete imgStr;
1461       return;
1462   } 
1463
1464   int x,y;
1465   
1466   if(colorMap->getNumPixelComps()!=1 || str->getKind()==strDCT)
1467   {
1468       RGBA*pic=new RGBA[width*height];
1469       int xid = 0;
1470       int yid = 0;
1471       for (y = 0; y < height; ++y) {
1472         for (x = 0; x < width; ++x) {
1473           int r,g,b,a;
1474           imgStr->getPixel(pixBuf);
1475           colorMap->getRGB(pixBuf, &rgb);
1476           pic[width*y+x].r = r = (U8)(rgb.r * 255 + 0.5);
1477           pic[width*y+x].g = g = (U8)(rgb.g * 255 + 0.5);
1478           pic[width*y+x].b = b = (U8)(rgb.b * 255 + 0.5);
1479           pic[width*y+x].a = a = 255;//(U8)(rgb.a * 255 + 0.5);
1480           xid += x*r+x*b*3+x*g*7+x*a*11;
1481           yid += y*r*3+y*b*17+y*g*19+y*a*11;
1482         }
1483       }
1484       int t,found = -1;
1485       for(t=0;t<picpos;t++)
1486       {
1487           if(pic_xids[t] == xid &&
1488              pic_yids[t] == yid) {
1489               found = t;break;
1490           }
1491       }
1492       if(found<0) {
1493           if(str->getKind()==strDCT)
1494               pic_ids[picpos] = swfoutput_drawimagejpeg(&output, pic, width, height, 
1495                       x1,y1,x2,y2,x3,y3,x4,y4);
1496           else
1497               pic_ids[picpos] = swfoutput_drawimagelossless(&output, pic, width, height, 
1498                       x1,y1,x2,y2,x3,y3,x4,y4);
1499           pic_xids[picpos] = xid;
1500           pic_yids[picpos] = yid;
1501           pic_width[picpos] = width;
1502           pic_height[picpos] = height;
1503           if(picpos<1024)
1504               picpos++;
1505       } else {
1506           swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1507                   x1,y1,x2,y2,x3,y3,x4,y4);
1508       }
1509       delete pic;
1510       delete imgStr;
1511       return;
1512   }
1513   else
1514   {
1515       U8*pic = new U8[width*height];
1516       RGBA pal[256];
1517       int t;
1518       int xid=0,yid=0;
1519       for(t=0;t<256;t++)
1520       {
1521           int r,g,b,a;
1522           pixBuf[0] = t;
1523           colorMap->getRGB(pixBuf, &rgb);
1524           pal[t].r = r = (U8)(rgb.r * 255 + 0.5);
1525           pal[t].g = g = (U8)(rgb.g * 255 + 0.5);
1526           pal[t].b = b = (U8)(rgb.b * 255 + 0.5);
1527           pal[t].a = a = 255;//(U8)(rgb.b * 255 + 0.5);
1528           xid += t*r+t*b*3+t*g*7+t*a*11;
1529           xid += (~t)*r+t*b*3+t*g*7+t*a*11;
1530       }
1531       for (y = 0; y < height; ++y) {
1532         for (x = 0; x < width; ++x) {
1533           imgStr->getPixel(pixBuf);
1534           pic[width*y+x] = pixBuf[0];
1535           xid += x*pixBuf[0]*7;
1536           yid += y*pixBuf[0]*3;
1537         }
1538       }
1539       int found = -1;
1540       for(t=0;t<picpos;t++)
1541       {
1542           if(pic_xids[t] == xid &&
1543              pic_yids[t] == yid) {
1544               found = t;break;
1545           }
1546       }
1547       if(found<0) {
1548           pic_ids[picpos] = swfoutput_drawimagelosslessN(&output, pic, pal, width, height, 
1549                   x1,y1,x2,y2,x3,y3,x4,y4,256);
1550           pic_xids[picpos] = xid;
1551           pic_yids[picpos] = yid;
1552           pic_width[picpos] = width;
1553           pic_height[picpos] = height;
1554           if(picpos<1024)
1555               picpos++;
1556       } else {
1557           swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1558                   x1,y1,x2,y2,x3,y3,x4,y4);
1559       }
1560       delete pic;
1561       delete imgStr;
1562       return;
1563   }
1564 }
1565
1566 void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
1567                                    int width, int height, GBool invert,
1568                                    GBool inlineImg) 
1569 {
1570   logf("<verbose> drawImageMask %dx%d, invert=%d inline=%d", width, height, invert, inlineImg);
1571   drawGeneralImage(state,ref,str,width,height,0,invert,inlineImg,1);
1572 }
1573
1574 void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
1575                          int width, int height, GfxImageColorMap *colorMap,
1576                          int *maskColors, GBool inlineImg)
1577 {
1578   logf("<verbose> drawImage %dx%d, %s %s, inline=%d", width, height, 
1579           colorMap?"colorMap":"no colorMap", 
1580           maskColors?"maskColors":"no maskColors",
1581           inlineImg);
1582   if(colorMap)
1583       logf("<verbose> colorMap pixcomps:%d bits:%d mode:%d\n", colorMap->getNumPixelComps(),
1584               colorMap->getBits(),colorMap->getColorSpace()->getMode());
1585   drawGeneralImage(state,ref,str,width,height,colorMap,0,inlineImg,0);
1586 }
1587
1588 SWFOutputDev*output = 0; 
1589
1590 static void printInfoString(Dict *infoDict, char *key, char *fmt) {
1591   Object obj;
1592   GString *s1, *s2;
1593   int i;
1594
1595   if (infoDict->lookup(key, &obj)->isString()) {
1596     s1 = obj.getString();
1597     if ((s1->getChar(0) & 0xff) == 0xfe &&
1598         (s1->getChar(1) & 0xff) == 0xff) {
1599       s2 = new GString();
1600       for (i = 2; i < obj.getString()->getLength(); i += 2) {
1601         if (s1->getChar(i) == '\0') {
1602           s2->append(s1->getChar(i+1));
1603         } else {
1604           delete s2;
1605           s2 = new GString("<unicode>");
1606           break;
1607         }
1608       }
1609       printf(fmt, s2->getCString());
1610       delete s2;
1611     } else {
1612       printf(fmt, s1->getCString());
1613     }
1614   }
1615   obj.free();
1616 }
1617
1618 static void printInfoDate(Dict *infoDict, char *key, char *fmt) {
1619   Object obj;
1620   char *s;
1621
1622   if (infoDict->lookup(key, &obj)->isString()) {
1623     s = obj.getString()->getCString();
1624     if (s[0] == 'D' && s[1] == ':') {
1625       s += 2;
1626     }
1627     printf(fmt, s);
1628   }
1629   obj.free();
1630 }
1631
1632 void pdfswf_init(char*filename, char*userPassword) 
1633 {
1634   GString *fileName = new GString(filename);
1635   GString *userPW;
1636   Object info;
1637
1638   // read config file
1639   globalParams = new GlobalParams("");
1640
1641   // open PDF file
1642   if (userPassword && userPassword[0]) {
1643     userPW = new GString(userPassword);
1644   } else {
1645     userPW = NULL;
1646   }
1647   doc = new PDFDoc(fileName, userPW);
1648   if (userPW) {
1649     delete userPW;
1650   }
1651   if (!doc->isOk()) {
1652     exit(1);
1653   }
1654
1655   // print doc info
1656   doc->getDocInfo(&info);
1657   if (info.isDict() &&
1658     (screenloglevel>=LOGLEVEL_NOTICE)) {
1659     printInfoString(info.getDict(), "Title",        "Title:        %s\n");
1660     printInfoString(info.getDict(), "Subject",      "Subject:      %s\n");
1661     printInfoString(info.getDict(), "Keywords",     "Keywords:     %s\n");
1662     printInfoString(info.getDict(), "Author",       "Author:       %s\n");
1663     printInfoString(info.getDict(), "Creator",      "Creator:      %s\n");
1664     printInfoString(info.getDict(), "Producer",     "Producer:     %s\n");
1665     printInfoDate(info.getDict(),   "CreationDate", "CreationDate: %s\n");
1666     printInfoDate(info.getDict(),   "ModDate",      "ModDate:      %s\n");
1667     printf("Pages:        %d\n", doc->getNumPages());
1668     printf("Linearized:   %s\n", doc->isLinearized() ? "yes" : "no");
1669     printf("Encrypted:    ");
1670     if (doc->isEncrypted()) {
1671       printf("yes (print:%s copy:%s change:%s addNotes:%s)\n",
1672              doc->okToPrint() ? "yes" : "no",
1673              doc->okToCopy() ? "yes" : "no",
1674              doc->okToChange() ? "yes" : "no",
1675              doc->okToAddNotes() ? "yes" : "no");
1676     } else {
1677       printf("no\n");
1678     }
1679   }
1680   info.free();
1681
1682   numpages = doc->getNumPages();
1683   if (doc->isEncrypted()) {
1684         /*ERROR: This pdf is encrypted, and disallows copying.
1685           Due to the DMCA, paragraph 1201, (2) A-C, circumventing
1686           a technological measure that efficively controls access to
1687           a protected work is violating American law. 
1688           See www.eff.org for more information about DMCA issues.
1689          */
1690         if(!doc->okToCopy()) {
1691             printf("PDF disallows copying. Bailing out.\n");
1692             exit(1); //bail out
1693         }
1694         if(!doc->okToChange() || !doc->okToAddNotes())
1695             swfoutput_setprotected();
1696   }
1697
1698   output = new SWFOutputDev();
1699   output->startDoc(doc->getXRef());
1700 }
1701
1702 void pdfswf_drawonlyshapes()
1703 {
1704     drawonlyshapes = 1;
1705 }
1706
1707 void pdfswf_ignoredraworder()
1708 {
1709     ignoredraworder = 1;
1710 }
1711
1712 void pdfswf_linksopennewwindow()
1713 {
1714     opennewwindow = 1;
1715 }
1716
1717 void pdfswf_storeallcharacters()
1718 {
1719     storeallcharacters = 1;
1720 }
1721
1722 void pdfswf_enablezlib()
1723 {
1724     enablezlib = 1;
1725 }
1726
1727 void pdfswf_jpegquality(int val)
1728 {
1729     if(val<0) val=0;
1730     if(val>100) val=100;
1731     jpegquality = val;
1732 }
1733
1734 void pdfswf_setoutputfilename(char*_filename)
1735 {
1736     swffilename = _filename;
1737 }
1738
1739
1740 void pdfswf_convertpage(int page)
1741 {
1742     if(!pages)
1743     {
1744         pages = (int*)malloc(1024*sizeof(int));
1745         pagebuflen = 1024;
1746     } else {
1747         if(pagepos == pagebuflen)
1748         {
1749             pagebuflen+=1024;
1750             pages = (int*)realloc(pages, pagebuflen);
1751         }
1752     }
1753     pages[pagepos++] = page;
1754 }
1755
1756 void pdfswf_performconversion()
1757 {
1758     int t;
1759     for(t=0;t<pagepos;t++)
1760     {
1761        currentpage = pages[t];
1762        doc->displayPage((OutputDev*)output, currentpage, /*dpi*/72, /*rotate*/0, /*doLinks*/(int)1);
1763     }
1764 }
1765
1766 int pdfswf_numpages()
1767 {
1768   return doc->getNumPages();
1769 }
1770
1771 void pdfswf_insertstop()
1772 {
1773     insertstoptag = 1;
1774 }
1775
1776 int closed=0;
1777 void pdfswf_close()
1778 {
1779     logf("<debug> pdfswf.cc: pdfswf_close()");
1780     delete output;
1781     delete doc;
1782     //freeParams();
1783     // check for memory leaks
1784     Object::memCheck(stderr);
1785     gMemReport(stderr);
1786 }
1787
1788