X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fswfoutput.h;h=947a82861e2b203203b4f179de3b103434b43c5e;hb=98224e6d436b226dc8445db494efa7e8c3635c34;hp=1efc9ccd448f7f89dfc6d44434214a588ee944da;hpb=0e916263b32f4920c2f5581caa77985bf1992081;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 1efc9cc..947a828 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -15,11 +15,14 @@ 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 +extern int insertstoptag; //default:0 +extern int flashversion; //default:4 typedef long int twip; @@ -57,8 +60,9 @@ class SWFFont SWFFont(char*name, int t1id, char*filename); SWFFont::~SWFFont(); - T1_OUTLINE*getOutline(char*charname); + T1_OUTLINE*getOutline(char*charname, int charnr); int getSWFCharID(char*name, int charnr); + int getWidth(char*name); char*getName(); char*getCharName(int t); int getCharWidth(int t) {return width[t];} @@ -97,7 +101,7 @@ 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, @@ -107,11 +111,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, @@ -120,6 +124,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*);