X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fswfoutput.h;h=4c0908621973a88ab960a222191b99ed107251c8;hb=d9872c4e9c1c252d74d380d114eeb769c043e013;hp=0efbbc62b639ab3192375e303a7dff9bd5b8c678;hpb=49a2c32e63c1f0c585d80418f1a5e67856c1cc23;p=swftools.git diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index 0efbbc6..4c09086 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -3,22 +3,44 @@ 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 +#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 +extern int splinemaxerror; //default:1 +extern int fontsplinemaxerror; //default:1 typedef long int twip; @@ -35,6 +57,7 @@ class SWFFont { T1_OUTLINE**outline; char**charname; + int*width; char*used; char*name; @@ -44,6 +67,9 @@ class SWFFont U16*swfcharid2char; int swfcharpos; + char**standardtable; + int standardtablesize; + public: int t1id; @@ -52,10 +78,12 @@ class SWFFont SWFFont(char*name, int t1id, char*filename); SWFFont::~SWFFont(); - T1_OUTLINE*getOutline(char*charname); - int getSWFCharID(char*name); + 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 @@ -87,11 +115,18 @@ void swfoutput_setstrokecolor(struct swfoutput*, unsigned char r, unsigned char 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); +#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*, T1_OUTLINE*outline, struct swfmatrix*m, int line_join, int line_cap, double line_width, double miter_limit); void swfoutput_startclip(struct swfoutput*, T1_OUTLINE*outline, struct swfmatrix*m); void swfoutput_endclip(struct swfoutput*); -int swfoutput_drawimagejpeg(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, @@ -101,11 +136,11 @@ int swfoutput_drawimagelossless(struct swfoutput*, RGBA*pic, int sizex, int size 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, +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); + 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, @@ -114,6 +149,7 @@ void swfoutput_drawimageagain(struct swfoutput*, int id, int sizex, int sizey, 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*);