* added functions for setting options
[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.m21 = 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.m21 = 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.m21 = 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.m21 = 0; m.m22 = 1;
533     m.m21 = 0; m.m13 = 0; m.m23 = 0;
534     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
535     swfoutput_startclip(&output, outline, &m);
536     clipping[clippos] = 1;
537 }
538 void SWFOutputDev::eoClip(GfxState *state) 
539 {
540     logf("<debug> eoclip\n");
541     GfxPath * path = state->getPath();
542     struct swfmatrix m;
543     m.m11 = 1; m.m21 = 0; m.m22 = 1;
544     m.m21 = 0; m.m13 = 0; m.m23 = 0;
545     T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
546     swfoutput_startclip(&output, outline, &m);
547     clipping[clippos] = 1;
548 }
549
550 SWFOutputDev::~SWFOutputDev() 
551 {
552     swfoutput_destroy(&output);
553     outputstarted = 0;
554 };
555 GBool SWFOutputDev::upsideDown() 
556 {
557     logf("<debug> upsidedown?");
558     return gTrue;
559 };
560 GBool SWFOutputDev::useDrawChar() 
561 {
562     logf("<debug> usedrawchar?");
563     return gTrue;
564 }
565
566 void SWFOutputDev::beginString(GfxState *state, GString *s) 
567
568     double m11,m21,m12,m22;
569     logf("<debug> beginstring \"%s\"\n", s->getCString());
570     state->getFontTransMat(&m11, &m12, &m21, &m22);
571     m11 *= state->getHorizScaling();
572     m21 *= state->getHorizScaling();
573     swfoutput_setfontmatrix(&output, m11, -m12, m21, -m22);
574 }
575
576 int charcounter = 0;
577 void SWFOutputDev::drawChar(GfxState *state, double x, double y, double dx, double dy, Guchar c) 
578 {
579     logf("<debug> drawChar(%f,%f,%f,%f,'%c')\n",x,y,dx,dy,c);
580     // check for invisible text -- this is used by Acrobat Capture
581     if ((state->getRender() & 3) != 3)
582     {
583        FontEncoding*enc=state->getFont()->getEncoding();
584
585        double x1,y1;
586        x1 = x;
587        y1 = y;
588        state->transform(x, y, &x1, &y1);
589
590        swfoutput_drawchar(&output, x1, y1, enc->getCharName(c));
591     }
592 }
593
594 void SWFOutputDev::drawChar16(GfxState *state, double x, double y, double dx, double dy, int c) 
595 {
596     printf("<error> drawChar16(%f,%f,%f,%f,%08x)\n",x,y,dx,dy,c);
597     exit(1);
598 }
599
600 void SWFOutputDev::endString(GfxState *state) 
601
602     logf("<debug> endstring\n");
603 }    
604
605 void SWFOutputDev::startPage(int pageNum, GfxState *state) 
606 {
607   double x1,y1,x2,y2;
608   logf("<debug> startPage %d\n", pageNum);
609   logf("<notice> processing page %d", pageNum);
610   jpeginfo = 0;
611   pbminfo = 0;
612
613   state->transform(state->getX1(),state->getY1(),&x1,&y1);
614   state->transform(state->getX2(),state->getY2(),&x2,&y2);
615   if(!outputstarted) {
616     swfoutput_init(&output, swffilename, abs((int)(x2-x1)),abs((int)(y2-y1)));
617     outputstarted = 1;
618   }
619   else
620     swfoutput_newpage(&output);
621 }
622
623 void SWFOutputDev::drawLink(Link *link, Catalog *catalog) 
624 {
625   logf("<debug> drawlink\n");
626   double x1, y1, x2, y2, w;
627   GfxRGB rgb;
628   swfcoord points[5];
629   int x, y;
630
631   link->getBorder(&x1, &y1, &x2, &y2, &w);
632   if (w > 0) {
633     rgb.r = 0;
634     rgb.g = 0;
635     rgb.b = 1;
636     cvtUserToDev(x1, y1, &x, &y);
637     points[0].x = points[4].x = x;
638     points[0].y = points[4].y = y;
639     cvtUserToDev(x2, y1, &x, &y);
640     points[1].x = x;
641     points[1].y = y;
642     cvtUserToDev(x2, y2, &x, &y);
643     points[2].x = x;
644     points[2].y = y;
645     cvtUserToDev(x1, y2, &x, &y);
646     points[3].x = x;
647     points[3].y = y;
648     //PDF: draw rect
649     LinkAction*action=link->getAction();
650     char*s;
651     switch(action->getKind())
652     {
653         case actionGoTo: {
654             LinkGoTo*l = (LinkGoTo*)action;
655             s = l->getNamedDest()->getCString();
656         }
657         break;
658         case actionGoToR: {
659             LinkGoToR*l = (LinkGoToR*)action;
660             s = l->getNamedDest()->getCString();
661         }
662         break;
663         case actionLaunch: {
664             LinkLaunch*l = (LinkLaunch*)action;
665             GString * str = new GString(l->getFileName());
666             str->append(l->getParams());
667             s = str->getCString();
668         }
669         break;
670         case actionURI: {
671             LinkURI*l = (LinkURI*)action;
672             s = l->getURI()->getCString();
673         }
674         break;
675         case actionNamed: {
676             LinkNamed*l = (LinkNamed*)action;
677             s = l->getName()->getCString();
678         }
679         break;
680         case actionUnknown: {
681             LinkUnknown*l = (LinkUnknown*)action;
682             s = "";
683         }
684         break;
685     }
686     logf("<verbose> link to \"%s\"\n", s);
687   }
688 }
689
690 void SWFOutputDev::saveState(GfxState *state) {
691   logf("<debug> saveState\n");
692   updateAll(state);
693   clippos ++;
694   clipping[clippos] = 0;
695 };
696
697 void SWFOutputDev::restoreState(GfxState *state) {
698   logf("<debug> restoreState\n");
699   updateAll(state);
700   if(clipping[clippos])
701       swfoutput_endclip(&output);
702   clippos--;
703 }
704
705 char type3Warning=0;
706
707 int SWFOutputDev::setT1Font(char*name, FontEncoding*encoding) 
708 {       
709     int i;
710     
711     int id=-1;
712     int mapid=-1;
713     char*filename=0;
714     for(i=0;i<sizeof(pdf2t1map)/sizeof(mapping);i++) 
715     {
716         if(!strcmp(name, pdf2t1map[i].pdffont))
717         {
718             filename = pdf2t1map[i].filename;
719             mapid = i;
720         }
721     }
722     if(filename)
723     for(i=0; i<T1_Get_no_fonts(); i++)
724     {
725         char*fontfilename = T1_GetFontFileName (i);
726         if(strstr(fontfilename, filename))
727         {
728                 id = i;
729                 pdf2t1map[i].id = mapid;
730         }
731     }
732     if(id<0)
733      return 0;
734
735     this->t1id = id;
736 }
737
738 void SWFOutputDev::updateLineWidth(GfxState *state)
739 {
740     double width = state->getLineWidth();
741     swfoutput_setlinewidth(&output, width);
742 }
743
744 void SWFOutputDev::updateFillColor(GfxState *state) 
745 {
746     GfxRGB rgb;
747     double opaq = state->getFillOpacity();
748     state->getFillRGB(&rgb);
749
750     swfoutput_setfillcolor(&output, (char)(rgb.r*255), (char)(rgb.g*255), 
751                                     (char)(rgb.b*255), (char)(opaq*255));
752 }
753
754 void SWFOutputDev::updateStrokeColor(GfxState *state) 
755 {
756     GfxRGB rgb;
757     double opaq = state->getStrokeOpacity();
758     state->getStrokeRGB(&rgb);
759
760     swfoutput_setstrokecolor(&output, (char)(rgb.r*255), (char)(rgb.g*255), 
761                                       (char)(rgb.b*255), (char)(opaq*255));
762 }
763
764 char*writeEmbeddedFontToFile(GfxFont*font)
765 {
766       char*tmpFileName = NULL;
767       char*fileName = NULL;
768       FILE *f;
769       int c;
770       char *fontBuf;
771       int fontLen;
772       Type1CFontConverter *cvt;
773       Ref embRef;
774       Object refObj, strObj;
775       tmpFileName = "/tmp/tmpfont";
776       font->getEmbeddedFontID(&embRef);
777
778       f = fopen(tmpFileName, "wb");
779       if (!f) {
780         logf("<error> Couldn't create temporary Type 1 font file");
781         return 0;
782       }
783       if (font->getType() == fontType1C) {
784         if (!(fontBuf = font->readEmbFontFile(&fontLen))) {
785           fclose(f);
786           logf("<error> Couldn't read embedded font file");
787           return 0;
788         }
789         cvt = new Type1CFontConverter(fontBuf, fontLen, f);
790         cvt->convert();
791         delete cvt;
792         gfree(fontBuf);
793       } else {
794         font->getEmbeddedFontID(&embRef);
795         refObj.initRef(embRef.num, embRef.gen);
796         refObj.fetch(&strObj);
797         refObj.free();
798         strObj.streamReset();
799         while ((c = strObj.streamGetChar()) != EOF) {
800           fputc(c, f);
801         }
802         strObj.streamClose();
803         strObj.free();
804       }
805       fclose(f);
806       fileName = tmpFileName;
807       if(!fileName) {
808           logf("<error> Embedded font writer didn't create a file");
809           return 0;
810       }
811       return fileName;
812 }
813
814 char* gfxFontName(GfxFont* gfxFont)
815 {
816       GString *gstr;
817       gstr = gfxFont->getName();
818       if(gstr) {
819           return gstr->getCString();
820       }
821       else {
822           char buf[32];
823           Ref r=gfxFont->getID();
824           sprintf(buf, "UFONT%d", r.num);
825           return strdup(buf);
826       }
827 }
828
829 void SWFOutputDev::updateFont(GfxState *state) 
830 {
831   double m11, m12, m21, m22;
832   char * fontname = 0;
833   GfxFont*gfxFont = state->getFont();
834   char * fileName = 0;
835
836   if (!gfxFont) {
837     return;
838   }  
839
840   if(swfoutput_queryfont(&output, gfxFontName(gfxFont)))
841   {
842       swfoutput_setfont(&output, gfxFontName(gfxFont), -1, 0);
843       return;
844   }
845
846   // look for Type 3 font
847   if (!type3Warning && gfxFont->getType() == fontType3) {
848     type3Warning = gTrue;
849     showFontError(gfxFont, 2);
850   }
851   //dumpFontInfo ("<notice>", gfxFont);
852
853   Ref embRef;
854   GBool embedded = gfxFont->getEmbeddedFontID(&embRef);
855   if(embedded) {
856     if (!gfxFont->is16Bit() &&
857         (gfxFont->getType() == fontType1 ||
858          gfxFont->getType() == fontType1C)) {
859         
860         fileName = writeEmbeddedFontToFile(gfxFont);
861         if(!fileName)
862           return ;
863     }
864     else {
865         showFontError(gfxFont,0);
866         return ;
867     }
868     
869     t1id = T1_AddFont(fileName);
870   } else {
871     fontname = NULL;
872     if(gfxFont->getName()) {
873       fontname = gfxFont->getName()->getCString();
874       //logf("<notice> Processing font %s", fontname);
875     }
876     if(!fontname || !setT1Font(state->getFont()->getName()->getCString(), gfxFont->getEncoding()))
877     { //substitute font
878       int index;
879       int code;
880       double w,w1,w2;
881       double*fm;
882       double v;
883       showFontError(gfxFont, 1);
884       if (!gfxFont->is16Bit()) {
885         if (gfxFont->isFixedWidth()) {
886           index = 8;
887         } else if (gfxFont->isSerif()) {
888           index = 4;
889         } else {
890           index = 0;
891         }
892         if (gfxFont->isBold())
893           index += 2;
894         if (gfxFont->isItalic())
895           index += 1;
896         fontname = fontnames[index];
897         // get width of 'm' in real font and substituted font
898         if ((code = gfxFont->getCharCode("m")) >= 0)
899           w1 = gfxFont->getWidth(code);
900         else
901           w1 = 0;
902         w2 = fontsizes[index];
903         if (gfxFont->getType() == fontType3) {
904           // This is a hack which makes it possible to substitute for some
905           // Type 3 fonts.  The problem is that it's impossible to know what
906           // the base coordinate system used in the font is without actually
907           // rendering the font.  This code tries to guess by looking at the
908           // width of the character 'm' (which breaks if the font is a
909           // subset that doesn't contain 'm').
910           if (w1 > 0 && (w1 > 1.1 * w2 || w1 < 0.9 * w2)) {
911             w1 /= w2;
912             m11 *= w1;
913             m12 *= w1;
914             m21 *= w1;
915             m22 *= w1;
916           }
917           fm = gfxFont->getFontMatrix();
918           v = (fm[0] == 0) ? 1 : (fm[3] / fm[0]);
919           m21 *= v;
920           m22 *= v;
921         } else if (!gfxFont->isSymbolic()) {
922           // if real font is substantially narrower than substituted
923           // font, reduce the font size accordingly
924           if (w1 > 0.01 && w1 < 0.9 * w2) {
925             w1 /= w2;
926             if (w1 < 0.8) {
927               w1 = 0.8;
928             }
929             m11 *= w1;
930             m12 *= w1;
931             m21 *= w1;
932             m22 *= w1;
933           }
934         }
935       }
936       if(fontname)
937         setT1Font(fontname, gfxFont->getEncoding());
938     }
939   }
940
941   swfoutput_setfont(&output,gfxFontName(gfxFont),t1id, fileName);
942   if(fileName)
943       unlink(fileName);
944 }
945
946 void SWFOutputDev::drawGeneralImage(GfxState *state, Object *ref, Stream *str,
947                                    int width, int height, GfxImageColorMap*colorMap, GBool invert,
948                                    GBool inlineImg, int mask)
949 {
950   FILE *fi;
951   int c;
952   char fileName[128];
953   double x1,y1,x2,y2,x3,y3,x4,y4;
954   state->transform(0, 1, &x1, &y1);
955   state->transform(0, 0, &x2, &y2);
956   state->transform(1, 0, &x3, &y3);
957   state->transform(1, 1, &x4, &y4);
958
959   if (str->getKind() == strDCT &&
960       (colorMap->getNumPixelComps() == 3 || !mask) )
961   {
962     sprintf(fileName, "/tmp/tmp%08x.jpg",lrand48());
963     logf("<verbose> Found jpeg. Temporary storage is %s", fileName);
964     if(!jpeginfo)
965     {
966         logf("<notice> Page contains jpeg pictures");
967         jpeginfo = 1;
968     }
969     if (!(fi = fopen(fileName, "wb"))) {
970       logf("<error> Couldn't open temporary image file '%s'", fileName);
971       return;
972     }
973     str = ((DCTStream *)str)->getRawStream();
974     str->reset();
975     while ((c = str->getChar()) != EOF)
976       fputc(c, fi);
977     fclose(fi);
978     swfoutput_drawimagefile(&output, fileName, width, height, x1,y1,x2,y2,x3,y3,x4,y4);
979     unlink(fileName);
980   } else {
981       if(!pbminfo)
982       {
983           logf("<notice> Page contains pbm pictures");
984           pbminfo = 1;
985       }
986   }
987 }
988
989 void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
990                                    int width, int height, GBool invert,
991                                    GBool inlineImg) 
992 {
993   drawGeneralImage(state,ref,str,width,height,0,invert,inlineImg,1);
994 }
995
996 void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
997                                int width, int height,
998                                GfxImageColorMap *colorMap, GBool inlineImg) 
999 {
1000   drawGeneralImage(state,ref,str,width,height,colorMap,0,inlineImg,0);
1001 }
1002
1003 PDFDoc*doc = 0;
1004 SWFOutputDev*output = 0; 
1005
1006 void pdfswf_init(char*filename, char*userPassword) 
1007 {
1008   GString *fileName = new GString(filename);
1009   GString *userPW;
1010   Object info;
1011   // init error file
1012   errorInit();
1013
1014   // read config file
1015   initParams(xpdfConfigFile);
1016
1017   // open PDF file
1018   xref = NULL;
1019   if (userPassword && userPassword[0]) {
1020     userPW = new GString(userPassword);
1021   } else {
1022     userPW = NULL;
1023   }
1024   doc = new PDFDoc(fileName, userPW);
1025   if (userPW) {
1026     delete userPW;
1027   }
1028   if (!doc->isOk()) {
1029     exit(1);
1030   }
1031
1032   // print doc info
1033   doc->getDocInfo(&info);
1034   if (info.isDict()) {
1035     printInfoString(info.getDict(), "Title",        "Title:        %s\n");
1036     printInfoString(info.getDict(), "Subject",      "Subject:      %s\n");
1037     printInfoString(info.getDict(), "Keywords",     "Keywords:     %s\n");
1038     printInfoString(info.getDict(), "Author",       "Author:       %s\n");
1039     printInfoString(info.getDict(), "Creator",      "Creator:      %s\n");
1040     printInfoString(info.getDict(), "Producer",     "Producer:     %s\n");
1041     printInfoDate(info.getDict(),   "CreationDate", "CreationDate: %s\n");
1042     printInfoDate(info.getDict(),   "ModDate",      "ModDate:      %s\n");
1043   }
1044   info.free();
1045
1046   // print page count
1047   printf("Pages:        %d\n", doc->getNumPages());
1048   
1049   // print linearization info
1050   printf("Linearized:   %s\n", doc->isLinearized() ? "yes" : "no");
1051
1052   // print encryption info
1053   printf("Encrypted:    ");
1054   if (doc->isEncrypted()) {
1055     printf("yes (print:%s copy:%s change:%s addNotes:%s)\n",
1056            doc->okToPrint() ? "yes" : "no",
1057            doc->okToCopy() ? "yes" : "no",
1058            doc->okToChange() ? "yes" : "no",
1059            doc->okToAddNotes() ? "yes" : "no");
1060         /*ERROR: This pdf is encrypted, and disallows copying.
1061           Due to the DMCA, paragraph 1201, (2) A-C, circumventing
1062           a technological measure that efficively controls access to
1063           a protected work is violating American law. 
1064           See www.eff.org for more information about DMCA issues.
1065          */
1066         if(!doc->okToCopy()) {
1067             printf("PDF disallows copying. Bailing out.\n");
1068             exit(1); //bail out
1069         }
1070         if(!doc->okToChange() || !doc->okToAddNotes())
1071             swfoutput_setprotected();
1072     }
1073   else {
1074     printf("no\n");
1075   }
1076
1077
1078   output = new SWFOutputDev();
1079 }
1080
1081 void pdfswf_drawonlyshapes()
1082 {
1083     drawonlyshapes = 1;
1084 }
1085
1086 void pdfswf_ignoredraworder()
1087 {
1088     ignoredraworder = 1;
1089 }
1090
1091 void pdfswf_jpegquality(int val)
1092 {
1093     if(val<0) val=0;
1094     if(val>100) val=100;
1095     jpegquality = val;
1096 }
1097
1098 void pdfswf_setoutputfilename(char*_filename)
1099 {
1100     swffilename = _filename;
1101 }
1102
1103 void pdfswf_convertpage(int page)
1104 {
1105     doc->displayPage((OutputDev*)output, page, /*zoom*/100, /*rotate*/0, /*doLinks*/(int)1);
1106 }
1107
1108 int pdfswf_numpages()
1109 {
1110   return doc->getNumPages();
1111 }
1112
1113 int closed=0;
1114 void pdfswf_close()
1115 {
1116     logf("<debug> pdfswf.cc: pdfswf_close()");
1117     delete output;
1118     delete doc;
1119     freeParams();
1120     // check for memory leaks
1121     Object::memCheck(stderr);
1122     gMemReport(stderr);
1123 }
1124