X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;ds=sidebyside;f=pdf2swf%2Fswfoutput.h;h=530d11c2529bdd518829e7eebedfe8f4e2497f7c;hb=84fbf70eec7a04cb3a3e42ee610f7673d39d4926;hp=200261507ad6552864a1aabd82e8bab863b1ccac;hpb=78be74fbc819369c64b64c26155350901315aa64;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 2002615..530d11c 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -15,10 +15,11 @@ extern "C" { #include "../lib/rfxswf.h" } - +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 +36,7 @@ class SWFFont { T1_OUTLINE**outline; char**charname; + int*width; char*used; char*name; @@ -56,6 +58,7 @@ class SWFFont int getSWFCharID(char*name); char*getName(); char*getCharName(int t); + int getCharWidth(int t) {return width[t];} }; struct swfoutput @@ -91,22 +94,30 @@ void swfoutput_drawchar(struct swfoutput*,double x,double y,char*a); 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*); -void swfoutput_drawimagejpeg(struct swfoutput*, char*filename, int sizex,int sizey, +int swfoutput_drawimagejpeg(struct swfoutput*, char*filename, int sizex,int sizey, + double x1,double y1, + double x2,double y2, + double x3,double y3, + double x4,double y4); +int swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int sizey, double x1,double y1, double x2,double y2, double x3,double y3, double x4,double y4); -void swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int sizey, +int swfoutput_drawimagelossless256(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); -void swfoutput_drawimagelossless256(struct swfoutput*, U8*pic,RGBA*pal, int sizex, int sizey, +void swfoutput_drawimageagain(struct swfoutput*, int id, int sizex, int sizey, double x1,double y1, double x2,double y2, double x3,double y3, double x4,double y4); +void swfoutput_linktopage(struct swfoutput*, int page, swfcoord*points); +void swfoutput_linktourl(struct swfoutput*, char*url, swfcoord*points); + void swfoutput_destroy(struct swfoutput*); #endif //__swfoutput_h__