SWFFont now also stores the character widths
authorkramm <kramm>
Sat, 10 Nov 2001 16:30:17 +0000 (16:30 +0000)
committerkramm <kramm>
Sat, 10 Nov 2001 16:30:17 +0000 (16:30 +0000)
pdf2swf/swfoutput.h

index ba54912..530d11c 100644 (file)
@@ -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