implement picture cache, so pictures that are referenced multiple
[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("<warning> The following font caused problems:");
359     else if(nr == 1)
360       logf("<warning> The following font caused problems (substituting):");
361     else if(nr == 2)
362       logf("<warning> This document contains Type 3 Fonts: (some text may be incorrectly displayed)");
363
364     dumpFontInfo("<warning>", 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     jpeginfo = 0;
426     pbminfo = 0;
427     clippos = 0;
428     clipping[clippos] = 0;
429     outputstarted = 0;
430 //    printf("SWFOutputDev::SWFOutputDev() \n");
431 };
432
433 T1_OUTLINE* gfxPath_to_T1_OUTLINE(GfxState*state, GfxPath*path)
434 {
435     int num = path->getNumSubpaths();
436     int s,t;
437     bezierpathsegment*start,*last;
438     bezierpathsegment*outline = start = new bezierpathsegment();
439     int cpos = 0;
440     double lastx=0,lasty=0;
441     for(t = 0; t < num; t++) {
442         GfxSubpath *subpath = path->getSubpath(t);
443         int subnum = subpath->getNumPoints();
444
445         for(s=0;s<subnum;s++) {
446            double nx,ny;
447            state->transform(subpath->getX(s),subpath->getY(s),&nx,&ny);
448            int x = (int)((nx-lastx)*0xffff);
449            int y = (int)((ny-lasty)*0xffff);
450            if(s==0) 
451            {
452                 last = outline;
453                 outline->type = T1_PATHTYPE_MOVE;
454                 outline->dest.x = x;
455                 outline->dest.y = y;
456                 outline->link = (T1_OUTLINE*)new bezierpathsegment();
457                 outline = (bezierpathsegment*)outline->link;
458                 cpos = 0;
459                 lastx = nx;
460                 lasty = ny;
461            }
462            else if(subpath->getCurve(s) && !cpos)
463            {
464                 outline->B.x = x;
465                 outline->B.y = y;
466                 cpos = 1;
467            } 
468            else if(subpath->getCurve(s) && cpos)
469            {
470                 outline->C.x = x;
471                 outline->C.y = y;
472                 cpos = 2;
473            }
474            else
475            {
476                 last = outline;
477                 outline->dest.x = x;
478                 outline->dest.y = y;
479                 outline->type = cpos?T1_PATHTYPE_BEZIER:T1_PATHTYPE_LINE;
480                 outline->link = 0;
481                 outline->link = (T1_OUTLINE*)new bezierpathsegment();
482                 outline = (bezierpathsegment*)outline->link;
483                 cpos = 0;
484                 lastx = nx;
485                 lasty = ny;
486            }
487         }
488     }
489     last->link = 0;
490     return (T1_OUTLINE*)start;
491 }
492 /*----------------------------------------------------------------------------
493  * Primitive Graphic routines
494  *----------------------------------------------------------------------------*/
495
496 void SWFOutputDev::stroke(GfxState *state) 
497 {
498     logf("<debug> stroke\n");
499     GfxPath * path = state->getPath();
500     struct swfmatrix m;
501     m.m11 = 1; m.m21 = 0; m.m22 = 1;
502     m.m12 = 0; m.m13 = 0; m.m23 = 0;
503     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
504     swfoutput_setdrawmode(&output, DRAWMODE_STROKE);
505     swfoutput_drawpath(&output, outline, &m);
506 }
507 void SWFOutputDev::fill(GfxState *state) 
508 {
509     logf("<debug> fill\n");
510     GfxPath * path = state->getPath();
511     struct swfmatrix m;
512     m.m11 = 1; m.m21 = 0; m.m22 = 1;
513     m.m12 = 0; m.m13 = 0; m.m23 = 0;
514     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
515     swfoutput_setdrawmode(&output, DRAWMODE_FILL);
516     swfoutput_drawpath(&output, outline, &m);
517 }
518 void SWFOutputDev::eoFill(GfxState *state) 
519 {
520     logf("<debug> eofill\n");
521     GfxPath * path = state->getPath();
522     struct swfmatrix m;
523     m.m11 = 1; m.m21 = 0; m.m22 = 1;
524     m.m12 = 0; m.m13 = 0; m.m23 = 0;
525     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
526     swfoutput_setdrawmode(&output, DRAWMODE_EOFILL);
527     swfoutput_drawpath(&output, outline, &m);
528 }
529 void SWFOutputDev::clip(GfxState *state) 
530 {
531     logf("<debug> clip\n");
532     GfxPath * path = state->getPath();
533     struct swfmatrix m;
534     m.m11 = 1; m.m22 = 1;
535     m.m12 = 0; m.m21 = 0; 
536     m.m13 = 0; m.m23 = 0;
537     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
538     swfoutput_startclip(&output, outline, &m);
539     clipping[clippos] = 1;
540 }
541 void SWFOutputDev::eoClip(GfxState *state) 
542 {
543     logf("<debug> eoclip\n");
544     GfxPath * path = state->getPath();
545     struct swfmatrix m;
546     m.m11 = 1; m.m21 = 0; m.m22 = 1;
547     m.m12 = 0; m.m13 = 0; m.m23 = 0;
548     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
549     swfoutput_startclip(&output, outline, &m);
550     clipping[clippos] = 1;
551 }
552
553 SWFOutputDev::~SWFOutputDev() 
554 {
555     swfoutput_destroy(&output);
556     outputstarted = 0;
557 };
558 GBool SWFOutputDev::upsideDown() 
559 {
560     logf("<debug> upsidedown?");
561     return gTrue;
562 };
563 GBool SWFOutputDev::useDrawChar() 
564 {
565     logf("<debug> usedrawchar?");
566     return gTrue;
567 }
568
569 void SWFOutputDev::beginString(GfxState *state, GString *s) 
570
571     double m11,m21,m12,m22;
572     logf("<debug> beginstring \"%s\"\n", s->getCString());
573     state->getFontTransMat(&m11, &m12, &m21, &m22);
574     m11 *= state->getHorizScaling();
575     m21 *= state->getHorizScaling();
576     swfoutput_setfontmatrix(&output, m11, -m12, m21, -m22);
577 }
578
579 int charcounter = 0;
580 void SWFOutputDev::drawChar(GfxState *state, double x, double y, double dx, double dy, Guchar c) 
581 {
582     logf("<debug> drawChar(%f,%f,%f,%f,'%c')\n",x,y,dx,dy,c);
583     // check for invisible text -- this is used by Acrobat Capture
584     if ((state->getRender() & 3) != 3)
585     {
586        FontEncoding*enc=state->getFont()->getEncoding();
587
588        double x1,y1;
589        x1 = x;
590        y1 = y;
591        state->transform(x, y, &x1, &y1);
592
593        swfoutput_drawchar(&output, x1, y1, enc->getCharName(c));
594     }
595 }
596
597 void SWFOutputDev::drawChar16(GfxState *state, double x, double y, double dx, double dy, int c) 
598 {
599     printf("<error> drawChar16(%f,%f,%f,%f,%08x)\n",x,y,dx,dy,c);
600     exit(1);
601 }
602
603 void SWFOutputDev::endString(GfxState *state) 
604
605     logf("<debug> endstring\n");
606 }    
607
608 void SWFOutputDev::startPage(int pageNum, GfxState *state) 
609 {
610   double x1,y1,x2,y2;
611   logf("<debug> startPage %d\n", pageNum);
612   logf("<notice> processing page %d", pageNum);
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 int pic_xids[1024];
948 int pic_yids[1024];
949 int pic_ids[1024];
950 int picpos = 0;
951 int pic_id = 0;
952
953 void SWFOutputDev::drawGeneralImage(GfxState *state, Object *ref, Stream *str,
954                                    int width, int height, GfxImageColorMap*colorMap, GBool invert,
955                                    GBool inlineImg, int mask)
956 {
957   FILE *fi;
958   int c;
959   char fileName[128];
960   double x1,y1,x2,y2,x3,y3,x4,y4;
961   ImageStream *imgStr;
962   Guchar pixBuf[4];
963   GfxRGB rgb;
964   if(!width || !height)
965       return;
966   
967   state->transform(0, 1, &x1, &y1);
968   state->transform(0, 0, &x2, &y2);
969   state->transform(1, 0, &x3, &y3);
970   state->transform(1, 1, &x4, &y4);
971
972   if (str->getKind() == strDCT &&
973       (colorMap->getNumPixelComps() == 3 || !mask) )
974   {
975     sprintf(fileName, "/tmp/tmp%08x.jpg",lrand48());
976     logf("<verbose> Found jpeg. Temporary storage is %s", fileName);
977     if(!jpeginfo)
978     {
979         logf("<notice> file contains jpeg pictures");
980         jpeginfo = 1;
981     }
982     if (!(fi = fopen(fileName, "wb"))) {
983       logf("<error> Couldn't open temporary image file '%s'", fileName);
984       return;
985     }
986     str = ((DCTStream *)str)->getRawStream();
987     str->reset();
988     int xid = 0;
989     int yid = 0;
990     int count = 0;
991     while ((c = str->getChar()) != EOF)
992     {
993       fputc(c, fi);
994       xid += count*c;
995       yid += (~count)*c;
996       count++;
997     }
998     fclose(fi);
999     
1000     int t,found = -1;
1001     for(t=0;t<picpos;t++)
1002     {
1003         if(pic_xids[t] == xid &&
1004            pic_yids[t] == yid) {
1005             found = t;break;
1006         }
1007     }
1008     if(found<0) {
1009         pic_ids[picpos] = swfoutput_drawimagejpeg(&output, fileName, width, height, 
1010                 x1,y1,x2,y2,x3,y3,x4,y4);
1011         pic_xids[picpos] = xid;
1012         pic_yids[picpos] = yid;
1013         if(picpos<1024)
1014             picpos++;
1015     } else {
1016         swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1017                 x1,y1,x2,y2,x3,y3,x4,y4);
1018     }
1019     unlink(fileName);
1020   } else {
1021
1022     if(!pbminfo) {
1023         logf("<notice> file contains pbm pictures %s",mask?"(masked)":"");
1024         if(mask)
1025         logf("<verbose> ignoring %d by %d masked picture\n", width, height);
1026         pbminfo = 1;
1027     }
1028
1029     if(mask) {
1030         str->reset();
1031         int yes=0;
1032         while ((c = str->getChar()) != EOF)
1033         {
1034             if((c<32 || c>'z') && yes && (c!=13) && (c!=10)) {
1035                 printf("no ascii: %02x\n", c);
1036                 yes = 1;
1037            }
1038         }
1039     } else {
1040         int x,y;
1041         int width2 = (width+3)&(~3);
1042         imgStr = new ImageStream(str, width, colorMap->getNumPixelComps(),
1043                                  colorMap->getBits());
1044         imgStr->reset();
1045
1046         if(colorMap->getNumPixelComps()!=1)
1047         {
1048             RGBA*pic=new RGBA[width*height];
1049             int xid = 0;
1050             int yid = 0;
1051             for (y = 0; y < height; ++y) {
1052               for (x = 0; x < width; ++x) {
1053                 int r,g,b,a;
1054                 imgStr->getPixel(pixBuf);
1055                 colorMap->getRGB(pixBuf, &rgb);
1056                 pic[width*y+x].r = r = (U8)(rgb.r * 255 + 0.5);
1057                 pic[width*y+x].g = g = (U8)(rgb.g * 255 + 0.5);
1058                 pic[width*y+x].b = b = (U8)(rgb.b * 255 + 0.5);
1059                 pic[width*y+x].a = a = 255;//(U8)(rgb.a * 255 + 0.5);
1060                 xid += x*r+x*b*3+x*g*7+x*a*11;
1061                 yid += y*r*3+y*b*17+y*g*19+y*a*11;
1062               }
1063             }
1064             int t,found = -1;
1065             for(t=0;t<picpos;t++)
1066             {
1067                 if(pic_xids[t] == xid &&
1068                    pic_yids[t] == yid) {
1069                     found = t;break;
1070                 }
1071             }
1072             if(found<0) {
1073                 pic_ids[picpos] = swfoutput_drawimagelossless(&output, pic, width, height, 
1074                         x1,y1,x2,y2,x3,y3,x4,y4);
1075                 pic_xids[picpos] = xid;
1076                 pic_yids[picpos] = yid;
1077                 if(picpos<1024)
1078                     picpos++;
1079             } else {
1080                 swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1081                         x1,y1,x2,y2,x3,y3,x4,y4);
1082             }
1083             delete pic;
1084         }
1085         else
1086         {
1087             U8*pic = new U8[width2*height];
1088             RGBA pal[256];
1089             int t;
1090             int xid=0,yid=0;
1091             for(t=0;t<256;t++)
1092             {
1093                 int r,g,b,a;
1094                 pixBuf[0] = t;
1095                 colorMap->getRGB(pixBuf, &rgb);
1096                 pal[t].r = r = (U8)(rgb.r * 255 + 0.5);
1097                 pal[t].g = g = (U8)(rgb.g * 255 + 0.5);
1098                 pal[t].b = b = (U8)(rgb.b * 255 + 0.5);
1099                 pal[t].a = a = 255;//(U8)(rgb.b * 255 + 0.5);
1100                 xid += t*r+t*b*3+t*g*7+t*a*11;
1101                 xid += (~t)*r+t*b*3+t*g*7+t*a*11;
1102             }
1103             for (y = 0; y < height; ++y) {
1104               for (x = 0; x < width; ++x) {
1105                 imgStr->getPixel(pixBuf);
1106                 pic[width2*y+x] = pixBuf[0];
1107                 xid += x*pixBuf[0]*7;
1108                 yid += y*pixBuf[0]*3;
1109               }
1110             }
1111             int found = -1;
1112             for(t=0;t<picpos;t++)
1113             {
1114                 if(pic_xids[t] == xid &&
1115                    pic_yids[t] == yid) {
1116                     found = t;break;
1117                 }
1118             }
1119             if(found<0) {
1120                 pic_ids[picpos] = swfoutput_drawimagelossless256(&output, pic, pal, width, height, 
1121                         x1,y1,x2,y2,x3,y3,x4,y4);
1122                 pic_xids[picpos] = xid;
1123                 pic_yids[picpos] = yid;
1124                 if(picpos<1024)
1125                     picpos++;
1126             } else {
1127                 swfoutput_drawimageagain(&output, pic_ids[found], width, height,
1128                         x1,y1,x2,y2,x3,y3,x4,y4);
1129             }
1130             delete pic;
1131         }
1132         delete imgStr;
1133     }
1134
1135   }
1136 }
1137
1138 void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
1139                                    int width, int height, GBool invert,
1140                                    GBool inlineImg) 
1141 {
1142   drawGeneralImage(state,ref,str,width,height,0,invert,inlineImg,1);
1143 }
1144
1145 void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
1146                                int width, int height,
1147                                GfxImageColorMap *colorMap, GBool inlineImg) 
1148 {
1149   drawGeneralImage(state,ref,str,width,height,colorMap,0,inlineImg,0);
1150 }
1151
1152 PDFDoc*doc = 0;
1153 SWFOutputDev*output = 0; 
1154
1155 void pdfswf_init(char*filename, char*userPassword) 
1156 {
1157   GString *fileName = new GString(filename);
1158   GString *userPW;
1159   Object info;
1160   // init error file
1161   errorInit();
1162
1163   // read config file
1164   initParams(xpdfConfigFile);
1165
1166   // open PDF file
1167   xref = NULL;
1168   if (userPassword && userPassword[0]) {
1169     userPW = new GString(userPassword);
1170   } else {
1171     userPW = NULL;
1172   }
1173   doc = new PDFDoc(fileName, userPW);
1174   if (userPW) {
1175     delete userPW;
1176   }
1177   if (!doc->isOk()) {
1178     exit(1);
1179   }
1180
1181   // print doc info
1182   doc->getDocInfo(&info);
1183   if (info.isDict()) {
1184     printInfoString(info.getDict(), "Title",        "Title:        %s\n");
1185     printInfoString(info.getDict(), "Subject",      "Subject:      %s\n");
1186     printInfoString(info.getDict(), "Keywords",     "Keywords:     %s\n");
1187     printInfoString(info.getDict(), "Author",       "Author:       %s\n");
1188     printInfoString(info.getDict(), "Creator",      "Creator:      %s\n");
1189     printInfoString(info.getDict(), "Producer",     "Producer:     %s\n");
1190     printInfoDate(info.getDict(),   "CreationDate", "CreationDate: %s\n");
1191     printInfoDate(info.getDict(),   "ModDate",      "ModDate:      %s\n");
1192   }
1193   info.free();
1194
1195   // print page count
1196   printf("Pages:        %d\n", doc->getNumPages());
1197   
1198   // print linearization info
1199   printf("Linearized:   %s\n", doc->isLinearized() ? "yes" : "no");
1200
1201   // print encryption info
1202   printf("Encrypted:    ");
1203   if (doc->isEncrypted()) {
1204     printf("yes (print:%s copy:%s change:%s addNotes:%s)\n",
1205            doc->okToPrint() ? "yes" : "no",
1206            doc->okToCopy() ? "yes" : "no",
1207            doc->okToChange() ? "yes" : "no",
1208            doc->okToAddNotes() ? "yes" : "no");
1209         /*ERROR: This pdf is encrypted, and disallows copying.
1210           Due to the DMCA, paragraph 1201, (2) A-C, circumventing
1211           a technological measure that efficively controls access to
1212           a protected work is violating American law. 
1213           See www.eff.org for more information about DMCA issues.
1214          */
1215         if(!doc->okToCopy()) {
1216             printf("PDF disallows copying. Bailing out.\n");
1217             exit(1); //bail out
1218         }
1219         if(!doc->okToChange() || !doc->okToAddNotes())
1220             swfoutput_setprotected();
1221     }
1222   else {
1223     printf("no\n");
1224   }
1225
1226
1227   output = new SWFOutputDev();
1228 }
1229
1230 void pdfswf_drawonlyshapes()
1231 {
1232     drawonlyshapes = 1;
1233 }
1234
1235 void pdfswf_ignoredraworder()
1236 {
1237     ignoredraworder = 1;
1238 }
1239
1240 void pdfswf_jpegquality(int val)
1241 {
1242     if(val<0) val=0;
1243     if(val>100) val=100;
1244     jpegquality = val;
1245 }
1246
1247 void pdfswf_setoutputfilename(char*_filename)
1248 {
1249     swffilename = _filename;
1250 }
1251
1252 void pdfswf_convertpage(int page)
1253 {
1254     doc->displayPage((OutputDev*)output, page, /*zoom*/100, /*rotate*/0, /*doLinks*/(int)1);
1255 }
1256
1257 int pdfswf_numpages()
1258 {
1259   return doc->getNumPages();
1260 }
1261
1262 int closed=0;
1263 void pdfswf_close()
1264 {
1265     logf("<debug> pdfswf.cc: pdfswf_close()");
1266     delete output;
1267     delete doc;
1268     freeParams();
1269     // check for memory leaks
1270     Object::memCheck(stderr);
1271     gMemReport(stderr);
1272 }
1273