added support for truetype libs using ttf2pt1.
[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 Matthias Kramm <kramm@quiss.org> 
7
8    This file is distributed under the GPL, see file COPYING for details */
9
10 #ifndef __swfoutput_h__
11 #define __swfoutput_h__
12
13 #include <t1lib.h>
14 extern "C" {
15 #include "../lib/rfxswf.h"
16 }
17
18 extern int opennewwindow; //default:0
19 extern int ignoredraworder; //default:0
20 extern int drawonlyshapes; //default:0
21 extern int jpegquality; //default:100;
22 extern int storeallcharacters; // default:0
23
24 typedef long int twip;
25
26 struct swfmatrix {
27     double m11,m12,m21,m22,m13,m23;
28 };
29
30 struct swfcoord {
31     twip x;
32     twip y;
33 };
34
35 class SWFFont
36 {
37     T1_OUTLINE**outline;
38     char**charname;
39     int*width;
40     char*used;
41
42     char*name;
43     int charnum;
44
45     U16*char2swfcharid;
46     U16*swfcharid2char;
47     int swfcharpos;
48
49     char**standardtable;
50     int standardtablesize;
51
52     public:
53     
54     int t1id;
55     char*fontid;
56     unsigned int swfid;
57
58     SWFFont(char*name, int t1id, char*filename);
59     SWFFont::~SWFFont();
60     T1_OUTLINE*getOutline(char*charname);
61     int getSWFCharID(char*name, int charnr);
62     char*getName();
63     char*getCharName(int t);
64     int getCharWidth(int t) {return width[t];}
65 };
66
67 struct swfoutput 
68 {
69     //int t1font;
70     double fontm11,fontm12,fontm21,fontm22;
71     unsigned short int linewidth;
72     SWFFont*font;
73     RGBA strokergb;
74     RGBA fillrgb;
75 };
76
77 #define DRAWMODE_STROKE 1
78 #define DRAWMODE_FILL 2
79 #define DRAWMODE_EOFILL 3
80 #define DRAWMODE_CLIP 4
81 #define DRAWMODE_EOCLIP 5
82
83 void swfoutput_init(struct swfoutput*, char*filename, int sizex, int sizey);
84 void swfoutput_setprotected(); //write PROTECT tag
85
86 void swfoutput_newpage(struct swfoutput*);
87
88 void swfoutput_setfont(struct swfoutput*, char*fontid, int t1font, char*filename);
89 int swfoutput_queryfont(struct swfoutput*, char*fontid);
90 void swfoutput_setdrawmode(struct swfoutput*, int drawmode);
91 void swfoutput_setfillcolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
92 void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
93 void swfoutput_setfontmatrix(struct swfoutput*,double,double,double,double);
94 void swfoutput_setlinewidth(struct swfoutput*, double linewidth);
95
96 void swfoutput_drawchar(struct swfoutput*,double x,double y,char*a, int charnr);
97 void swfoutput_drawpath(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
98 void swfoutput_startclip(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m);
99 void swfoutput_endclip(struct swfoutput*);
100 int swfoutput_drawimagejpeg(struct swfoutput*, char*filename, int sizex,int sizey, 
101         double x1,double y1,
102         double x2,double y2,
103         double x3,double y3,
104         double x4,double y4);
105 int swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int sizey,
106         double x1,double y1,
107         double x2,double y2,
108         double x3,double y3,
109         double x4,double y4);
110 int swfoutput_drawimagelossless256(struct swfoutput*, U8*pic,RGBA*pal, int sizex, int sizey,
111         double x1,double y1,
112         double x2,double y2,
113         double x3,double y3,
114         double x4,double y4);
115 void swfoutput_drawimageagain(struct swfoutput*, int id, int sizex, int sizey,
116         double x1,double y1,
117         double x2,double y2,
118         double x3,double y3,
119         double x4,double y4);
120
121 void swfoutput_linktopage(struct swfoutput*, int page, swfcoord*points);
122 void swfoutput_linktourl(struct swfoutput*, char*url, swfcoord*points);
123
124 void swfoutput_destroy(struct swfoutput*);
125
126 #endif //__swfoutput_h__