X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fswfoutput.h;h=50ee1c9f11b092b182906fd971c19e4a4af10f14;hb=2d3f354e192af54cf746ed08cb9195227795a069;hp=829123ccfc95c4feb3d42c0edbe2ff552366007c;hpb=a247d1221d24d5de548b694d1fb8ae59569e92e1;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 829123c..50ee1c9 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -44,6 +44,7 @@ struct swfoutput RGBA strokergb; RGBA fillrgb; int drawmode; + int x1,y1,x2,y2; void*internal; }; @@ -96,8 +97,14 @@ typedef SWF_PATHSEGMENT SWF_OUTLINE; void swfoutput_setparameter(char*name, char*value); -void swfoutput_init(struct swfoutput*, char*filename); -void swfoutput_newpage(struct swfoutput*, int pageNum, int x1, int y1, int x2, int y2); +void swfoutput_init(struct swfoutput*); +int swfoutput_save(struct swfoutput*, char*filename); +SWF* swfoutput_get(struct swfoutput*); +void swfoutput_getdimensions(struct swfoutput*, int*x1, int*y1, int*x2, int*y2); + +void swfoutput_pagefeed(struct swfoutput*obj); +void swfoutput_newpage(struct swfoutput*, int pageNum, int movex, int movey, int x1, int y1, int x2, int y2); + void swfoutput_setfont(struct swfoutput*, char*fontid, char*filename); int swfoutput_queryfont(struct swfoutput*, char*fontid); int getCharID(SWFFONT *font, int charnr, char *charname, int u);