X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fswfoutput.h;h=0e1ed485501615e22d6269415e5e2a93c2c64923;hb=b8573ee9e8a629c9a19f614ca3c4d64c93901eab;hp=3351f607a96439fa25eed2865435f2ebb725ee5a;hpb=a0a0f9e7de92c80c09204da856e24b9601463615;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 3351f60..0e1ed48 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -3,18 +3,40 @@ Part of the swftools package. - Copyright (c) 2001 Matthias Kramm - - This file is distributed under the GPL, see file COPYING for details */ + Copyright (c) 2001,2002,2003 Matthias Kramm + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __swfoutput_h__ #define __swfoutput_h__ -#include 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 +extern int splinemaxerror; //default:1 +extern int fontsplinemaxerror; //default:1 + typedef long int twip; struct swfmatrix { @@ -26,67 +48,113 @@ struct swfcoord { twip y; }; -class SWFFont -{ - T1_OUTLINE**outline; - char**charname; - char*used; - - char*name; - int charnum; - - public: - - int t1id; - char*fontid; - unsigned int swfid; - - SWFFont(char*name, int t1id, char*filename); - SWFFont::~SWFFont(); - T1_OUTLINE*getOutline(char*charname); - char*getName(); - char*getCharName(int t); -}; - struct swfoutput { - //int t1font; double fontm11,fontm12,fontm21,fontm22; unsigned short int linewidth; - SWFFont*font; + SWFFONT *swffont; RGBA strokergb; RGBA fillrgb; }; +/* outline definition, adapted from t1lib.h */ + +/* A fractional point */ +typedef struct { + long x; + long y; +} SWF_PATHPOINT; + +/* A straight outline segment, stroked or not stroked */ +typedef struct pathsegment { + char type; /* type of segment (line or move) */ + unsigned char flag; /* type1 rasterizer internal stuff */ + short references; /* type1 rasterizer internal stuff */ + unsigned char size; /* size of the structure */ + unsigned char context; /* index to device context */ + struct pathsegment *link; /* pointer to next structure in linked list */ + struct pathsegment *last; /* pointer to last structure in list */ + SWF_PATHPOINT dest; /* relative ending location of path segment */ +} SWF_PATHSEGMENT; + +/* A third order bezier segment */ +typedef struct bezierpathsegment { + char type; /* type of segment (bezier) */ + unsigned char flag; /* type1 rasterizer internal stuff */ + short references; /* type1 rasterizer internal stuff */ + unsigned char size; /* as with any 'segment' type */ + unsigned char context; /* as with any 'segment' type */ + SWF_PATHSEGMENT *link; /* as with any 'segment' type */ + SWF_PATHSEGMENT *last; /* as with any 'segment' type */ + SWF_PATHPOINT dest; /* ending point (D) */ + SWF_PATHPOINT B; /* control point B */ + SWF_PATHPOINT C; /* control point C */ +} SWF_BEZIERSEGMENT; + +typedef SWF_PATHSEGMENT SWF_OUTLINE; + +#define SWF_PATHTYPE_LINE 0x10 +#define SWF_PATHTYPE_BEZIER 0x12 +#define SWF_PATHTYPE_MOVE 0x15 + + #define DRAWMODE_STROKE 1 #define DRAWMODE_FILL 2 #define DRAWMODE_EOFILL 3 #define DRAWMODE_CLIP 4 #define DRAWMODE_EOCLIP 5 -void swfoutput_init(struct swfoutput*, char*filename, int sizex, int sizey); +void swfoutput_init(struct swfoutput*, char*filename, int x1, int y1, int x2, int y2); void swfoutput_setprotected(); //write PROTECT tag void swfoutput_newpage(struct swfoutput*); -void swfoutput_setfont(struct swfoutput*, char*fontid, int t1font, char*filename); +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); + 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_drawpath(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m); -void swfoutput_startclip(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m); +int swfoutput_drawchar(struct swfoutput*,double x,double y,char*a, int charnr, int u); +void swfoutput_drawpath(struct swfoutput*, SWF_OUTLINE*outline, struct swfmatrix*m); +#define LINE_CAP_BUTT 0 +#define LINE_CAP_ROUND 1 +#define LINE_CAP_SQUARE 2 +#define LINE_JOIN_MITER 0 +#define LINE_JOIN_ROUND 1 +#define LINE_JOIN_BEVEL 2 +void swfoutput_drawpath2poly(struct swfoutput*, SWF_OUTLINE*outline, struct swfmatrix*m, int line_join, int line_cap, double line_width, double miter_limit); +void swfoutput_startclip(struct swfoutput*, SWF_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*); #endif //__swfoutput_h__