3 Example for font handling
5 This tool dumps font information into C files
6 which can be included to rfxswf applications.
7 This is an easy way for developers to use
8 fonts in applications without dealing with
11 Usage: ./dumpfont filename.swf > myfont.c
13 Limits: does not parse ST_DEFINEFONT2
15 Part of the swftools package.
17 Copyright (c) 2000, 2001 Rainer Böhme <rfxswf@reflex-studio.de>
19 This file is distributed under the GPL, see file COPYING for details
26 #include "../rfxswf.h"
28 #define PRINTABLE(a) (((a>0x20)&&(a<0xff)&&(a!='\\'))?a:0x20)
32 void DumpFont(SWFFONT * f,char * name)
34 int*gpos = malloc(sizeof(int*)*f->numchars);
35 memset(gpos,0,sizeof(int*)*f->numchars);
40 printf("U8 Glyphs_%s[] = {\n\t ",name);
42 for (i=0;i<f->numchars;i++)
43 if (f->glyph[i].shape)
44 { SHAPE * s = f->glyph[i].shape;
45 int j,l = (s->bitlen+7)/8;
49 { printf("0x%02x, ",s->data[j]);
50 if ((n&7)==7) printf("\n\t ");
58 printf("\nSWFFONT * Font_%s(U16 id)\n",name);
59 printf("{ SWFFONT * f;\n int i;\n\n");
60 printf(" if (!(f=malloc(sizeof(SWFFONT)))) return NULL;\n");
61 printf(" memset(f,0x00,sizeof(SWFFONT));\n");
62 printf(" f->id = id;\n");
63 printf(" f->version = %d;\n", f->version);
64 printf(" f->name = strdup(\"%s\");\n",f->name);
65 printf(" f->flags = 0x%02x;\n",f->flags);
66 printf(" f->numchars = %d;\n",f->numchars);
67 printf(" f->maxascii = %d;\n",f->maxascii);
68 printf(" f->glyph = (SWFGLYPH*)malloc(sizeof(SWFGLYPH)*%d);\n",f->numchars);
69 printf(" f->glyph2ascii = (U16*)malloc(sizeof(U16)*%d);\n",f->numchars);
70 printf(" f->ascii2glyph = (int*)malloc(sizeof(int)*%d);\n",f->maxascii);
71 printf(" memset(f->ascii2glyph, -1, sizeof(int)*%d);\n\n", f->maxascii);
73 for (i=0;i<f->numchars;i++)
74 if (f->glyph[i].shape)
75 { printf(" addGlyph(f,%3i, 0x%02x,%4i, &Glyphs_%s[0x%04x],%4i); // %c\n",
76 i, f->glyph2ascii[i], f->glyph[i].advance, name, gpos[i],
77 f->glyph[i].shape->bitlen,PRINTABLE(f->glyph2ascii[i]));
80 printf(" return f;\n}\n\n");
84 void DumpGlobal(char * funcname)
85 { printf("\nvoid %s(SWFFONT * f,int i,U16 ascii,U16 advance,U8 * data,U32 bitlen)\n",funcname);
86 printf("{ SHAPE * s;\n U32 l = (bitlen+7)/8;\n\n");
87 printf(" if (FAILED(swf_ShapeNew(&s))) return;\n");
88 printf(" s->data = malloc(l);\n");
89 printf(" if (!s->data) { swf_ShapeFree(s); return; }\n\n");
90 printf(" f->glyph2ascii[i] = ascii;\n");
91 printf(" f->ascii2glyph[ascii] = i;\n");
92 printf(" f->glyph[i].advance = advance;\n");
93 printf(" f->glyph[i].shape = s;\n");
94 printf(" s->bitlen = bitlen;\n");
95 printf(" s->bits.fill = 1;\n");
96 printf(" memcpy(s->data,data,l);\n}\n\n");
100 void fontcallback(U16 id,U8 * name)
106 swf_FontExtract(&swf,id,&font);
107 sprintf(s,"%s%s%s",name,swf_FontIsBold(font)?"_bold":"",swf_FontIsItalic(font)?"_italic":"");
112 if(!((*ss>='a' && *ss<='z') ||
113 (*ss>='A' && *ss<='Z') ||
114 (*ss>='0' && *ss<='9' && ss!=s) ||
125 int main(int argc,char ** argv)
129 { f = open(argv[1],O_RDONLY);
131 { if FAILED(swf_ReadSWF(f,&swf))
132 { fprintf(stderr,"%s is not a valid SWF file or contains errors.\n",argv[1]);
138 sprintf(fn,"fn%04x",getpid()); // avoid name conflicts @ using multiple fonts
139 printf("#define addGlyph %s\n",fn);
141 swf_FontEnumerate(&swf,&fontcallback);
143 printf("#undef addGlyph\n");
145 } else fprintf(stderr,"File not found: %s\n",argv[1]);
147 else fprintf(stderr,"\nreflex SWF Font Dump Utility\n(w) 2000 by Rainer Boehme <rb@reflex-studio.de>\n\nUsage: dumpfont filename.swf\n");