added some comments
[swftools.git] / pdf2swf / swfoutput.cc
1 /* swfoutput.cc
2    Implements generation of swf files using the rfxswf lib. The routines
3    in this file are called from pdf2swf.
4
5    This file is part of swftools.
6
7    Swftools is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    Swftools is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with swftools; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
20
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include "../config.h"
25 #include <fcntl.h>
26 #include <unistd.h>
27 #ifdef HAVE_ASSERT_H
28 #include <assert.h>
29 #else
30 #define assert(a)
31 #endif
32 #include <math.h>
33 #include "swfoutput.h"
34 #include "spline.h"
35 extern "C" {
36 #include "../lib/log.h"
37 #include "../lib/rfxswf.h"
38 #include "../lib/gfxdevice.h"
39 #include "../lib/gfxtools.h"
40 }
41 #include "../lib/art/libart.h"
42
43 #define CHARDATAMAX 8192
44 #define CHARMIDX 0
45 #define CHARMIDY 0
46
47 typedef struct _chardata {
48     int charid;
49     int fontid; /* TODO: use a SWFFONT instead */
50     int x;
51     int y;
52     int size;
53     RGBA color;
54 } chardata_t;
55
56 struct fontlist_t 
57 {
58     SWFFONT *swffont;
59     fontlist_t*next;
60 };
61
62 double config_ppmsubpixels=0;
63 double config_jpegsubpixels=0;
64 int config_opennewwindow=0;
65 int config_ignoredraworder=0;
66 int config_drawonlyshapes=0;
67 int config_jpegquality=85;
68 int config_storeallcharacters=0;
69 int config_enablezlib=0;
70 int config_insertstoptag=0;
71 int config_flashversion=5;
72 int config_splinemaxerror=1;
73 int config_fontsplinemaxerror=1;
74 int config_filloverlap=0;
75 int config_protect=0;
76 float config_minlinewidth=0.05;
77 double config_caplinewidth=1;
78
79 typedef struct _swfoutput_internal
80 {
81     swfoutput*obj; // the swfoutput object where this internal struct resides
82
83     SWF swf;
84
85     fontlist_t* fontlist;
86
87     char storefont;
88
89     MATRIX page_matrix;
90
91     TAG *tag;
92     int currentswfid;
93     int depth;
94     int startdepth;
95     int linewidth;
96     
97     SHAPE* shape;
98     int shapeid;
99     int textid;
100     
101     int fillstyleid;
102     int linestyleid;
103     int swflastx;
104     int swflasty;
105     int lastwasfill;
106     int shapeisempty;
107     char fill;
108     int min_x,max_x;
109     int min_y,max_y;
110     TAG* cliptags[128];
111     int clipshapes[128];
112     U32 clipdepths[128];
113     int clippos;
114
115     /* image cache */
116     int pic_xids[1024];
117     int pic_yids[1024];
118     int pic_ids[1024];
119     int pic_width[1024];
120     int pic_height[1024];
121     int picpos;
122
123     int frameno;
124     int lastframeno;
125     
126     char fillstylechanged;
127
128     int jpeg; //next image type
129     
130     int bboxrectpos;
131     SRECT bboxrect;
132
133     TAG*cliptag;
134  
135     chardata_t chardata[CHARDATAMAX];
136     int chardatapos;
137     int firstpage;
138     char pagefinished;
139
140     /* during the transition to the gfxdevice interface:
141        a device which uses this swfoutput as target */
142     gfxdevice_t device;
143
144 } swfoutput_internal;
145     
146 void swf_fillbitmap(gfxdevice_t*driver, gfxline_t*line, gfximage_t*img, gfxmatrix_t*move, gfxcxform_t*cxform);
147 int  swf_setparameter(gfxdevice_t*driver, const char*key, const char*value);
148 void swf_drawstroke(gfxdevice_t*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit);
149 void swf_startclip(gfxdevice_t*dev, gfxline_t*line);
150 void swf_endclip(gfxdevice_t*dev);
151 void swf_stroke(gfxdevice_t*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit);
152 void swf_fill(gfxdevice_t*dev, gfxline_t*line, gfxcolor_t*color);
153 void swf_fillbitmap(gfxdevice_t*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*matrix, gfxcxform_t*cxform);
154 void swf_fillgradient(gfxdevice_t*dev, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix);
155
156 static swfoutput_internal* init_internal_struct()
157 {
158     swfoutput_internal*i = (swfoutput_internal*)malloc(sizeof(swfoutput_internal));
159     memset(i, 0, sizeof(swfoutput_internal));
160
161     i->storefont = 0;
162     i->currentswfid = 0;
163     i->depth = 1;
164     i->startdepth = 1;
165     i->linewidth = 0;
166     i->shapeid = -1;
167     i->textid = -1;
168     i->frameno = 0;
169     i->lastframeno = 0;
170
171     i->fillstyleid;
172     i->linestyleid;
173     i->swflastx=0;
174     i->swflasty=0;
175     i->lastwasfill = 0;
176     i->shapeisempty = 1;
177     i->fill = 0;
178     i->clippos = 0;
179
180     i->fillstylechanged = 0;
181
182     i->bboxrectpos = -1;
183     i->chardatapos = 0;
184     i->firstpage = 1;
185     i->pagefinished = 1;
186
187     i->device.internal = (void*)i;
188     i->device.fillbitmap = swf_fillbitmap;
189     i->device.setparameter = swf_setparameter;
190     i->device.stroke = swf_stroke;
191     i->device.startclip = swf_startclip;
192     i->device.endclip = swf_endclip;
193     i->device.fill = swf_fill;
194     i->device.fillbitmap = swf_fillbitmap;
195     i->device.fillgradient = swf_fillgradient;
196
197     return i;
198 };
199
200 static void startshape(struct swfoutput* obj);
201 static void starttext(struct swfoutput* obj);
202 static void endshape(struct swfoutput* obj);
203 static void endtext(struct swfoutput* obj);
204
205 // matrix multiplication. changes p0
206 static void transform (plotxy*p0,struct swfmatrix*m)
207 {
208     double x,y;
209     x = m->m11*p0->x+m->m12*p0->y;
210     y = m->m21*p0->x+m->m22*p0->y;
211     p0->x = x + m->m13;
212     p0->y = y + m->m23;
213 }
214
215 // write a move-to command into the swf
216 static int moveto(struct swfoutput*obj, TAG*tag, plotxy p0)
217 {
218     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
219     int rx = (int)(p0.x*20);
220     int ry = (int)(p0.y*20);
221     if(rx!=i->swflastx || ry!=i->swflasty || i->fillstylechanged) {
222       swf_ShapeSetMove (tag, i->shape, rx,ry);
223       i->fillstylechanged = 0;
224       i->swflastx=rx;
225       i->swflasty=ry;
226       return 1;
227     }
228     return 0;
229 }
230 static int moveto(struct swfoutput*obj, TAG*tag, double  x, double y)
231 {
232     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
233     plotxy p;
234     p.x = x;
235     p.y = y;
236     return moveto(obj, tag, p);
237 }
238 static void addPointToBBox(struct swfoutput*obj, int px, int py) 
239 {
240     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
241
242     SPOINT p;
243     p.x = px;
244     p.y = py;
245     if(i->fill) {
246         swf_ExpandRect(&i->bboxrect, p);
247     } else {
248         swf_ExpandRect3(&i->bboxrect, p, i->linewidth*3/2);
249     }
250 }
251
252 /*static void plot(struct swfoutput*obj, int x, int y, TAG*tag)
253 {
254     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
255     int width = i->linewidth/4;
256     if(width > 5)
257         width = 5;
258     ////square
259     //swf_ShapeSetLine(tag, i->shape,-width,-width);
260     //swf_ShapeSetLine(tag, i->shape,width*2,0);
261     //swf_ShapeSetLine(tag, i->shape,0,width*2);
262     //swf_ShapeSetLine(tag, i->shape,-width*2,0);
263     //swf_ShapeSetLine(tag, i->shape,0,-width*2);
264     //swf_ShapeSetLine(tag, i->shape,width,width);
265    
266     // diamond
267     swf_ShapeSetLine(tag, i->shape,-width,0);
268     swf_ShapeSetLine(tag, i->shape,width,-width);
269     swf_ShapeSetLine(tag, i->shape,width,width);
270     swf_ShapeSetLine(tag, i->shape,-width,width);
271     swf_ShapeSetLine(tag, i->shape,-width,-width);
272     swf_ShapeSetLine(tag, i->shape,width,0);
273
274     addPointToBBox(obj, x-width ,y-width);
275     addPointToBBox(obj, x+width ,y+width);
276 }*/
277
278 // write a line-to command into the swf
279 static void lineto(struct swfoutput*obj, TAG*tag, plotxy p0)
280 {
281     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
282     int px = (int)(p0.x*20);
283     int py = (int)(p0.y*20);
284     int rx = (px-i->swflastx);
285     int ry = (py-i->swflasty);
286     if(rx|ry) {
287         swf_ShapeSetLine (tag, i->shape, rx,ry);
288         addPointToBBox(obj, i->swflastx,i->swflasty);
289         addPointToBBox(obj, px,py);
290     }/* else if(!i->fill) {
291        // treat lines of length 0 as plots, making them
292        // at least 1 twip wide so Flash will display them
293         plot(obj, i->swflastx, i->swflasty, tag);
294     }*/
295
296     i->shapeisempty = 0;
297     i->swflastx+=rx;
298     i->swflasty+=ry;
299 }
300 static void lineto(struct swfoutput*obj, TAG*tag, double x, double y)
301 {
302     plotxy p;
303     p.x = x;
304     p.y = y;
305     lineto(obj,tag, p);
306 }
307
308 // write a spline-to command into the swf
309 static void splineto(struct swfoutput*obj, TAG*tag, plotxy control,plotxy end)
310 {
311     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
312     int lastlastx = i->swflastx;
313     int lastlasty = i->swflasty;
314
315     int cx = ((int)(control.x*20)-i->swflastx);
316     int cy = ((int)(control.y*20)-i->swflasty);
317     i->swflastx += cx;
318     i->swflasty += cy;
319     int ex = ((int)(end.x*20)-i->swflastx);
320     int ey = ((int)(end.y*20)-i->swflasty);
321     i->swflastx += ex;
322     i->swflasty += ey;
323     
324     if(cx || cy || ex || ey) {
325         swf_ShapeSetCurve(tag, i->shape, cx,cy,ex,ey);
326         addPointToBBox(obj, lastlastx   ,lastlasty   );
327         addPointToBBox(obj, lastlastx+cx,lastlasty+cy);
328         addPointToBBox(obj, lastlastx+cx+ex,lastlasty+cy+ey);
329     }/* else if(!i->fill) {
330         // treat splines of length 0 as plots
331         plot(obj, lastlastx, lastlasty, tag);
332     }*/
333     i->shapeisempty = 0;
334 }
335
336 /* write a line, given two points and the transformation
337    matrix. */
338 /*static void line(struct swfoutput*obj, TAG*tag, plotxy p0, plotxy p1)
339 {
340     moveto(obj, tag, p0);
341     lineto(obj, tag, p1);
342 }*/
343
344 void resetdrawer(struct swfoutput*obj)
345 {
346     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
347     i->swflastx = 0;
348     i->swflasty = 0;
349 }
350
351 static void stopFill(struct swfoutput*obj)
352 {
353     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
354     if(i->lastwasfill)
355     {
356         swf_ShapeSetStyle(i->tag,i->shape,i->linestyleid,0x8000,0);
357         i->fillstylechanged = 1;
358         i->lastwasfill = 0;
359     }
360 }
361 static void startFill(struct swfoutput*obj)
362 {
363     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
364     if(!i->lastwasfill)
365     {
366         swf_ShapeSetStyle(i->tag,i->shape,0x8000,i->fillstyleid,0);
367         i->fillstylechanged = 1;
368         i->lastwasfill = 1;
369     }
370 }
371
372 /* draw an outline. These are generated by pdf2swf and by t1lib
373    (representing characters). */
374 /*void drawpath(struct swfoutput*obj, SWF_OUTLINE*outline, struct swfmatrix*m, int log)
375 {
376     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
377     if( i->tag->id != ST_DEFINESHAPE &&
378         i->tag->id != ST_DEFINESHAPE2 &&
379         i->tag->id != ST_DEFINESHAPE3)
380     {
381         msg("<error> internal error: drawpath needs a shape tag, not %d\n",i->tag->id);
382         exit(1);
383     }
384     double x=0,y=0;
385     double lastx=0,lasty=0;
386     double firstx=0,firsty=0;
387     int init=1;
388
389     while (outline)
390     {
391         x += (outline->dest.x/(float)0xffff);
392         y += (outline->dest.y/(float)0xffff);
393         if(outline->type == SWF_PATHTYPE_MOVE)
394         {
395             //if(!init && fill && obj->drawmode != DRAWMODE_EOFILL && !ignoredraworder)
396             if(config_filloverlap && !init && i->fill && obj->drawmode != DRAWMODE_EOFILL) {
397                 // drawmode=FILL (not EOFILL) means that
398                 // seperate shapes do not cancel each other out.
399                 // On SWF side, we need to start a new shape for each
400                 // closed polygon, because SWF only knows EOFILL.
401                 //
402                 endshape(obj);
403                 startshape(obj);
404                 startFill(obj);
405             }
406
407             if(((int)(lastx*20) != (int)(firstx*20) ||
408                 (int)(lasty*20) != (int)(firsty*20)) &&
409                      i->fill && !init)
410             {
411                 plotxy p0;
412                 plotxy p1;
413                 p0.x=lastx;
414                 p0.y=lasty;
415                 p1.x=firstx;
416                 p1.y=firsty;
417                 if(log) printf("fix: %f,%f -> %f,%f\n",p0.x,p0.y,p1.x,p1.y);
418                 line(obj,i->tag, p0, p1);
419             }
420             firstx=x;
421             firsty=y;
422             init = 0;
423         }
424         else if(outline->type == SWF_PATHTYPE_LINE) 
425         {
426             plotxy p0;
427             plotxy p1;
428             p0.x=lastx;
429             p0.y=lasty;
430             p1.x=x;
431             p1.y=y;
432             if(log) printf("line: %f,%f -> %f,%f\n",p0.x,p0.y,p1.x,p1.y);
433             line(obj,i->tag, p0,p1);
434         }
435         else {
436             msg("<error> drawpath: unknown outline type:%d\n", outline->type);
437         }
438         lastx=x;
439         lasty=y;
440         outline = outline->link;
441     }
442     if(((int)(lastx*20) != (int)(firstx*20) ||
443         (int)(lasty*20) != (int)(firsty*20)) &&
444              i->fill)
445     {
446         plotxy p0;
447         plotxy p1;
448         p0.x=lastx;
449         p0.y=lasty;
450         p1.x=firstx;
451         p1.y=firsty;
452         if(log) printf("fix: %f,%f -> %f,%f\n",p0.x,p0.y,p1.x,p1.y);
453         line(obj, i->tag, p0, p1);
454     }
455 }*/
456
457 static inline int colorcompare(struct swfoutput*obj, RGBA*a,RGBA*b)
458 {
459
460     if(a->r!=b->r ||
461        a->g!=b->g ||
462        a->b!=b->b ||
463        a->a!=b->a) {
464         return 0;
465     }
466     return 1;
467 }
468
469 static SRECT getcharacterbbox(struct swfoutput*obj, SWFFONT*font)
470 {
471     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
472     SRECT r;
473     char debug = 0;
474     memset(&r, 0, sizeof(r));
475
476     int t;
477     if(debug) printf("\n");
478     for(t=0;t<i->chardatapos;t++)
479     {
480         if(i->chardata[t].fontid != font->id) {
481             msg("<error> Internal error: fontid %d != fontid %d", i->chardata[t].fontid, font->id);
482             exit(1);
483         }
484         SRECT b = font->layout->bounds[i->chardata[t].charid];
485         b.xmin *= i->chardata[t].size;
486         b.ymin *= i->chardata[t].size;
487         b.xmax *= i->chardata[t].size;
488         b.ymax *= i->chardata[t].size;
489         b.xmin /= 1024;
490         b.ymin /= 1024;
491         b.xmax /= 1024;
492         b.ymax /= 1024;
493         b.xmin += i->chardata[t].x;
494         b.ymin += i->chardata[t].y;
495         b.xmax += i->chardata[t].x;
496         b.ymax += i->chardata[t].y;
497
498         /* until we solve the INTERNAL_SCALING problem (see below)
499            make sure the bounding box is big enough */
500         b.xmin -= 20;
501         b.ymin -= 20;
502         b.xmax += 20;
503         b.ymax += 20;
504
505         if(debug) printf("(%f,%f,%f,%f) -> (%f,%f,%f,%f) [font %d/%d, char %d]\n",
506                 font->layout->bounds[i->chardata[t].charid].xmin/20.0,
507                 font->layout->bounds[i->chardata[t].charid].ymin/20.0,
508                 font->layout->bounds[i->chardata[t].charid].xmax/20.0,
509                 font->layout->bounds[i->chardata[t].charid].ymax/20.0,
510                 b.xmin/20.0,
511                 b.ymin/20.0,
512                 b.xmax/20.0,
513                 b.ymax/20.0,
514                 i->chardata[t].fontid,
515                 font->id,
516                 i->chardata[t].charid
517                 );
518         swf_ExpandRect2(&r, &b);
519     }
520     if(debug) printf("-----> (%f,%f,%f,%f)\n",
521             r.xmin/20.0,
522             r.ymin/20.0,
523             r.xmax/20.0,
524             r.ymax/20.0);
525     return r;
526 }
527
528 static void putcharacters(struct swfoutput*obj, TAG*tag)
529 {
530     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
531     int t;
532     SWFFONT font;
533     RGBA color;
534     color.r = i->chardata[0].color.r^255;
535     color.g = 0;
536     color.b = 0;
537     color.a = 0;
538     int lastfontid;
539     int lastx;
540     int lasty;
541     int lastsize;
542     int charids[128];
543     int charadvance[128];
544     int charstorepos;
545     int pass;
546     int glyphbits=1; //TODO: can this be zero?
547     int advancebits=1;
548
549     if(tag->id != ST_DEFINETEXT &&
550         tag->id != ST_DEFINETEXT2) {
551         msg("<error> internal error: putcharacters needs an text tag, not %d\n",tag->id);
552         exit(1);
553     }
554     if(!i->chardatapos) {
555         msg("<warning> putcharacters called with zero characters");
556     }
557
558     for(pass = 0; pass < 2; pass++)
559     {
560         charstorepos = 0;
561         lastfontid = -1;
562         lastx = CHARMIDX;
563         lasty = CHARMIDY;
564         lastsize = -1;
565
566         if(pass==1)
567         {
568             advancebits++; // add sign bit
569             swf_SetU8(tag, glyphbits);
570             swf_SetU8(tag, advancebits);
571         }
572
573         for(t=0;t<=i->chardatapos;t++)
574         {
575             if(lastfontid != i->chardata[t].fontid || 
576                     lastx!=i->chardata[t].x ||
577                     lasty!=i->chardata[t].y ||
578                     !colorcompare(obj,&color, &i->chardata[t].color) ||
579                     charstorepos==127 ||
580                     lastsize != i->chardata[t].size ||
581                     t == i->chardatapos)
582             {
583                 if(charstorepos && pass==0)
584                 {
585                     int s;
586                     for(s=0;s<charstorepos;s++)
587                     {
588                         while(charids[s]>=(1<<glyphbits))
589                             glyphbits++;
590                         while(charadvance[s]>=(1<<advancebits))
591                             advancebits++;
592                     }
593                 }
594                 if(charstorepos && pass==1)
595                 {
596                     tag->writeBit = 0; // Q&D
597                     swf_SetBits(tag, 0, 1); // GLYPH Record
598                     swf_SetBits(tag, charstorepos, 7); // number of glyphs
599                     int s;
600                     for(s=0;s<charstorepos;s++)
601                     {
602                         swf_SetBits(tag, charids[s], glyphbits);
603                         swf_SetBits(tag, charadvance[s], advancebits);
604                     }
605                 }
606                 charstorepos = 0;
607
608                 if(pass == 1 && t<i->chardatapos)
609                 {
610                     RGBA*newcolor=0;
611                     SWFFONT*newfont=0;
612                     int newx = 0;
613                     int newy = 0;
614                     if(lastx != i->chardata[t].x ||
615                        lasty != i->chardata[t].y)
616                     {
617                         newx = i->chardata[t].x;
618                         newy = i->chardata[t].y;
619                         if(newx == 0)
620                             newx = SET_TO_ZERO;
621                         if(newy == 0)
622                             newy = SET_TO_ZERO;
623                     }
624                     if(!colorcompare(obj,&color, &i->chardata[t].color)) 
625                     {
626                         color = i->chardata[t].color;
627                         newcolor = &color;
628                     }
629                     font.id = i->chardata[t].fontid;
630                     if(lastfontid != i->chardata[t].fontid || lastsize != i->chardata[t].size)
631                         newfont = &font;
632
633                     tag->writeBit = 0; // Q&D
634                     swf_TextSetInfoRecord(tag, newfont, i->chardata[t].size, newcolor, newx,newy);
635                 }
636
637                 lastfontid = i->chardata[t].fontid;
638                 lastx = i->chardata[t].x;
639                 lasty = i->chardata[t].y;
640                 lastsize = i->chardata[t].size;
641             }
642
643             if(t==i->chardatapos)
644                     break;
645
646             int advance;
647             int nextt = t==i->chardatapos-1?t:t+1;
648             int rel = i->chardata[nextt].x-i->chardata[t].x;
649             if(rel>=0 && (rel<(1<<(advancebits-1)) || pass==0)) {
650                advance = rel;
651                lastx=i->chardata[nextt].x;
652             }
653             else {
654                advance = 0;
655                lastx=i->chardata[t].x;
656             }
657             charids[charstorepos] = i->chardata[t].charid;
658             charadvance[charstorepos] = advance;
659             charstorepos ++;
660         }
661     }
662     i->chardatapos = 0;
663 }
664
665 static void putcharacter(struct swfoutput*obj, int fontid, int charid, int x,int y, int size, RGBA color)
666 {
667     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
668     if(i->chardatapos == CHARDATAMAX)
669     {
670         msg("<warning> Character buffer too small. SWF will be slightly bigger");
671         endtext(obj);
672         starttext(obj);
673     }
674     i->chardata[i->chardatapos].fontid = fontid;
675     i->chardata[i->chardatapos].charid = charid;
676     i->chardata[i->chardatapos].x = x;
677     i->chardata[i->chardatapos].y = y;
678     i->chardata[i->chardatapos].color = color;
679     i->chardata[i->chardatapos].size = size;
680     i->chardatapos++;
681 }
682
683 /* Notice: we can only put chars in the range -1639,1638 (-32768/20,32768/20).
684    So if we set this value to high, the char coordinates will overflow.
685    If we set it to low, however, the char positions will be inaccurate */
686 #define FONT_INTERNAL_SIZE 4
687
688 /* process a character. */
689 static int drawchar(struct swfoutput*obj, SWFFONT *swffont, char*character, int charnr, int u, swfmatrix*m, gfxcolor_t*col)
690 {
691     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
692     if(!swffont) {
693         msg("<warning> Font is NULL");
694         return 0;
695     }
696
697     int charid = getCharID(swffont, charnr, character, u); 
698     
699     if(charid<0) {
700         msg("<warning> Didn't find character '%s' (c=%d,u=%d) in current charset (%s, %d characters)", 
701                 FIXNULL(character),charnr, u, FIXNULL((char*)swffont->name), swffont->numchars);
702         return 0;
703     }
704     /*if(swffont->glyph[charid].shape->bitlen <= 16) {
705         msg("<warning> Character '%s' (c=%d,u=%d), glyph %d in current charset (%s, %d characters) is empty", 
706                 FIXNULL(character),charnr, u, charid, FIXNULL((char*)swffont->name), swffont->numchars);
707         return 0;
708     }*/
709
710
711     if(i->shapeid>=0)
712         endshape(obj);
713     if(i->textid<0)
714         starttext(obj);
715
716     float x = m->m13;
717     float y = m->m23;
718     float det = ((m->m11*m->m22)-(m->m21*m->m12));
719     if(fabs(det) < 0.0005) { 
720         /* x direction equals y direction- the text is invisible */
721         return 1;
722     }
723     det = 20*FONT_INTERNAL_SIZE / det;
724
725     SPOINT p;
726     p.x = (SCOORD)((  x * m->m22 - y * m->m12)*det);
727     p.y = (SCOORD)((- x * m->m21 + y * m->m11)*det);
728
729     RGBA rgba = *(RGBA*)col;
730     putcharacter(obj, swffont->id, charid,p.x,p.y,FONT_INTERNAL_SIZE, rgba);
731     swf_FontUseGlyph(swffont, charid);
732     return 1;
733
734     /*else
735     {
736         SWF_OUTLINE*outline = font->getOutline(character, charnr);
737         char* charname = character;
738
739         if(!outline) {
740          msg("<warning> Didn't find character '%s' (%d) in current charset (%s)", 
741                  FIXNULL(character),charnr,FIXNULL(font->getName()));
742          return;
743         }
744         
745         swfmatrix m2=*m;    
746         m2.m11/=100;
747         m2.m21/=100;
748         m2.m12/=100;
749         m2.m22/=100;
750
751         if(textid>=0)
752             endtext(obj);
753         if(shapeid<0)
754             startshape(obj);
755
756         startFill(obj);
757
758         int lf = fill;
759         fill = 1;
760         drawpath(tag, outline, &m2, 0);
761         fill = lf;
762     }*/
763 }
764
765 static void endtext(swfoutput*obj)
766 {
767     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
768     if(i->textid<0)
769         return;
770
771     i->tag = swf_InsertTag(i->tag,ST_DEFINETEXT);
772     swf_SetU16(i->tag, i->textid);
773
774     SRECT r;
775     r = getcharacterbbox(obj, obj->swffont);
776     
777     swf_SetRect(i->tag,&r);
778
779     MATRIX m;
780     swf_GetMatrix(0, &m); /* set unit matrix- the real matrix is in the placeobject */
781     swf_SetMatrix(i->tag,&m);
782
783     putcharacters(obj, i->tag);
784     swf_SetU8(i->tag,0);
785     i->tag = swf_InsertTag(i->tag,ST_PLACEOBJECT2);
786     //swf_ObjectPlace(i->tag,i->textid,/*depth*/i->depth++,&i->page_matrix,NULL,NULL);
787     MATRIX m2;
788     swf_MatrixJoin(&m2,&obj->fontmatrix, &i->page_matrix);
789
790     swf_ObjectPlace(i->tag,i->textid,/*depth*/i->depth++,&m2,NULL,NULL);
791     i->textid = -1;
792 }
793
794 int getCharID(SWFFONT *font, int charnr, char *charname, int u)
795 {
796     int t;
797     if(charname && font->glyphnames) {
798         for(t=0;t<font->numchars;t++) {
799             if(font->glyphnames[t] && !strcmp(font->glyphnames[t],charname)) {
800                 msg("<debug> Char [%d,>%s<,%d] maps to %d\n", charnr, charname, u, t);
801                 return t;
802             }
803         }
804         /* if we didn't find the character, maybe
805            we can find the capitalized version */
806         for(t=0;t<font->numchars;t++) {
807             if(font->glyphnames[t] && !strcasecmp(font->glyphnames[t],charname)) {
808                 msg("<debug> Char [%d,>>%s<<,%d] maps to %d\n", charnr, charname, u, t);
809                 return t;
810             }
811         }
812     }
813
814     if(u>0 && font->encoding != 255) {
815         /* try to use the unicode id */
816         if(u>=0 && u<font->maxascii && font->ascii2glyph[u]>=0) {
817             msg("<debug> Char [%d,%s,>%d<] maps to %d\n", charnr, charname, u, font->ascii2glyph[u]);
818             return font->ascii2glyph[u];
819         }
820     }
821
822     if(font->encoding != FONT_ENCODING_UNICODE) {
823         /* the following only works if the font encoding
824            is US-ASCII based. It's needed for fonts which return broken unicode
825            indices */
826         if(charnr>=0 && charnr<font->maxascii && font->ascii2glyph[charnr]>=0) {
827             msg("<debug> Char [>%d<,%s,%d] maps to %d\n", charnr, charname, u, font->ascii2glyph[charnr]);
828             return font->ascii2glyph[charnr];
829         }
830     } 
831     
832     if(charnr>=0 && charnr<font->numchars) {
833         msg("<debug> Char [>%d<,%s,%d] maps to %d\n", charnr, charname, u, charnr);
834         return charnr;
835     }
836     
837     return -1;
838 }
839
840
841 /* set's the t1 font index of the font to use for swfoutput_drawchar(). */
842 void swfoutput_setfont(struct swfoutput*obj, char*fontid, char*filename)
843 {
844     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
845     fontlist_t*last=0,*iterator;
846     if(!fontid) {
847         msg("<error> No fontid");
848         return;
849     }
850
851     if(obj->swffont && obj->swffont->name && !strcmp((char*)obj->swffont->name,fontid))
852         return;
853
854     /* TODO: remove the need for this (enhance getcharacterbbox so that it can cope
855              with multiple fonts */
856     endtext(obj);
857
858     iterator = i->fontlist;
859     while(iterator) {
860         if(!strcmp((char*)iterator->swffont->name,fontid)) {
861             obj->swffont = iterator->swffont; 
862             return;
863         }
864         last = iterator;
865         iterator = iterator->next;
866     }
867
868     if(!filename) {
869         msg("<error> No filename given for font- internal error?");
870         return;
871     }
872
873     swf_SetLoadFontParameters(64,/*skip unused*/0,/*full unicode*/1);
874     SWFFONT*swffont = swf_LoadFont(filename);
875
876     if(swffont == 0) {
877         msg("<warning> Couldn't load font %s (%s)", fontid, filename);
878         swffont = swf_LoadFont(0);
879     }
880     
881     if(swffont->glyph2ascii) {
882         int t;
883         int bad = 0;
884         /* check whether the Unicode indices look o.k.
885            If they don't, disable the unicode lookup by setting
886            the encoding to 255 */
887         for(t=0;t<swffont->numchars;t++) {
888             int c = swffont->glyph2ascii[t];
889             if(c && c < 32 && swffont->glyph[t].shape->bitlen > 16) {
890                 // the character maps into the unicode control character range
891                 // between 0001-001f. Yet it is not empty. Treat the one
892                 // mapping as broken, and look how many of those we find.
893                 bad ++;
894             }
895         }
896         if(bad>5) {
897             msg("<warning> Font %s has bad unicode mapping", fontid);
898             swffont->encoding = 255;
899         }
900     }
901
902     swf_FontSetID(swffont, ++i->currentswfid);
903     
904     if(getScreenLogLevel() >= LOGLEVEL_DEBUG)  {
905         // print font information
906         msg("<debug> Font %s (%s)",swffont->name, filename);
907         msg("<debug> |   ID: %d", swffont->id);
908         msg("<debug> |   Version: %d", swffont->version);
909         msg("<debug> |   Name: %s", fontid);
910         msg("<debug> |   Numchars: %d", swffont->numchars);
911         msg("<debug> |   Maxascii: %d", swffont->maxascii);
912         msg("<debug> |   Style: %d", swffont->style);
913         msg("<debug> |   Encoding: %d", swffont->encoding);
914         for(int iii=0; iii<swffont->numchars;iii++) {
915             msg("<debug> |   Glyph %d) name=%s, unicode=%d size=%d bbox=(%.2f,%.2f,%.2f,%.2f)\n", iii, swffont->glyphnames?swffont->glyphnames[iii]:"<nonames>", swffont->glyph2ascii[iii], swffont->glyph[iii].shape->bitlen, 
916                     swffont->layout->bounds[iii].xmin/20.0,
917                     swffont->layout->bounds[iii].ymin/20.0,
918                     swffont->layout->bounds[iii].xmax/20.0,
919                     swffont->layout->bounds[iii].ymax/20.0
920                     );
921             int t;
922             for(t=0;t<swffont->maxascii;t++) {
923                 if(swffont->ascii2glyph[t] == iii)
924                     msg("<debug> | - maps to %d",t);
925             }
926         }
927     }
928
929     /* set the font name to the ID we use here */
930     if(swffont->name) free(swffont->name);
931     swffont->name = (U8*)strdup(fontid);
932
933     iterator = new fontlist_t;
934     iterator->swffont = swffont;
935     iterator->next = 0;
936
937     if(last) 
938         last->next = iterator;
939     else 
940         i->fontlist = iterator;
941
942     obj->swffont = swffont; 
943 }
944
945 int swfoutput_queryfont(struct swfoutput*obj, char*fontid)
946 {
947     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
948     fontlist_t *iterator = i->fontlist;
949     while(iterator) {
950         if(!strcmp((char*)iterator->swffont->name,fontid))
951             return 1;
952         iterator = iterator->next;
953     }
954     return 0;
955 }
956
957 /* set's the matrix which is to be applied to characters drawn by
958    swfoutput_drawchar() */
959 void swfoutput_setfontmatrix(struct swfoutput*obj,double m11,double m12,
960                                                   double m21,double m22)
961 {
962     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
963     if(obj->fontm11 == m11 &&
964        obj->fontm12 == m12 &&
965        obj->fontm21 == m21 &&
966        obj->fontm22 == m22)
967         return;
968    if(i->textid>=0)
969         endtext(obj);
970     obj->fontm11 = m11;
971     obj->fontm12 = m12;
972     obj->fontm21 = m21;
973     obj->fontm22 = m22;
974     
975     MATRIX m;
976     m.sx = (U32)(((obj->fontm11)*65536)/FONT_INTERNAL_SIZE); m.r1 = (U32)(((obj->fontm12)*65536)/FONT_INTERNAL_SIZE);
977     m.r0 = (U32)(((obj->fontm21)*65536)/FONT_INTERNAL_SIZE); m.sy = (U32)(((obj->fontm22)*65536)/FONT_INTERNAL_SIZE); 
978     m.tx = 0;
979     m.ty = 0;
980     obj->fontmatrix = m;
981 }
982
983 /* draws a character at x,y. */
984 int swfoutput_drawchar(struct swfoutput* obj,double x,double y,char*character, int charnr, int u, gfxcolor_t* color) 
985 {
986     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
987     swfmatrix m;
988     m.m11 = obj->fontm11;
989     m.m12 = obj->fontm12;
990     m.m21 = obj->fontm21;
991     m.m22 = obj->fontm22;
992     m.m13 = x;
993     m.m23 = y;
994     return drawchar(obj, obj->swffont, character, charnr, u, &m, color);
995 }
996
997 static void endpage(struct swfoutput*obj)
998 {
999     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1000     if(i->shapeid>=0)
1001       endshape(obj);
1002     if(i->textid>=0)
1003       endtext(obj);
1004     while(i->clippos)
1005         swfoutput_endclip(obj);
1006     i->pagefinished = 1;
1007 }
1008
1009 void swfoutput_pagefeed(struct swfoutput*obj)
1010 {
1011     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1012     
1013     if(!i->pagefinished)
1014         endpage(obj);
1015
1016     if(config_insertstoptag) {
1017         ActionTAG*atag=0;
1018         atag = action_Stop(atag);
1019         atag = action_End(atag);
1020         i->tag = swf_InsertTag(i->tag,ST_DOACTION);
1021         swf_ActionSet(i->tag,atag);
1022     }
1023     i->tag = swf_InsertTag(i->tag,ST_SHOWFRAME);
1024     i->frameno ++;
1025     
1026     for(i->depth--;i->depth>=i->startdepth;i->depth--) {
1027         i->tag = swf_InsertTag(i->tag,ST_REMOVEOBJECT2);
1028         swf_SetU16(i->tag,i->depth);
1029     }
1030     i->depth = i->startdepth;
1031 }
1032
1033 static void setBackground(struct swfoutput*obj, int x1, int y1, int x2, int y2)
1034 {
1035     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1036     RGBA rgb;
1037     rgb.a = rgb.r = rgb.g = rgb.b = 0xff;
1038     SRECT r;
1039     SHAPE* s;
1040     int ls1=0,fs1=0;
1041     int shapeid = ++i->currentswfid;
1042     r.xmin = x1;
1043     r.ymin = y1;
1044     r.xmax = x2;
1045     r.ymax = y2;
1046     i->tag = swf_InsertTag(i->tag, ST_DEFINESHAPE);
1047     swf_ShapeNew(&s);
1048     fs1 = swf_ShapeAddSolidFillStyle(s, &rgb);
1049     swf_SetU16(i->tag,shapeid);
1050     swf_SetRect(i->tag,&r);
1051     swf_SetShapeHeader(i->tag,s);
1052     swf_ShapeSetAll(i->tag,s,x1,y1,ls1,fs1,0);
1053     swf_ShapeSetLine(i->tag,s,(x2-x1),0);
1054     swf_ShapeSetLine(i->tag,s,0,(y2-y1));
1055     swf_ShapeSetLine(i->tag,s,(x1-x2),0);
1056     swf_ShapeSetLine(i->tag,s,0,(y1-y2));
1057     swf_ShapeSetEnd(i->tag);
1058     swf_ShapeFree(s);
1059     i->tag = swf_InsertTag(i->tag, ST_PLACEOBJECT2);
1060     swf_ObjectPlace(i->tag,shapeid,i->depth++,0,0,0);
1061     i->tag = swf_InsertTag(i->tag, ST_PLACEOBJECT2);
1062     swf_ObjectPlaceClip(i->tag,shapeid,i->depth++,0,0,0,65535);
1063     i->cliptag = i->tag;
1064 }
1065
1066 void swfoutput_newpage(struct swfoutput*obj, int pageNum, int movex, int movey, int x1, int y1, int x2, int y2)
1067 {
1068     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1069     if(!i->firstpage && !i->pagefinished)
1070         endpage(obj);
1071
1072     swf_GetMatrix(0, &i->page_matrix);
1073     i->page_matrix.tx = movex*20;
1074     i->page_matrix.ty = movey*20;
1075
1076     if(i->cliptag && i->frameno == i->lastframeno) {
1077         SWFPLACEOBJECT obj;
1078         swf_GetPlaceObject(i->cliptag, &obj);
1079         obj.clipdepth = i->depth++;
1080         swf_ResetTag(i->cliptag, i->cliptag->id);
1081         swf_SetPlaceObject(i->cliptag, &obj);
1082         swf_PlaceObjectFree(&obj);
1083     }
1084
1085     i->min_x = x1;
1086     i->min_y = y1;
1087     i->max_x = x2;
1088     i->max_y = y2;
1089     
1090     msg("<notice> processing page %d (%dx%d:%d:%d)", pageNum,x2-x1,y2-y1, x1, y1);
1091
1092     x1*=20;y1*=20;x2*=20;y2*=20;
1093
1094     /* set clipping/background rectangle */
1095     /* TODO: this should all be done in SWFOutputDev */
1096     setBackground(obj, x1, y1, x2, y2);
1097
1098     /* increase SWF's bounding box */
1099     SRECT r;
1100     r.xmin = x1;
1101     r.ymin = y1;
1102     r.xmax = x2;
1103     r.ymax = y2;
1104     swf_ExpandRect2(&i->swf.movieSize, &r);
1105
1106     i->lastframeno = i->frameno;
1107     i->firstpage = 0;
1108     i->pagefinished = 0;
1109 }
1110
1111 /* initialize the swf writer */
1112 void swfoutput_init(struct swfoutput* obj)
1113 {
1114     memset(obj, 0, sizeof(struct swfoutput));
1115     obj->internal = init_internal_struct();
1116     ((swfoutput_internal*)obj->internal)->obj = obj;
1117
1118     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1119
1120     SRECT r;
1121     RGBA rgb;
1122
1123     msg("<verbose> initializing swf output for size %d*%d\n", i->max_x,i->max_y);
1124
1125     obj->swffont = 0;
1126     
1127     memset(&i->swf,0x00,sizeof(SWF));
1128
1129     i->swf.fileVersion    = config_flashversion;
1130     i->swf.frameRate      = 0x0040; // 1 frame per 4 seconds
1131     i->swf.movieSize.xmin = 0;
1132     i->swf.movieSize.ymin = 0;
1133     i->swf.movieSize.xmax = 0;
1134     i->swf.movieSize.ymax = 0;
1135     
1136     i->swf.firstTag = swf_InsertTag(NULL,ST_SETBACKGROUNDCOLOR);
1137     i->tag = i->swf.firstTag;
1138     rgb.a = rgb.r = rgb.g = rgb.b = 0xff;
1139     swf_SetRGB(i->tag,&rgb);
1140
1141     i->startdepth = i->depth = 3; /* leave room for clip and background rectangle */
1142     
1143     if(config_protect)
1144       i->tag = swf_InsertTag(i->tag, ST_PROTECT);
1145 }
1146
1147 static void startshape(struct swfoutput*obj)
1148 {
1149     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1150     SRECT r;
1151
1152     if(i->shapeid>=0)
1153         return;
1154
1155     if(i->textid>=0)
1156         endtext(obj);
1157
1158     i->tag = swf_InsertTag(i->tag,ST_DEFINESHAPE);
1159
1160     swf_ShapeNew(&i->shape);
1161     i->linestyleid = swf_ShapeAddLineStyle(i->shape,i->linewidth,&obj->strokergb);
1162     i->fillstyleid = swf_ShapeAddSolidFillStyle(i->shape,&obj->fillrgb);
1163
1164     i->shapeid = ++i->currentswfid;
1165     
1166     msg("<debug> Using shape id %d", i->shapeid);
1167
1168     swf_SetU16(i->tag,i->shapeid);  // ID
1169
1170     i->bboxrectpos = i->tag->len;
1171     /* changed later */
1172     r.xmin = 0;
1173     r.ymin = 0;
1174     r.xmax = 20*i->max_x;
1175     r.ymax = 20*i->max_y;
1176     swf_SetRect(i->tag,&r);
1177    
1178     memset(&i->bboxrect, 0, sizeof(i->bboxrect));
1179
1180     swf_SetShapeStyles(i->tag,i->shape);
1181     swf_ShapeCountBits(i->shape,NULL,NULL);
1182     swf_SetShapeBits(i->tag,i->shape);
1183
1184     /* TODO: do we really need this? */
1185     swf_ShapeSetAll(i->tag,i->shape,/*x*/0,/*y*/0,i->linestyleid,0,0);
1186     i->swflastx=i->swflasty=0;
1187     i->lastwasfill = 0;
1188     i->shapeisempty = 1;
1189 }
1190
1191 static void starttext(struct swfoutput*obj)
1192 {
1193     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1194     if(i->shapeid>=0)
1195         endshape(obj);
1196       
1197     i->textid = ++i->currentswfid;
1198
1199     i->swflastx=i->swflasty=0;
1200 }
1201             
1202
1203 /* TODO: move to ../lib/rfxswf */
1204 void changeRect(struct swfoutput*obj, TAG*tag, int pos, SRECT*newrect)
1205 {
1206     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1207     /* determine length of old rect */
1208     tag->pos = pos;
1209     tag->readBit = 0;
1210     SRECT old;
1211     swf_GetRect(tag, &old);
1212     swf_ResetReadBits(tag);
1213     int pos_end = tag->pos;
1214
1215     int len = tag->len - pos_end;
1216     U8*data = (U8*)malloc(len);
1217     memcpy(data, &tag->data[pos_end], len);
1218     tag->writeBit = 0;
1219     tag->len = pos;
1220     swf_SetRect(tag, newrect);
1221     swf_SetBlock(tag, data, len);
1222     free(data);
1223     tag->pos = tag->readBit = 0;
1224 }
1225
1226 void cancelshape(swfoutput*obj)
1227 {
1228     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1229     /* delete old shape tag */
1230     TAG*todel = i->tag;
1231     i->tag = i->tag->prev;
1232     swf_DeleteTag(todel);
1233     if(i->shape) {swf_ShapeFree(i->shape);i->shape=0;}
1234     i->shapeid = -1;
1235     i->bboxrectpos = -1;
1236 }
1237
1238 void fixAreas(swfoutput*obj)
1239 {
1240     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1241     if(!i->shapeisempty && i->fill &&
1242        (i->bboxrect.xmin == i->bboxrect.xmax ||
1243         i->bboxrect.ymin == i->bboxrect.ymax) &&
1244         config_minlinewidth >= 0.001
1245        ) {
1246         msg("<debug> Shape has size 0: width=%.2f height=%.2f",
1247                 (i->bboxrect.xmax-i->bboxrect.xmin)/20.0,
1248                 (i->bboxrect.ymax-i->bboxrect.ymin)/20.0
1249                 );
1250     
1251         SRECT r = i->bboxrect;
1252         
1253         if(r.xmin == r.xmax && r.ymin == r.ymax) {
1254             /* this thing comes down to a single dot- nothing to fix here */
1255             return;
1256         }
1257
1258         cancelshape(obj);
1259
1260         RGBA save_col = obj->strokergb;
1261         int  save_width = i->linewidth;
1262
1263         obj->strokergb = obj->fillrgb;
1264         i->linewidth = (int)(config_minlinewidth*20);
1265         if(i->linewidth==0) i->linewidth = 1;
1266         
1267         startshape(obj);
1268
1269         moveto(obj, i->tag, r.xmin/20.0,r.ymin/20.0);
1270         lineto(obj, i->tag, r.xmax/20.0,r.ymax/20.0);
1271
1272         obj->strokergb = save_col;
1273         i->linewidth = save_width;
1274     }
1275     
1276 }
1277
1278 static void endshape_noput(swfoutput*obj)
1279 {
1280     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1281     if(i->shapeid<0) 
1282         return;
1283     //changeRect(obj, i->tag, i->bboxrectpos, &i->bboxrect);
1284     i->shapeid = -1;
1285     if(i->shape) {
1286         swf_ShapeFree(i->shape);
1287         i->shape=0;
1288     }
1289     i->fill=0;
1290 }
1291
1292 static void endshape(swfoutput*obj)
1293 {
1294     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1295     if(i->shapeid<0) 
1296         return;
1297
1298     fixAreas(obj);
1299         
1300     if(i->shapeisempty ||
1301        /*bbox empty?*/
1302        (i->bboxrect.xmin == i->bboxrect.xmax && 
1303         i->bboxrect.ymin == i->bboxrect.ymax))
1304     {
1305         // delete the shape again, we didn't do anything
1306         msg("<debug> cancelling shape: bbox is (%f,%f,%f,%f)",
1307                 i->bboxrect.xmin /20.0,
1308                 i->bboxrect.ymin /20.0,
1309                 i->bboxrect.xmax /20.0,
1310                 i->bboxrect.ymax /20.0
1311                 );
1312         cancelshape(obj);
1313         return;
1314     }
1315     
1316     swf_ShapeSetEnd(i->tag);
1317
1318     changeRect(obj, i->tag, i->bboxrectpos, &i->bboxrect);
1319
1320     msg("<trace> Placing shape id %d", i->shapeid);
1321
1322     i->tag = swf_InsertTag(i->tag,ST_PLACEOBJECT2);
1323     swf_ObjectPlace(i->tag,i->shapeid,/*depth*/i->depth++,&i->page_matrix,NULL,NULL);
1324
1325     swf_ShapeFree(i->shape);
1326     i->shape = 0;
1327     i->shapeid = -1;
1328     i->bboxrectpos = -1;
1329     i->fill=0;
1330
1331     /*int debug = 1;
1332     if(debug) {
1333         char text[80];
1334         sprintf(text, "id%d", i->shapeid);
1335         swfcoord points[4];
1336         points[0].x = i->bboxrect.xmin;
1337         points[0].y = i->bboxrect.ymin;
1338         points[1].x = i->bboxrect.xmax;
1339         points[1].y = i->bboxrect.ymin;
1340         points[2].x = i->bboxrect.xmax;
1341         points[2].y = i->bboxrect.ymax;
1342         points[3].x = i->bboxrect.xmin;
1343         points[3].y = i->bboxrect.ymax;
1344         swfoutput_namedlink(obj,text,points);
1345     }*/
1346 }
1347
1348 void swfoutput_finalize(struct swfoutput*obj)
1349 {
1350     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1351
1352     if(i->tag && i->tag->id == ST_END)
1353         return; //already done
1354
1355     if(i->frameno == i->lastframeno) // fix: add missing pagefeed
1356         swfoutput_pagefeed(obj);
1357
1358     endpage(obj);
1359     fontlist_t *tmp,*iterator = i->fontlist;
1360     while(iterator) {
1361         TAG*mtag = i->swf.firstTag;
1362         if(iterator->swffont) {
1363             mtag = swf_InsertTag(mtag, ST_DEFINEFONT2);
1364             /*if(!storeallcharacters)
1365                 swf_FontReduce(iterator->swffont);*/
1366             swf_FontSetDefine2(mtag, iterator->swffont);
1367         }
1368
1369         iterator = iterator->next;
1370     }
1371     i->tag = swf_InsertTag(i->tag,ST_END);
1372     TAG* tag = i->tag->prev;
1373
1374     /* remove the removeobject2 tags between the last ST_SHOWFRAME
1375        and the ST_END- they confuse the flash player  */
1376     while(tag->id == ST_REMOVEOBJECT2) {
1377         TAG* prev = tag->prev;
1378         swf_DeleteTag(tag);
1379         tag = prev;
1380     }
1381 }
1382
1383 SWF* swfoutput_get(struct swfoutput*obj)
1384 {
1385     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1386
1387     swfoutput_finalize(obj);
1388
1389     return swf_CopySWF(&i->swf);
1390 }
1391
1392 void swfoutput_getdimensions(struct swfoutput*obj, int*x1, int*y1, int*x2, int*y2)
1393 {
1394     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1395     if(x1) *x1 = i->swf.movieSize.xmin/20;
1396     if(y1) *y1 = i->swf.movieSize.ymin/20;
1397     if(x2) *x2 = i->swf.movieSize.xmax/20;
1398     if(y2) *y2 = i->swf.movieSize.ymax/20;
1399 }
1400
1401 int swfoutput_save(struct swfoutput* obj, char*filename) 
1402 {
1403     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1404     swfoutput_finalize(obj);
1405
1406     int fi;
1407     if(filename)
1408      fi = open(filename, O_BINARY|O_CREAT|O_TRUNC|O_WRONLY, 0777);
1409     else
1410      fi = 1; // stdout
1411     
1412     if(fi<=0) {
1413      msg("<fatal> Could not create \"%s\". ", FIXNULL(filename));
1414      return 0;
1415     }
1416     
1417     if(config_enablezlib || config_flashversion>=6) {
1418       if FAILED(swf_WriteSWC(fi,&i->swf)) 
1419        msg("<error> WriteSWC() failed.\n");
1420     } else {
1421       if FAILED(swf_WriteSWF(fi,&i->swf)) 
1422        msg("<error> WriteSWF() failed.\n");
1423     }
1424
1425     if(filename)
1426      close(fi);
1427     msg("<notice> SWF written\n");
1428     return 1;
1429 }
1430
1431 /* Perform cleaning up, complete the swf, and write it out. */
1432 void swfoutput_destroy(struct swfoutput* obj) 
1433 {
1434     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1435     if(!i) {
1436         /* not initialized yet- nothing to destroy */
1437         return;
1438     }
1439
1440     fontlist_t *tmp,*iterator = i->fontlist;
1441     while(iterator) {
1442         if(iterator->swffont) {
1443             swf_FontFree(iterator->swffont);iterator->swffont=0;
1444         }
1445         tmp = iterator;
1446         iterator = iterator->next;
1447         delete tmp;
1448     }
1449     swf_FreeTags(&i->swf);
1450
1451     free(i);i=0;
1452     memset(obj, 0, sizeof(swfoutput));
1453 }
1454
1455 static void swfoutput_setfillcolor(swfoutput* obj, U8 r, U8 g, U8 b, U8 a)
1456 {
1457     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1458     if(obj->fillrgb.r == r &&
1459        obj->fillrgb.g == g &&
1460        obj->fillrgb.b == b &&
1461        obj->fillrgb.a == a) return;
1462     if(i->shapeid>=0)
1463      endshape(obj);
1464
1465     obj->fillrgb.r = r;
1466     obj->fillrgb.g = g;
1467     obj->fillrgb.b = b;
1468     obj->fillrgb.a = a;
1469 }
1470
1471 static void swfoutput_setstrokecolor(swfoutput* obj, U8 r, U8 g, U8 b, U8 a)
1472 {
1473     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1474     if(obj->strokergb.r == r &&
1475        obj->strokergb.g == g &&
1476        obj->strokergb.b == b &&
1477        obj->strokergb.a == a) return;
1478
1479     if(i->shapeid>=0)
1480      endshape(obj);
1481     obj->strokergb.r = r;
1482     obj->strokergb.g = g;
1483     obj->strokergb.b = b;
1484     obj->strokergb.a = a;
1485 }
1486
1487 static void swfoutput_setlinewidth(struct swfoutput*obj, double _linewidth)
1488 {
1489     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1490     if(i->linewidth == (U16)(_linewidth*20))
1491         return;
1492
1493     if(i->shapeid>=0)
1494         endshape(obj);
1495     i->linewidth = (U16)(_linewidth*20);
1496 }
1497
1498
1499 static void drawlink(struct swfoutput*obj, ActionTAG*,ActionTAG*, swfcoord*points, char mouseover);
1500
1501 void swfoutput_linktourl(struct swfoutput*obj, char*url, swfcoord*points)
1502 {
1503     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1504     ActionTAG* actions;
1505     if(!strncmp("http://pdf2swf:", url, 15)) {
1506      char*tmp = strdup(url);
1507      int l = strlen(tmp);
1508      if(tmp[l-1] == '/')
1509         tmp[l-1] = 0;
1510      swfoutput_namedlink(obj, tmp+15, points);
1511      free(tmp);
1512      return;
1513     }
1514     
1515     if(i->shapeid>=0)
1516         endshape(obj);
1517     if(i->textid>=0)
1518         endtext(obj);
1519     
1520     if(config_opennewwindow)
1521       actions = action_GetUrl(0, url, "_parent");
1522     else
1523       actions = action_GetUrl(0, url, "_this");
1524     actions = action_End(actions);
1525     
1526     drawlink(obj, actions, 0, points,0);
1527 }
1528 void swfoutput_linktopage(struct swfoutput*obj, int page, swfcoord*points)
1529 {
1530     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1531     ActionTAG* actions;
1532
1533     if(i->shapeid>=0)
1534         endshape(obj);
1535     if(i->textid>=0)
1536         endtext(obj);
1537    
1538       actions = action_GotoFrame(0, page);
1539       actions = action_End(actions);
1540
1541     drawlink(obj, actions, 0, points,0);
1542 }
1543
1544 /* Named Links (a.k.a. Acrobatmenu) are used to implement various gadgets
1545    of the viewer objects, like subtitles, index elements etc.
1546 */
1547 void swfoutput_namedlink(struct swfoutput*obj, char*name, swfcoord*points)
1548 {
1549     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1550     ActionTAG *actions1,*actions2;
1551     char*tmp = strdup(name);
1552     char mouseover = 1;
1553
1554     if(i->shapeid>=0)
1555         endshape(obj);
1556     if(i->textid>=0)
1557         endtext(obj);
1558
1559     if(!strncmp(tmp, "call:", 5))
1560     {
1561         char*x = strchr(&tmp[5], ':');
1562         if(!x) {
1563             actions1 = action_PushInt(0, 0); //number of parameters (0)
1564             actions1 = action_PushString(actions1, &tmp[5]); //function name
1565             actions1 = action_CallFunction(actions1);
1566         } else {
1567             *x = 0;
1568             actions1 = action_PushString(0, x+1); //parameter
1569             actions1 = action_PushInt(actions1, 1); //number of parameters (1)
1570             actions1 = action_PushString(actions1, &tmp[5]); //function name
1571             actions1 = action_CallFunction(actions1);
1572         }
1573         actions2 = action_End(0);
1574         mouseover = 0;
1575     }
1576     else
1577     {
1578         actions1 = action_PushString(0, "/:subtitle");
1579         actions1 = action_PushString(actions1, name);
1580         actions1 = action_SetVariable(actions1);
1581         actions1 = action_End(actions1);
1582
1583         actions2 = action_PushString(0, "/:subtitle");
1584         actions2 = action_PushString(actions2, "");
1585         actions2 = action_SetVariable(actions2);
1586         actions2 = action_End(actions2);
1587     }
1588
1589     drawlink(obj, actions1, actions2, points,mouseover);
1590
1591     swf_ActionFree(actions1);
1592     swf_ActionFree(actions2);
1593     free(tmp);
1594 }
1595
1596 static void drawlink(struct swfoutput*obj, ActionTAG*actions1, ActionTAG*actions2, swfcoord*points, char mouseover)
1597 {
1598     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1599     RGBA rgb;
1600     SRECT r;
1601     int lsid=0;
1602     int fsid;
1603     struct plotxy p1,p2,p3,p4;
1604     int myshapeid;
1605     int myshapeid2;
1606     double xmin,ymin;
1607     double xmax=xmin=points[0].x,ymax=ymin=points[0].y;
1608     double posx = 0;
1609     double posy = 0;
1610     int t;
1611     int buttonid = ++i->currentswfid;
1612     for(t=1;t<4;t++)
1613     {
1614         if(points[t].x>xmax) xmax=points[t].x;
1615         if(points[t].y>ymax) ymax=points[t].y;
1616         if(points[t].x<xmin) xmin=points[t].x;
1617         if(points[t].y<ymin) ymin=points[t].y;
1618     }
1619
1620     p1.x=points[0].x; p1.y=points[0].y; p2.x=points[1].x; p2.y=points[1].y; 
1621     p3.x=points[2].x; p3.y=points[2].y; p4.x=points[3].x; p4.y=points[3].y;
1622    
1623     /* the following code subtracts the upper left edge from all coordinates,
1624        and set's posx,posy so that ST_PLACEOBJECT is used with a matrix.
1625        Necessary for preprocessing with swfcombine. */
1626     posx = xmin; posy = ymin;
1627     p1.x-=posx;p2.x-=posx;p3.x-=posx;p4.x-=posx;
1628     p1.y-=posy;p2.y-=posy;p3.y-=posy;p4.y-=posy;
1629     xmin -= posx; ymin -= posy;
1630     xmax -= posx; ymax -= posy;
1631     
1632     /* shape */
1633     myshapeid = ++i->currentswfid;
1634     i->tag = swf_InsertTag(i->tag,ST_DEFINESHAPE3);
1635     swf_ShapeNew(&i->shape);
1636     rgb.r = rgb.b = rgb.a = rgb.g = 0; 
1637     fsid = swf_ShapeAddSolidFillStyle(i->shape,&rgb);
1638     swf_SetU16(i->tag, myshapeid);
1639     r.xmin = (int)(xmin*20);
1640     r.ymin = (int)(ymin*20);
1641     r.xmax = (int)(xmax*20);
1642     r.ymax = (int)(ymax*20);
1643     swf_SetRect(i->tag,&r);
1644     swf_SetShapeStyles(i->tag,i->shape);
1645     swf_ShapeCountBits(i->shape,NULL,NULL);
1646     swf_SetShapeBits(i->tag,i->shape);
1647     swf_ShapeSetAll(i->tag,i->shape,/*x*/0,/*y*/0,0,fsid,0);
1648     i->swflastx = i->swflasty = 0;
1649     moveto(obj, i->tag, p1);
1650     lineto(obj, i->tag, p2);
1651     lineto(obj, i->tag, p3);
1652     lineto(obj, i->tag, p4);
1653     lineto(obj, i->tag, p1);
1654     swf_ShapeSetEnd(i->tag);
1655
1656     /* shape2 */
1657     myshapeid2 = ++i->currentswfid;
1658     i->tag = swf_InsertTag(i->tag,ST_DEFINESHAPE3);
1659     swf_ShapeNew(&i->shape);
1660     rgb.r = rgb.b = rgb.a = rgb.g = 255;
1661     rgb.a = 40;
1662     fsid = swf_ShapeAddSolidFillStyle(i->shape,&rgb);
1663     swf_SetU16(i->tag, myshapeid2);
1664     r.xmin = (int)(xmin*20);
1665     r.ymin = (int)(ymin*20);
1666     r.xmax = (int)(xmax*20);
1667     r.ymax = (int)(ymax*20);
1668     swf_SetRect(i->tag,&r);
1669     swf_SetShapeStyles(i->tag,i->shape);
1670     swf_ShapeCountBits(i->shape,NULL,NULL);
1671     swf_SetShapeBits(i->tag,i->shape);
1672     swf_ShapeSetAll(i->tag,i->shape,/*x*/0,/*y*/0,0,fsid,0);
1673     i->swflastx = i->swflasty = 0;
1674     moveto(obj, i->tag, p1);
1675     lineto(obj, i->tag, p2);
1676     lineto(obj, i->tag, p3);
1677     lineto(obj, i->tag, p4);
1678     lineto(obj, i->tag, p1);
1679     swf_ShapeSetEnd(i->tag);
1680
1681     if(!mouseover)
1682     {
1683         i->tag = swf_InsertTag(i->tag,ST_DEFINEBUTTON);
1684         swf_SetU16(i->tag,buttonid); //id
1685         swf_ButtonSetFlags(i->tag, 0); //menu=no
1686         swf_ButtonSetRecord(i->tag,0x01,myshapeid,i->depth,0,0);
1687         swf_ButtonSetRecord(i->tag,0x02,myshapeid2,i->depth,0,0);
1688         swf_ButtonSetRecord(i->tag,0x04,myshapeid2,i->depth,0,0);
1689         swf_ButtonSetRecord(i->tag,0x08,myshapeid,i->depth,0,0);
1690         swf_SetU8(i->tag,0);
1691         swf_ActionSet(i->tag,actions1);
1692         swf_SetU8(i->tag,0);
1693     }
1694     else
1695     {
1696         i->tag = swf_InsertTag(i->tag,ST_DEFINEBUTTON2);
1697         swf_SetU16(i->tag,buttonid); //id
1698         swf_ButtonSetFlags(i->tag, 0); //menu=no
1699         swf_ButtonSetRecord(i->tag,0x01,myshapeid,i->depth,0,0);
1700         swf_ButtonSetRecord(i->tag,0x02,myshapeid2,i->depth,0,0);
1701         swf_ButtonSetRecord(i->tag,0x04,myshapeid2,i->depth,0,0);
1702         swf_ButtonSetRecord(i->tag,0x08,myshapeid,i->depth,0,0);
1703         swf_SetU8(i->tag,0); // end of button records
1704         swf_ButtonSetCondition(i->tag, BC_IDLE_OVERUP);
1705         swf_ActionSet(i->tag,actions1);
1706         if(actions2) {
1707             swf_ButtonSetCondition(i->tag, BC_OVERUP_IDLE);
1708             swf_ActionSet(i->tag,actions2);
1709             swf_SetU8(i->tag,0);
1710             swf_ButtonPostProcess(i->tag, 2);
1711         } else {
1712             swf_SetU8(i->tag,0);
1713             swf_ButtonPostProcess(i->tag, 1);
1714         }
1715     }
1716     
1717     i->tag = swf_InsertTag(i->tag,ST_PLACEOBJECT2);
1718
1719     if(posx!=0 || posy!=0) {
1720         SPOINT p;
1721         p.x = (int)(posx*20);
1722         p.y = (int)(posy*20);
1723         p = swf_TurnPoint(p, &i->page_matrix);
1724         MATRIX m;
1725         m = i->page_matrix;
1726         m.tx = p.x;
1727         m.ty = p.y;
1728         swf_ObjectPlace(i->tag, buttonid, i->depth++,&m,0,0);
1729     }
1730     else {
1731         swf_ObjectPlace(i->tag, buttonid, i->depth++,&i->page_matrix,0,0);
1732     }
1733 }
1734
1735       
1736 ///////////
1737 /*
1738 for(t=0;t<picpos;t++)
1739       {
1740           if(pic_xids[t] == xid &&
1741              pic_yids[t] == yid) {
1742               width = pic_width[t];
1743               height = pic_height[t];
1744               found = t;break;
1745           }
1746       }
1747           pic_ids[picpos] = swfoutput_drawimagelosslessN(&output, pic, pal, width, height, x1,y1,x2,y2,x3,y3,x4,y4, numpalette);
1748           pic_xids[picpos] = xid;
1749           pic_yids[picpos] = yid;
1750           pic_width[picpos] = width;
1751           pic_height[picpos] = height;
1752           if(picpos<1024)
1753               picpos++;
1754             pic[width*y+x] = buf[0];
1755             xid+=x*buf[0]+1;
1756             yid+=y*buf[0]*3+1;
1757       
1758             xid += pal[1].r*3 + pal[1].g*11 + pal[1].b*17;
1759       yid += pal[1].r*7 + pal[1].g*5 + pal[1].b*23;
1760       
1761       int xid = 0;
1762       int yid = 0;
1763           xid += x*r+x*b*3+x*g*7+x*a*11;
1764           yid += y*r*3+y*b*17+y*g*19+y*a*11;
1765       int t,found = -1;
1766       for(t=0;t<picpos;t++)
1767       {
1768           if(pic_xids[t] == xid &&
1769              pic_yids[t] == yid) {
1770               found = t;break;
1771           }
1772       }
1773       if(found<0) {
1774 */
1775 ///////////
1776
1777 static void drawgfxline(struct swfoutput*obj, gfxline_t*line)
1778 {
1779     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1780     gfxcoord_t lastx=0,lasty=0,px=0,py=0;
1781     char lastwasmoveto;
1782     while(1) {
1783         if(!line)
1784             break;
1785         /* check whether the next segment is zero */
1786         if(line->type == gfx_moveTo) {
1787             msg("<trace> ======== moveTo %.2f %.2f", line->x, line->y);
1788             moveto(obj, i->tag, line->x, line->y);
1789             px = lastx = line->x;
1790             py = lasty = line->y;
1791             lastwasmoveto = 1;
1792         } if(line->type == gfx_lineTo) {
1793             msg("<trace> ======== lineTo %.2f %.2f", line->x, line->y);
1794             lineto(obj, i->tag, line->x, line->y);
1795             px = line->x;
1796             py = line->y;
1797             lastwasmoveto = 0;
1798         } else if(line->type == gfx_splineTo) {
1799             msg("<trace> ======== splineTo  %.2f %.2f", line->x, line->y);
1800             plotxy s,p;
1801             s.x = line->sx;p.x = line->x;
1802             s.y = line->sy;p.y = line->y;
1803             splineto(obj, i->tag, s, p);
1804             px = line->x;
1805             py = line->y;
1806             lastwasmoveto = 0;
1807         }
1808         line = line->next;
1809     }
1810 }
1811
1812 void swfoutput_drawgfxline(struct swfoutput*obj, gfxline_t*line, gfxcoord_t width, gfxcolor_t*col, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit)
1813 {
1814     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1815     gfxdevice_t*dev = &i->device;
1816     dev->stroke(dev, line, width, col, cap_style, joint_style, miterLimit);
1817 }
1818 void swfoutput_fillgfxline(struct swfoutput*obj, gfxline_t*line, gfxcolor_t*col)
1819 {
1820     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1821     gfxdevice_t*dev = &i->device;
1822     dev->fill(dev, line, col);
1823 }
1824 void swfoutput_startclip(struct swfoutput*obj, gfxline_t*line)
1825 {
1826     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1827     gfxdevice_t*dev = &i->device;
1828     dev->startclip(dev, line);
1829 }
1830 void swfoutput_endclip(struct swfoutput*obj)
1831 {
1832     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1833     gfxdevice_t*dev = &i->device;
1834     dev->endclip(dev);
1835 }
1836
1837 #define IMAGE_TYPE_JPEG 0
1838 #define IMAGE_TYPE_LOSSLESS 1
1839
1840 static void swfoutput_drawimage(struct swfoutput*obj, RGBA* data, int sizex,int sizey, 
1841         double x1,double y1,
1842         double x2,double y2,
1843         double x3,double y3,
1844         double x4,double y4, int type)
1845 {
1846     swfoutput_internal*i = (swfoutput_internal*)obj->internal;
1847
1848     RGBA*newpic=0;
1849     
1850     double l1 = sqrt((x4-x1)*(x4-x1) + (y4-y1)*(y4-y1));
1851     double l2 = sqrt((x2-x1)*(x2-x1) + (y2-y1)*(y2-y1));
1852    
1853     gfxline_t p1,p2,p3,p4,p5;
1854     p1.type=gfx_moveTo;p1.x=x1; p1.y=y1;p1.next=&p2;
1855     p2.type=gfx_lineTo;p2.x=x2; p2.y=y2;p2.next=&p3;
1856     p3.type=gfx_lineTo;p3.x=x3; p3.y=y3;p3.next=&p4;
1857     p4.type=gfx_lineTo;p4.x=x4; p4.y=y4;p4.next=&p5;
1858     p5.type=gfx_lineTo;p5.x=x1; p5.y=y1;p5.next=0;
1859
1860     {p1.x = (int)(p1.x*20)/20.0;
1861      p1.y = (int)(p1.y*20)/20.0;
1862      p2.x = (int)(p2.x*20)/20.0;
1863      p2.y = (int)(p2.y*20)/20.0;
1864      p3.x = (int)(p3.x*20)/20.0;
1865      p3.y = (int)(p3.y*20)/20.0;
1866      p4.x = (int)(p4.x*20)/20.0;
1867      p4.y = (int)(p4.y*20)/20.0;
1868      p5.x = (int)(p5.x*20)/20.0;
1869      p5.y = (int)(p5.y*20)/20.0;
1870     }
1871     
1872     float m00,m10,tx;
1873     float m01,m11,ty;
1874     
1875     gfxmatrix_t m;
1876     m.m00 = (p4.x-p1.x)/sizex; m.m10 = (p2.x-p1.x)/sizey;
1877     m.m01 = (p4.y-p1.y)/sizex; m.m11 = (p2.y-p1.y)/sizey;
1878     m.tx = p1.x - 0.5;
1879     m.ty = p1.y - 0.5;
1880
1881     gfximage_t img;
1882     img.data = (gfxcolor_t*)data;
1883     img.width = sizex;
1884     img.height = sizey;
1885   
1886     if(type == IMAGE_TYPE_JPEG)
1887         /* TODO: pass image_dpi to device instead */
1888         i->device.setparameter(&i->device, "next_bitmap_is_jpeg", "1");
1889
1890     i->device.fillbitmap(&i->device, &p1, &img, &m, 0);
1891 }
1892
1893 void swfoutput_drawimagejpeg(struct swfoutput*obj, RGBA*mem, int sizex,int sizey, 
1894         double x1,double y1, double x2,double y2, double x3,double y3, double x4,double y4)
1895 {
1896     swfoutput_drawimage(obj,mem,sizex,sizey,x1,y1,x2,y2,x3,y3,x4,y4, IMAGE_TYPE_JPEG);
1897 }
1898
1899 void swfoutput_drawimagelossless(struct swfoutput*obj, RGBA*mem, int sizex,int sizey, 
1900         double x1,double y1, double x2,double y2, double x3,double y3, double x4,double y4)
1901 {
1902     swfoutput_drawimage(obj,mem,sizex,sizey,x1,y1,x2,y2,x3,y3,x4,y4, IMAGE_TYPE_LOSSLESS);
1903 }
1904
1905 void swfoutput_setparameter(char*name, char*value)
1906 {
1907     if(!strcmp(name, "jpegsubpixels")) {
1908         config_jpegsubpixels = atof(value);
1909     } else if(!strcmp(name, "ppmsubpixels")) {
1910         config_ppmsubpixels = atof(value);
1911     } else if(!strcmp(name, "drawonlyshapes")) {
1912         config_drawonlyshapes = atoi(value);
1913     } else if(!strcmp(name, "ignoredraworder")) {
1914         config_ignoredraworder = atoi(value);
1915     } else if(!strcmp(name, "filloverlap")) {
1916         config_filloverlap = atoi(value);
1917     } else if(!strcmp(name, "linksopennewwindow")) {
1918         config_opennewwindow = atoi(value);
1919     } else if(!strcmp(name, "opennewwindow")) {
1920         config_opennewwindow = atoi(value);
1921     } else if(!strcmp(name, "storeallcharacters")) {
1922         config_storeallcharacters = atoi(value);
1923     } else if(!strcmp(name, "enablezlib")) {
1924         config_enablezlib = atoi(value);
1925     } else if(!strcmp(name, "insertstop")) {
1926         config_insertstoptag = atoi(value);
1927     } else if(!strcmp(name, "protected")) {
1928         config_protect = atoi(value);
1929     } else if(!strcmp(name, "flashversion")) {
1930         config_flashversion = atoi(value);
1931     } else if(!strcmp(name, "minlinewidth")) {
1932         config_minlinewidth = atof(value);
1933     } else if(!strcmp(name, "caplinewidth")) {
1934         config_caplinewidth = atof(value);
1935     } else if(!strcmp(name, "jpegquality")) {
1936         int val = atoi(value);
1937         if(val<0) val=0;
1938         if(val>100) val=100;
1939         config_jpegquality = val;
1940     } else if(!strcmp(name, "splinequality")) {
1941         int v = atoi(value);
1942         v = 500-(v*5); // 100% = 0.25 pixel, 0% = 25 pixel
1943         if(v<1) v = 1;
1944         config_splinemaxerror = v;
1945     } else if(!strcmp(name, "fontquality")) {
1946         int v = atoi(value);
1947         v = 500-(v*5); // 100% = 0.25 pixel, 0% = 25 pixel
1948         if(v<1) v = 1;
1949         config_fontsplinemaxerror = v;
1950     } else {
1951         fprintf(stderr, "unknown parameter: %s (=%s)\n", name, value);
1952     }
1953 }
1954
1955 // --------------------------------------------------------------------
1956
1957 static CXFORM gfxcxform_to_cxform(gfxcxform_t* c)
1958 {
1959     CXFORM cx;
1960     swf_GetCXForm(0, &cx, 1);
1961     if(!c)
1962         return cx;
1963     if(c->rg!=0 || c->rb!=0 || c->ra!=0 ||
1964        c->gr!=0 || c->gb!=0 || c->ga!=0 ||
1965        c->br!=0 || c->bg!=0 || c->ba!=0 ||
1966        c->ar!=0 || c->ag!=0 || c->ab!=0)
1967         msg("<warning> CXForm not SWF-compatible");
1968
1969     cx.a0 = (S16)(c->aa*256);
1970     cx.r0 = (S16)(c->rr*256);
1971     cx.g0 = (S16)(c->gg*256);
1972     cx.b0 = (S16)(c->bb*256);
1973     cx.a1 = c->t.a;
1974     cx.r1 = c->t.r;
1975     cx.g1 = c->t.g;
1976     cx.b1 = c->t.b;
1977     return cx;
1978 }
1979
1980 ArtSVP* gfxstrokeToSVP(gfxline_t*line, gfxcoord_t width, gfx_capType cap_style, gfx_joinType joint_style, double miterLimit)
1981 {
1982     ArtVpath *vec = NULL;
1983     ArtSVP *svp = NULL;
1984     int pos=0,len=0;
1985     gfxline_t*l2;
1986     double x=0,y=0;
1987
1988     l2 = line;
1989     while(l2) {
1990         if(l2->type == gfx_moveTo) {
1991             pos ++;
1992         } if(l2->type == gfx_lineTo) {
1993             pos ++;
1994         } if(l2->type == gfx_splineTo) {
1995             int parts = (int)(sqrt(fabs(l2->x-2*l2->sx+x) + fabs(l2->y-2*l2->sy+y))/3);
1996             if(!parts) parts = 1;
1997             pos += parts + 1;
1998         }
1999         x = l2->x;
2000         y = l2->y;
2001         l2 = l2->next;
2002     }
2003     pos++;
2004     len = pos;
2005
2006     vec = art_new (ArtVpath, len);
2007
2008     pos = 0;
2009     l2 = line;
2010     while(l2) {
2011         if(l2->type == gfx_moveTo) {
2012             vec[pos].code = ART_MOVETO;
2013             vec[pos].x = l2->x;
2014             vec[pos].y = l2->y;
2015             pos++; 
2016             assert(pos<=len);
2017         } else if(l2->type == gfx_lineTo) {
2018             vec[pos].code = ART_LINETO;
2019             vec[pos].x = l2->x;
2020             vec[pos].y = l2->y;
2021             pos++; 
2022             assert(pos<=len);
2023         } else if(l2->type == gfx_splineTo) {
2024             int i;
2025             int parts = (int)(sqrt(fabs(l2->x-2*l2->sx+x) + fabs(l2->y-2*l2->sy+y))/3);
2026             if(!parts) parts = 1;
2027             for(i=0;i<=parts;i++) {
2028                 double t = (double)i/(double)parts;
2029                 vec[pos].code = ART_LINETO;
2030                 vec[pos].x = l2->x*t*t + 2*l2->sx*t*(1-t) + x*(1-t)*(1-t);
2031                 vec[pos].y = l2->y*t*t + 2*l2->sy*t*(1-t) + y*(1-t)*(1-t);
2032                 pos++;
2033                 assert(pos<=len);
2034             }
2035         }
2036         x = l2->x;
2037         y = l2->y;
2038         l2 = l2->next;
2039     }
2040     vec[pos].code = ART_END;
2041                         
2042     svp = art_svp_vpath_stroke (vec,
2043                         (joint_style==gfx_joinMiter)?ART_PATH_STROKE_JOIN_MITER:
2044                         ((joint_style==gfx_joinRound)?ART_PATH_STROKE_JOIN_ROUND:
2045                          ((joint_style==gfx_joinBevel)?ART_PATH_STROKE_JOIN_BEVEL:ART_PATH_STROKE_JOIN_BEVEL)),
2046                         (cap_style==gfx_capButt)?ART_PATH_STROKE_CAP_BUTT:
2047                         ((cap_style==gfx_capRound)?ART_PATH_STROKE_CAP_ROUND:
2048                          ((cap_style==gfx_capSquare)?ART_PATH_STROKE_CAP_SQUARE:ART_PATH_STROKE_CAP_SQUARE)),
2049                         width, //line_width
2050                         miterLimit, //miter_limit
2051                         0.05 //flatness
2052                         );
2053     free(vec);
2054     return svp;
2055 }
2056
2057 gfxline_t* SVPtogfxline(ArtSVP*svp)
2058 {
2059     int size = 0;
2060     int t;
2061     int pos = 0;
2062     for(t=0;t<svp->n_segs;t++) {
2063         size += svp->segs[t].n_points + 1;
2064     }
2065     gfxline_t* lines = (gfxline_t*)rfx_alloc(sizeof(gfxline_t)*size);
2066
2067     for(t=0;t<svp->n_segs;t++) {
2068         ArtSVPSeg* seg = &svp->segs[t];
2069         int p;
2070         for(p=0;p<seg->n_points;p++) {
2071             lines[pos].type = p==0?gfx_moveTo:gfx_lineTo;
2072             ArtPoint* point = &seg->points[p];
2073             lines[pos].x = point->x;
2074             lines[pos].y = point->y;
2075             lines[pos].next = &lines[pos+1];
2076             pos++;
2077         }
2078     }
2079     if(pos) {
2080         lines[pos-1].next = 0;
2081         return lines;
2082     } else {
2083         return 0;
2084     }
2085 }
2086
2087 static int add_image(swfoutput_internal*i, gfximage_t*img, int targetwidth, int targetheight, int* newwidth, int* newheight)
2088 {
2089     RGBA*newpic = 0;
2090     RGBA*mem = (RGBA*)img->data;
2091     int bitid = ++i->currentswfid;
2092     
2093     int sizex = img->width;
2094     int sizey = img->height;
2095     int is_jpeg = i->jpeg;
2096     i->jpeg = 0;
2097
2098     int newsizex=sizex, newsizey=sizey;
2099
2100     /// {
2101     if(is_jpeg && config_jpegsubpixels) {
2102         newsizex = (int)(targetwidth*config_jpegsubpixels+0.5);
2103         newsizey = (int)(targetheight*config_jpegsubpixels+0.5);
2104     } else if(!is_jpeg && config_ppmsubpixels) {
2105         newsizex = (int)(targetwidth*config_ppmsubpixels+0.5);
2106         newsizey = (int)(targetheight*config_ppmsubpixels+0.5);
2107     }
2108     /// }
2109
2110     if(sizex<=0 || sizey<=0 || newsizex<=0 || newsizey<=0)
2111         return -1;
2112
2113     /* TODO: cache images */
2114     *newwidth = sizex;
2115     *newheight  = sizey;
2116     
2117     if(newsizex<sizex || newsizey<sizey) {
2118         newpic = swf_ImageScale(mem, sizex, sizey, newsizex, newsizey);
2119         *newwidth = sizex = newsizex;
2120         *newheight  = sizey = newsizey;
2121         mem = newpic;
2122     
2123     }
2124
2125     int num_colors = swf_ImageGetNumberOfPaletteEntries(mem,sizex,sizey,0);
2126     int has_alpha = swf_ImageHasAlpha(mem,sizex,sizey);
2127     
2128     msg("<verbose> Drawing %dx%d %s%simage at size %dx%d (%dx%d), %s%d colors",
2129             sizex, sizey, 
2130             has_alpha?(has_alpha==2?"semi-transparent ":"transparent "):"", 
2131             is_jpeg?"jpeg-":"",
2132             newsizex, newsizey,
2133             targetwidth, targetheight,
2134             /*newsizex, newsizey,*/
2135             num_colors>256?">":"", num_colors>256?256:num_colors);
2136
2137     /*RGBA* pal = (RGBA*)rfx_alloc(sizeof(RGBA)*num_colors);
2138     swf_ImageGetNumberOfPaletteEntries(mem,sizex,sizey,pal);
2139     int t;
2140     for(t=0;t<num_colors;t++) {
2141         printf("%02x%02x%02x%02x ",
2142                 pal[t].r, pal[t].g, pal[t].b, pal[t].a);
2143         if((t&7)==7)
2144             printf("\n");
2145     }
2146     printf("\n");*/
2147
2148     i->tag = swf_AddImage(i->tag, bitid, mem, sizex, sizey, config_jpegquality);
2149
2150     if(newpic)
2151         free(newpic);
2152
2153     return bitid;
2154 }
2155
2156 static SRECT gfxline_getSWFbbox(gfxline_t*line)
2157 {
2158     gfxbbox_t bbox = gfxline_getbbox(line);
2159     SRECT r;
2160     r.xmin = (int)(bbox.xmin*20);
2161     r.ymin = (int)(bbox.ymin*20);
2162     r.xmax = (int)(bbox.xmax*20);
2163     r.ymax = (int)(bbox.ymax*20);
2164     return r;
2165 }
2166
2167 void swf_fillbitmap(gfxdevice_t*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*matrix, gfxcxform_t*cxform)
2168 {
2169     swfoutput_internal*i = (swfoutput_internal*)dev->internal;
2170     swfoutput*obj = i->obj;
2171
2172     endshape(obj);
2173     endtext(obj);
2174
2175     int targetx = (int)(sqrt(matrix->m00*matrix->m00 + matrix->m01*matrix->m01)*img->width);
2176     int targety = (int)(sqrt(matrix->m10*matrix->m10 + matrix->m11*matrix->m11)*img->height);
2177
2178     int newwidth=0,newheight=0;
2179     int bitid = add_image(i, img, targetx, targety, &newwidth, &newheight);
2180     if(bitid<0)
2181         return;
2182     double fx = (double)img->width / (double)newwidth;
2183     double fy = (double)img->height / (double)newheight;
2184
2185     MATRIX m;
2186     float m00,m10,tx;
2187     float m01,m11,ty;
2188     m.sx = (int)(65536*20*matrix->m00*fx); m.r1 = (int)(65536*20*matrix->m10*fy);
2189     m.r0 = (int)(65536*20*matrix->m01*fx); m.sy = (int)(65536*20*matrix->m11*fy);
2190     m.tx = (int)(matrix->tx*20);
2191     m.ty = (int)(matrix->ty*20);
2192   
2193     /* shape */
2194     int myshapeid = ++i->currentswfid;
2195     i->tag = swf_InsertTag(i->tag,ST_DEFINESHAPE);
2196     SHAPE*shape;
2197     swf_ShapeNew(&shape);
2198     int fsid = swf_ShapeAddBitmapFillStyle(shape,&m,bitid,1);
2199     swf_SetU16(i->tag, myshapeid);
2200     SRECT r = gfxline_getSWFbbox(line);
2201     swf_SetRect(i->tag,&r);
2202     swf_SetShapeStyles(i->tag,shape);
2203     swf_ShapeCountBits(shape,NULL,NULL);
2204     swf_SetShapeBits(i->tag,shape);
2205     swf_ShapeSetAll(i->tag,shape,UNDEFINED_COORD,UNDEFINED_COORD,0,fsid,0);
2206     i->swflastx = i->swflasty = UNDEFINED_COORD;
2207     drawgfxline(obj, line);
2208     swf_ShapeSetEnd(i->tag);
2209     swf_ShapeFree(shape);
2210
2211     i->tag = swf_InsertTag(i->tag,ST_PLACEOBJECT2);
2212     CXFORM cxform2 = gfxcxform_to_cxform(cxform);
2213     swf_ObjectPlace(i->tag,myshapeid,/*depth*/i->depth++,&i->page_matrix,&cxform2,NULL);
2214 }
2215
2216 void swf_startclip(gfxdevice_t*dev, gfxline_t*line)
2217 {
2218     swfoutput_internal*i = (swfoutput_internal*)dev->internal;
2219     swfoutput*obj = i->obj;
2220
2221     endtext(obj);
2222     endshape(obj);
2223
2224     if(i->clippos >= 127)
2225     {
2226         msg("<warning> Too many clip levels.");
2227         i->clippos --;
2228     } 
2229
2230     int myshapeid = ++i->currentswfid;
2231     i->tag = swf_InsertTag(i->tag,ST_DEFINESHAPE);
2232     RGBA col;
2233     memset(&col, 0, sizeof(RGBA));
2234     SHAPE*shape;
2235     swf_ShapeNew(&shape);
2236     int fsid = swf_ShapeAddSolidFillStyle(shape,&col);
2237     swf_SetU16(i->tag,myshapeid);
2238     SRECT r = gfxline_getSWFbbox(line);
2239     swf_SetRect(i->tag,&r);
2240     swf_SetShapeStyles(i->tag,shape);
2241     swf_ShapeCountBits(shape,NULL,NULL);
2242     swf_SetShapeBits(i->tag,shape);
2243     swf_ShapeSetAll(i->tag,shape,UNDEFINED_COORD,UNDEFINED_COORD,0,fsid,0);
2244     i->swflastx = i->swflasty = UNDEFINED_COORD;
2245     drawgfxline(obj, line);
2246     swf_ShapeSetEnd(i->tag);
2247     swf_ShapeFree(shape);
2248
2249     /* TODO: remember the bbox, and check all shapes against it */
2250     
2251     i->tag = swf_InsertTag(i->tag,ST_PLACEOBJECT2);
2252     i->cliptags[i->clippos] = i->tag;
2253     i->clipshapes[i->clippos] = myshapeid;
2254     i->clipdepths[i->clippos] = i->depth++;
2255     i->clippos++;
2256 }
2257
2258 void swf_endclip(gfxdevice_t*dev)
2259 {
2260     swfoutput_internal*i = (swfoutput_internal*)dev->internal;
2261     swfoutput*obj = i->obj;
2262     if(i->textid>=0)
2263         endtext(obj);
2264     if(i->shapeid>=0)
2265         endshape(obj);
2266
2267     if(!i->clippos) {
2268         msg("<error> Invalid end of clipping region");
2269         return;
2270     }
2271     i->clippos--;
2272     swf_ObjectPlaceClip(i->cliptags[i->clippos],i->clipshapes[i->clippos],i->clipdepths[i->clippos],&i->page_matrix,NULL,NULL,i->depth++);
2273 }
2274 int swf_setparameter(gfxdevice_t*dev, const char*key, const char*value)
2275 {
2276     if(!strcmp(key, "next_bitmap_is_jpeg")) {
2277         ((swfoutput_internal*)dev->internal)->jpeg = 1;
2278         return 1;
2279     }
2280     return 0;
2281 }
2282
2283 int gfxline_type(gfxline_t*line)
2284 {
2285     int tmplines=0;
2286     int tmpsplines=0;
2287     int lines=0;
2288     int splines=0;
2289     int haszerosegments=0;
2290     while(line) {
2291         if(line->type == gfx_moveTo) {
2292             tmplines=0;
2293             tmpsplines=0;
2294         } else if(line->type == gfx_lineTo) {
2295             tmplines++;
2296             if(tmplines>lines)
2297                 lines=tmplines;
2298         } else if(line->type == gfx_splineTo) {
2299             tmpsplines++;
2300             if(tmpsplines>lines)
2301                 splines=tmpsplines;
2302         }
2303         line = line->next;
2304     }
2305     if(lines==0 && splines==0) return 0;
2306     else if(lines==1 && splines==0) return 1;
2307     else if(lines==0 && splines==1) return 2;
2308     else if(splines==0) return 3;
2309     else return 4;
2310 }
2311
2312 int gfxline_has_dots(gfxline_t*line)
2313 {
2314     int tmplines=0;
2315     double x,y;
2316     double dist = 0;
2317     int isline = 0;
2318     while(line) {
2319         if(line->type == gfx_moveTo) {
2320             if(isline && dist < 1) {
2321                 return 1;
2322             }
2323             dist = 0;
2324             isline = 0;
2325         } else if(line->type == gfx_lineTo) {
2326             dist += fabs(line->x - x) + fabs(line->y - y);
2327             isline = 1;
2328         } else if(line->type == gfx_splineTo) {
2329             dist += fabs(line->sx - x) + fabs(line->sy - y) + 
2330                     fabs(line->x - line->sx) + fabs(line->y - line->sy);
2331             isline = 1;
2332         }
2333         x = line->x;
2334         y = line->y;
2335         line = line->next;
2336     }
2337     if(isline && dist < 1) {
2338         return 1;
2339     }
2340     return 0;
2341 }
2342
2343 int gfxline_fix_short_edges(gfxline_t*line)
2344 {
2345     double x,y;
2346     while(line) {
2347         if(line->type == gfx_lineTo) {
2348             if(fabs(line->x - x) + fabs(line->y - y) < 0.01) {
2349                 line->x += 0.01;
2350             }
2351         } else if(line->type == gfx_splineTo) {
2352             if(fabs(line->sx - x) + fabs(line->sy - y) + 
2353                fabs(line->x - line->sx) + fabs(line->y - line->sy) < 0.01) {
2354                 line->x += 0.01;
2355             }
2356         }
2357         x = line->x;
2358         y = line->y;
2359         line = line->next;
2360     }
2361     return 0;
2362 }
2363
2364 int shapenr = 0;
2365
2366 void swf_stroke(gfxdevice_t*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit)
2367 {
2368     swfoutput_internal*i = (swfoutput_internal*)dev->internal;
2369     swfoutput*obj = i->obj;
2370     int type = gfxline_type(line);
2371     int has_dots = gfxline_has_dots(line);
2372
2373     /* TODO: * split line into segments, and perform this check for all segments */
2374     if(!has_dots &&
2375        (width <= config_caplinewidth 
2376         || (cap_style == gfx_capRound && joint_style == gfx_joinRound)
2377         || (cap_style == gfx_capRound && type<=2))) {
2378         msg("<trace> draw as stroke, type=%d dots=%d", type, has_dots);
2379         endtext(obj);
2380         swfoutput_setstrokecolor(obj, color->r, color->g, color->b, color->a);
2381         swfoutput_setlinewidth(obj, width);
2382         startshape(obj);
2383         stopFill(obj);
2384         drawgfxline(obj, line);
2385     } else {
2386         msg("<trace> draw as polygon, type=%d dots=%d", type, has_dots);
2387         if(has_dots)
2388             gfxline_fix_short_edges(line);
2389         /* we need to convert the line into a polygon */
2390         ArtSVP* svp = gfxstrokeToSVP(line, width, cap_style, joint_style, miterLimit);
2391         gfxline_t*gfxline = SVPtogfxline(svp);
2392         dev->fill(dev, gfxline, color);
2393     }
2394 }
2395 void swf_fill(gfxdevice_t*dev, gfxline_t*line, gfxcolor_t*color)
2396 {
2397     swfoutput_internal*i = (swfoutput_internal*)dev->internal;
2398     swfoutput*obj = i->obj;
2399     endtext(obj);
2400     if(!config_ignoredraworder)
2401         endshape(obj);
2402     swfoutput_setfillcolor(obj, color->r, color->g, color->b, color->a);
2403     startshape(obj);
2404     startFill(obj);
2405     i->fill=1;
2406     drawgfxline(obj, line);
2407     msg("<trace> end of swf_fill (shapeid=%d)", i->shapeid);
2408 }
2409 void swf_fillgradient(gfxdevice_t*dev, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix)
2410 {
2411     msg("<error> Gradient filling not implemented yet");
2412 }