X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fswfoutput.h;h=0540d811502cb535a8ade5f32b9657dc0db9c468;hb=83d65b72d5f4619f9e25b7d9a5df726b09731396;hp=3351f607a96439fa25eed2865435f2ebb725ee5a;hpb=072626c0a2158ab530b6853587cf14746d6aac52;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 3351f60..0540d81 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 { @@ -35,6 +40,10 @@ class SWFFont char*name; int charnum; + U16*char2swfcharid; + U16*swfcharid2char; + int swfcharpos; + public: int t1id; @@ -44,6 +53,7 @@ class SWFFont SWFFont(char*name, int t1id, char*filename); SWFFont::~SWFFont(); T1_OUTLINE*getOutline(char*charname); + int getSWFCharID(char*name); char*getName(); char*getCharName(int t); };