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