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