From c4a755fa06ba517f247c19a16fccc84a6c64daed Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 10 Nov 2001 16:30:17 +0000 Subject: [PATCH 1/1] SWFFont now also stores the character widths --- pdf2swf/swfoutput.h | 2 ++ 1 file changed, 2 insertions(+) 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 -- 1.7.10.4