From: kramm Date: Sat, 10 Nov 2001 16:30:17 +0000 (+0000) Subject: SWFFont now also stores the character widths X-Git-Tag: release-0-1-2~26 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=c4a755fa06ba517f247c19a16fccc84a6c64daed SWFFont now also stores the character widths --- diff --git a/pdf2swf/swfoutput.h b/pdf2swf/swfoutput.h index ba54912..530d11c 100644 --- a/pdf2swf/swfoutput.h +++ b/pdf2swf/swfoutput.h @@ -36,6 +36,7 @@ class SWFFont { T1_OUTLINE**outline; char**charname; + int*width; char*used; char*name; @@ -57,6 +58,7 @@ class SWFFont int getSWFCharID(char*name); char*getName(); char*getCharName(int t); + int getCharWidth(int t) {return width[t];} }; struct swfoutput