X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fswfoutput.h;h=200261507ad6552864a1aabd82e8bab863b1ccac;hb=78be74fbc819369c64b64c26155350901315aa64;hp=8db8f3aec186a8ab6a732918e6d0273fb4cbc705;hpb=c42167873a57926d413c9ee3c90119fae729cce5;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 8db8f3a..2002615 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -15,6 +15,11 @@ extern "C" { #include "../lib/rfxswf.h" } + +extern int ignoredraworder; //default:0 +extern int drawonlyshapes; //default:0 +extern int jpegquality; //default:100; + typedef long int twip; struct swfmatrix { @@ -28,16 +33,27 @@ struct swfcoord { class SWFFont { - T1_OUTLINE*(outline[256]); - char*(charname[256]); + T1_OUTLINE**outline; + char**charname; + char*used; + char*name; + int charnum; + + U16*char2swfcharid; + U16*swfcharid2char; + int swfcharpos; public: - int id; - - SWFFont(int t1id); - T1_OUTLINE*getOutline(unsigned char nr); + int t1id; + char*fontid; + unsigned int swfid; + + SWFFont(char*name, int t1id, char*filename); + SWFFont::~SWFFont(); + T1_OUTLINE*getOutline(char*charname); + int getSWFCharID(char*name); char*getName(); char*getCharName(int t); }; @@ -63,19 +79,29 @@ void swfoutput_setprotected(); //write PROTECT tag void swfoutput_newpage(struct swfoutput*); -void swfoutput_setfont(struct swfoutput*, int fontid, int t1font); -int swfoutput_queryfont(struct swfoutput*, int fontid); +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); 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, +void 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); +void 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_drawimagelossless256(struct swfoutput*, U8*pic,RGBA*pal, int sizex, int sizey, double x1,double y1, double x2,double y2, double x3,double y3,