From: kramm Date: Sun, 4 Nov 2001 16:55:49 +0000 (+0000) Subject: added swf_WriteFont and swf_ReadFont routines X-Git-Tag: release-0-1-1~18 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=1a41712df297203adf08bf0181d3ee3d460727c7 added swf_WriteFont and swf_ReadFont routines --- diff --git a/lib/rfxswf.h b/lib/rfxswf.h index 43d4b87..db5a79e 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -16,6 +16,8 @@ #include #include #include +#include +#include #include "../config.h" #define DEBUG_RFXSWF @@ -356,6 +358,9 @@ int swf_FontSetInfo(TAG * t,SWFFONT * f); int swf_FontExport(int handle,SWFFONT * f); int swf_FontImport(int handle,SWFFONT * * f); +void swf_WriteFont(SWFFONT* font, char* filename, int useDefineFont2); +SWFFONT* swf_ReadFont(char* filename); + void swf_FontFree(SWFFONT * f); U32 swf_TextGetWidth(SWFFONT * font,U8 * s,int scale);