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