added fontmatrix to swfoutput struct.
[swftools.git] / pdf2swf / swfoutput.h
1 /* swfoutput.h
2    Header file for swfoutput.cc (and swfoutput_x11.cc).
3
4    Part of the swftools package.
5
6    Copyright (c) 2001,2002,2003 Matthias Kramm <kramm@quiss.org> 
7  
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
21
22 #ifndef __swfoutput_h__
23 #define __swfoutput_h__
24
25 extern "C" {
26 #include "../lib/rfxswf.h"
27 }
28
29 extern int enablezlib; //default:0
30 extern int opennewwindow; //default:0
31 extern int ignoredraworder; //default:0
32 extern int drawonlyshapes; //default:0
33 extern int jpegquality; //default:100;
34 extern int storeallcharacters; // default:0
35 extern int insertstoptag; //default:0
36 extern int flashversion; //default:4
37 extern int splinemaxerror; //default:1
38 extern int fontsplinemaxerror; //default:1
39
40 typedef long int twip;
41
42 struct swfmatrix {
43     double m11,m12,m21,m22,m13,m23;
44 };
45
46 struct swfcoord {
47     twip x;
48     twip y;
49 };
50
51 struct swfoutput 
52 {
53     MATRIX fontmatrix;
54     double fontm11,fontm12,fontm21,fontm22;
55     unsigned short int linewidth;
56     SWFFONT *swffont;
57     RGBA strokergb;
58     RGBA fillrgb;
59     int drawmode;
60 };
61
62 /* outline definition, adapted from t1lib.h */
63
64 /* A fractional point */
65 typedef struct {
66   long x;
67   long y;
68 } SWF_PATHPOINT;
69
70 /* A straight outline segment, stroked or not stroked */
71 typedef struct pathsegment {  
72   char type;                /* type of segment (line or move) */
73   unsigned char flag;       /* type1 rasterizer internal stuff */
74   short references;         /* type1 rasterizer internal stuff */
75   unsigned char size;       /* size of the structure */
76   unsigned char context;    /* index to device context */
77   struct pathsegment *link; /* pointer to next structure in linked list */
78   struct pathsegment *last; /* pointer to last structure in list */
79   SWF_PATHPOINT    dest;     /* relative ending location of path segment */
80 } SWF_PATHSEGMENT;
81
82 /* A third order bezier segment */
83 typedef struct bezierpathsegment {
84   char type;                /* type of segment (bezier) */
85   unsigned char flag;     /* type1 rasterizer internal stuff */
86   short references;       /* type1 rasterizer internal stuff */
87   unsigned char size;     /* as with any 'segment' type */
88   unsigned char context;  /* as with any 'segment' type */
89   SWF_PATHSEGMENT *link;   /* as with any 'segment' type */
90   SWF_PATHSEGMENT *last;   /* as with any 'segment' type */
91   SWF_PATHPOINT    dest;   /* ending point (D) */
92   SWF_PATHPOINT    B;      /* control point B */
93   SWF_PATHPOINT    C;      /* control point C */
94 } SWF_BEZIERSEGMENT;
95
96 typedef SWF_PATHSEGMENT  SWF_OUTLINE;
97
98 #define   SWF_PATHTYPE_LINE           0x10
99 #define   SWF_PATHTYPE_BEZIER         0x12
100 #define   SWF_PATHTYPE_MOVE           0x15
101
102
103 #define DRAWMODE_STROKE 1
104 #define DRAWMODE_FILL 2
105 #define DRAWMODE_EOFILL 3
106 #define DRAWMODE_CLIP 4
107 #define DRAWMODE_EOCLIP 5
108
109 void swfoutput_init(struct swfoutput*, char*filename, int x1, int y1, int x2, int y2);
110 void swfoutput_setprotected(); //write PROTECT tag
111
112 void swfoutput_newpage(struct swfoutput*);
113
114 void swfoutput_setfont(struct swfoutput*, char*fontid, char*filename);
115 int swfoutput_queryfont(struct swfoutput*, char*fontid);
116 int getCharID(SWFFONT *font, int charnr, char *charname, int u);
117
118 void swfoutput_setdrawmode(struct swfoutput*, int drawmode);
119 void swfoutput_setfillcolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
120 void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
121 void swfoutput_setfontmatrix(struct swfoutput*,double,double,double,double);
122 void swfoutput_setlinewidth(struct swfoutput*, double linewidth);
123
124 int swfoutput_drawchar(struct swfoutput*,double x,double y,char*a, int charnr, int u);
125 void swfoutput_drawpath(struct swfoutput*, SWF_OUTLINE*outline, struct swfmatrix*m);
126 #define LINE_CAP_BUTT 0
127 #define LINE_CAP_ROUND 1 
128 #define LINE_CAP_SQUARE 2
129 #define LINE_JOIN_MITER 0 
130 #define LINE_JOIN_ROUND 1
131 #define LINE_JOIN_BEVEL 2
132 void swfoutput_drawpath2poly(struct swfoutput*, SWF_OUTLINE*outline, struct swfmatrix*m, int line_join, int line_cap, double line_width, double miter_limit);
133 void swfoutput_startclip(struct swfoutput*, SWF_OUTLINE*outline, struct swfmatrix*m);
134 void swfoutput_endclip(struct swfoutput*);
135 int swfoutput_drawimagejpeg(struct swfoutput*, RGBA*pic, int sizex,int sizey, 
136         double x1,double y1,
137         double x2,double y2,
138         double x3,double y3,
139         double x4,double y4);
140 int swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int sizey,
141         double x1,double y1,
142         double x2,double y2,
143         double x3,double y3,
144         double x4,double y4);
145 int swfoutput_drawimagelosslessN(struct swfoutput*, U8*pic, RGBA*pal, int sizex, int sizey,
146         double x1,double y1,
147         double x2,double y2,
148         double x3,double y3,
149         double x4,double y4, int n);
150 void swfoutput_drawimageagain(struct swfoutput*, int id, int sizex, int sizey,
151         double x1,double y1,
152         double x2,double y2,
153         double x3,double y3,
154         double x4,double y4);
155
156 void swfoutput_linktopage(struct swfoutput*, int page, swfcoord*points);
157 void swfoutput_linktourl(struct swfoutput*, char*url, swfcoord*points);
158 void swfoutput_namedlink(struct swfoutput*obj, char*name, swfcoord*points);
159
160 void swfoutput_destroy(struct swfoutput*);
161
162 #endif //__swfoutput_h__