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