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