*** empty log message ***
[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 #include <t1lib.h>
26 #include "CharTypes.h"
27 #ifdef T1ERR_SCAN_ENCODING //t1lib 5.0.0
28 #define T1_Get_no_fonts T1_GetNoFonts
29 #endif
30
31 extern "C" {
32 #include "../lib/rfxswf.h"
33 }
34
35 extern int enablezlib; //default:0
36 extern int opennewwindow; //default:0
37 extern int ignoredraworder; //default:0
38 extern int drawonlyshapes; //default:0
39 extern int jpegquality; //default:100;
40 extern int storeallcharacters; // default:0
41 extern int insertstoptag; //default:0
42 extern int flashversion; //default:4
43 extern int splinemaxerror; //default:1
44 extern int fontsplinemaxerror; //default:1
45
46 typedef long int twip;
47
48 struct swfmatrix {
49     double m11,m12,m21,m22,m13,m23;
50 };
51
52 struct swfcoord {
53     twip x;
54     twip y;
55 };
56
57 class SWFFont
58 {
59     T1_OUTLINE**outline;
60     char**charname;
61     int*width;
62     char*used;
63
64     char*name;
65     int charnum;
66
67     U16*char2swfcharid;
68     U16*swfcharid2char;
69     int swfcharpos;
70
71     char**standardtable;
72     int standardtablesize;
73
74     public:
75     
76     int t1id;
77     char*fontid;
78     unsigned int swfid;
79
80     SWFFont(char*name, int t1id, char*filename);
81     SWFFont::~SWFFont();
82     T1_OUTLINE*getOutline(char*charname, int charnr);
83     int getSWFCharID(char*name, int charnr);
84     int getWidth(char*name);
85     char*getName();
86     char*getCharName(int t);
87     int getCharWidth(int t) {return width[t];}
88 };
89
90 struct swfoutput 
91 {
92     //int t1font;
93     double fontm11,fontm12,fontm21,fontm22;
94     unsigned short int linewidth;
95     SWFFont *font;
96     SWFFONT *swffont;
97     RGBA strokergb;
98     RGBA fillrgb;
99 };
100
101 #define DRAWMODE_STROKE 1
102 #define DRAWMODE_FILL 2
103 #define DRAWMODE_EOFILL 3
104 #define DRAWMODE_CLIP 4
105 #define DRAWMODE_EOCLIP 5
106
107 void swfoutput_init(struct swfoutput*, char*filename, int x1, int y1, int x2, int y2);
108 void swfoutput_setprotected(); //write PROTECT tag
109
110 void swfoutput_newpage(struct swfoutput*);
111
112 void swfoutput_setfont(struct swfoutput*, char*fontid, int t1font, char*filename);
113 int swfoutput_queryfont(struct swfoutput*, char*fontid);
114 int getCharID(SWFFONT *font, int charnr, char *charname, Unicode u);
115
116 void swfoutput_setdrawmode(struct swfoutput*, int drawmode);
117 void swfoutput_setfillcolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
118 void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
119 void swfoutput_setfontmatrix(struct swfoutput*,double,double,double,double);
120 void swfoutput_setlinewidth(struct swfoutput*, double linewidth);
121
122 void swfoutput_drawchar(struct swfoutput*,double x,double y,char*a, int charnr, Unicode u);
123 void swfoutput_drawpath(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
124 #define LINE_CAP_BUTT 0
125 #define LINE_CAP_ROUND 1 
126 #define LINE_CAP_SQUARE 2
127 #define LINE_JOIN_MITER 0 
128 #define LINE_JOIN_ROUND 1
129 #define LINE_JOIN_BEVEL 2
130 void swfoutput_drawpath2poly(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m, int line_join, int line_cap, double line_width, double miter_limit);
131 void swfoutput_startclip(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
132 void swfoutput_endclip(struct swfoutput*);
133 int swfoutput_drawimagejpeg(struct swfoutput*, RGBA*pic, int sizex,int sizey, 
134         double x1,double y1,
135         double x2,double y2,
136         double x3,double y3,
137         double x4,double y4);
138 int swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int sizey,
139         double x1,double y1,
140         double x2,double y2,
141         double x3,double y3,
142         double x4,double y4);
143 int swfoutput_drawimagelosslessN(struct swfoutput*, U8*pic, RGBA*pal, int sizex, int sizey,
144         double x1,double y1,
145         double x2,double y2,
146         double x3,double y3,
147         double x4,double y4, int n);
148 void swfoutput_drawimageagain(struct swfoutput*, int id, int sizex, int sizey,
149         double x1,double y1,
150         double x2,double y2,
151         double x3,double y3,
152         double x4,double y4);
153
154 void swfoutput_linktopage(struct swfoutput*, int page, swfcoord*points);
155 void swfoutput_linktourl(struct swfoutput*, char*url, swfcoord*points);
156 void swfoutput_namedlink(struct swfoutput*obj, char*name, swfcoord*points);
157
158 void swfoutput_destroy(struct swfoutput*);
159
160 #endif //__swfoutput_h__