X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fswfoutput.h;h=1c6678860a34e906ca5c954e931b5c6ad0abae39;hb=602d0f0a1c8ad614029f235cc6ff38bfe26334e8;hp=0efbbc62b639ab3192375e303a7dff9bd5b8c678;hpb=49a2c32e63c1f0c585d80418f1a5e67856c1cc23;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 0efbbc6..1c66788 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -15,10 +15,12 @@ extern "C" { #include "../lib/rfxswf.h" } +extern int enablezlib; //default:0 extern int opennewwindow; //default:0 extern int ignoredraworder; //default:0 extern int drawonlyshapes; //default:0 extern int jpegquality; //default:100; +extern int storeallcharacters; // default:0 typedef long int twip; @@ -35,6 +37,7 @@ class SWFFont { T1_OUTLINE**outline; char**charname; + int*width; char*used; char*name; @@ -44,6 +47,9 @@ class SWFFont U16*swfcharid2char; int swfcharpos; + char**standardtable; + int standardtablesize; + public: int t1id; @@ -53,9 +59,11 @@ class SWFFont SWFFont(char*name, int t1id, char*filename); SWFFont::~SWFFont(); T1_OUTLINE*getOutline(char*charname); - int getSWFCharID(char*name); + int getSWFCharID(char*name, int charnr); + int getWidth(char*name); char*getName(); char*getCharName(int t); + int getCharWidth(int t) {return width[t];} }; struct swfoutput @@ -87,11 +95,11 @@ void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char void swfoutput_setfontmatrix(struct swfoutput*,double,double,double,double); void swfoutput_setlinewidth(struct swfoutput*, double linewidth); -void swfoutput_drawchar(struct swfoutput*,double x,double y,char*a); +void swfoutput_drawchar(struct swfoutput*,double x,double y,char*a, int charnr); void swfoutput_drawpath(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m); void swfoutput_startclip(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m); void swfoutput_endclip(struct swfoutput*); -int swfoutput_drawimagejpeg(struct swfoutput*, char*filename, int sizex,int sizey, +int swfoutput_drawimagejpeg(struct swfoutput*, RGBA*pic, int sizex,int sizey, double x1,double y1, double x2,double y2, double x3,double y3, @@ -101,11 +109,11 @@ int swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int size double x2,double y2, double x3,double y3, double x4,double y4); -int swfoutput_drawimagelossless256(struct swfoutput*, U8*pic,RGBA*pal, int sizex, int sizey, +int swfoutput_drawimagelosslessN(struct swfoutput*, U8*pic, RGBA*pal, int sizex, int sizey, double x1,double y1, double x2,double y2, double x3,double y3, - double x4,double y4); + double x4,double y4, int n); void swfoutput_drawimageagain(struct swfoutput*, int id, int sizex, int sizey, double x1,double y1, double x2,double y2, @@ -114,6 +122,7 @@ void swfoutput_drawimageagain(struct swfoutput*, int id, int sizex, int sizey, void swfoutput_linktopage(struct swfoutput*, int page, swfcoord*points); void swfoutput_linktourl(struct swfoutput*, char*url, swfcoord*points); +void swfoutput_namedlink(struct swfoutput*obj, char*name, swfcoord*points); void swfoutput_destroy(struct swfoutput*);