X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=pdf2swf%2Fswfoutput.h;h=5bd8ee0bad7543e9d7b43427e6d2e6204a4aa97f;hb=e38efb466240e266a9c0491c4be56b66af2429ee;hp=658301546eaf94afb3358b99fbf84720dd7051d3;hpb=bd77e840e2e8bffee0b4cfdb7b006219e823af99;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 6583015..5bd8ee0 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -11,10 +11,23 @@ #define __swfoutput_h__ #include +#ifdef T1ERR_SCAN_ENCODING //t1lib 5.0.0 +#define T1_Get_no_fonts T1_GetNoFonts +#endif + 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; struct swfmatrix { @@ -26,11 +39,45 @@ struct swfcoord { twip y; }; +class SWFFont +{ + T1_OUTLINE**outline; + char**charname; + int*width; + char*used; + + char*name; + int charnum; + + U16*char2swfcharid; + U16*swfcharid2char; + int swfcharpos; + + char**standardtable; + int standardtablesize; + + public: + + int t1id; + char*fontid; + unsigned int swfid; + + SWFFont(char*name, int t1id, char*filename); + SWFFont::~SWFFont(); + 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];} +}; + struct swfoutput { - int t1font; + //int t1font; double fontm11,fontm12,fontm21,fontm22; unsigned short int linewidth; + SWFFont*font; RGBA strokergb; RGBA fillrgb; }; @@ -46,22 +93,42 @@ void swfoutput_setprotected(); //write PROTECT tag void swfoutput_newpage(struct swfoutput*); - int swfoutput_setfont(struct swfoutput*, int fontid, int t1font); +void swfoutput_setfont(struct swfoutput*, char*fontid, int t1font, char*filename); +int swfoutput_queryfont(struct swfoutput*, char*fontid); void swfoutput_setdrawmode(struct swfoutput*, int drawmode); void swfoutput_setfillcolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a); void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char g, unsigned char b, unsigned char a); 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*); -void swfoutput_drawimagefile(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, + 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); +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, int n); +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_namedlink(struct swfoutput*obj, char*name, swfcoord*points); void swfoutput_destroy(struct swfoutput*);