Generated from pdf2swf_usage.html
[swftools.git] / pdf2swf / swfoutput.h
index 2b1e742..0efbbc6 100644 (file)
@@ -15,6 +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;
+
 typedef long int twip;
 
 struct swfmatrix {
@@ -30,16 +35,25 @@ class SWFFont
 {
     T1_OUTLINE**outline;
     char**charname;
+    char*used;
+
     char*name;
     int charnum;
 
+    U16*char2swfcharid;
+    U16*swfcharid2char;
+    int swfcharpos;
+
     public:
     
     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);
 };
@@ -77,12 +91,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_drawimagefile(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);
+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_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__