]> git.donarmstrong.com Git - lilypond.git/blob - lily/ttf.cc
(parse_symbol_list): Bugfix.
[lilypond.git] / lily / ttf.cc
1 /*
2   ttf.cc --  implement ttf -> pfa routine.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "freetype.hh"
10
11 #include <freetype/tttables.h>
12
13 #include "lily-proto.hh"
14 #include "memory-stream.hh"
15 #include "warn.hh"
16 #include "lily-guile.hh"
17 #include "main.hh"
18
19 /*
20   Based on ttfps by Juliusz Chroboczek
21 */
22 static void
23 print_header (void *out, FT_Face face)
24 {
25   lily_cookie_fprintf (out, "%%!PS-TrueTypeFont\n");
26
27   TT_Postscript *pt
28     = (TT_Postscript *) FT_Get_Sfnt_Table (face, ft_sfnt_post);
29
30   if (pt->maxMemType42)
31     lily_cookie_fprintf (out, "%%%%VMUsage: %ld %ld\n", 0, 0);
32
33   lily_cookie_fprintf (out, "%d dict begin\n", 11);
34   lily_cookie_fprintf (out, "/FontName /%s def\n",
35                        FT_Get_Postscript_Name (face));
36
37   lily_cookie_fprintf (out, "/Encoding StandardEncoding def\n");
38   lily_cookie_fprintf (out, "/PaintType 0 def\n");
39   lily_cookie_fprintf (out, "/FontMatrix [1 0 0 1 0 0] def\n");
40
41   TT_Header *ht
42     = (TT_Header *)FT_Get_Sfnt_Table (face, ft_sfnt_head);
43
44   lily_cookie_fprintf (out, "/FontBBox [%ld %ld %ld %ld] def\n",
45                        ht->xMin *1000L / ht->Units_Per_EM,
46                        ht->yMin *1000L / ht->Units_Per_EM,
47                        ht->xMax *1000L / ht->Units_Per_EM,
48                        ht->yMax *1000L / ht->Units_Per_EM);
49
50   lily_cookie_fprintf (out, "/FontType 42 def\n");
51   lily_cookie_fprintf (out, "/FontInfo 8 dict dup begin\n");
52   lily_cookie_fprintf (out, "/version (%d.%d) def\n",
53                        (ht->Font_Revision >> 16),
54                        (ht->Font_Revision &((1 << 16) -1)));
55
56 #if 0
57   if (strings[0])
58     {
59       lily_cookie_fprintf (out, "/Notice (");
60       fputpss (strings[0], out);
61       lily_cookie_fprintf (out, ") def\n");
62     }
63   if (strings[4])
64     {
65       lily_cookie_fprintf (out, "/FullName (");
66       fputpss (strings[4], out);
67       lily_cookie_fprintf (out, ") def\n");
68     }
69   if (strings[1])
70     {
71       lily_cookie_fprintf (out, "/FamilyName (");
72       fputpss (strings[1], out);
73       lily_cookie_fprintf (out, ") def\n");
74     }
75 #endif
76
77   lily_cookie_fprintf (out, "/isFixedPitch %s def\n",
78                        pt->isFixedPitch ? "true" : "false");
79   lily_cookie_fprintf (out, "/UnderlinePosition %ld def\n",
80                        pt->underlinePosition *1000L / ht->Units_Per_EM);
81   lily_cookie_fprintf (out, "/UnderlineThickness %ld def\n",
82                        pt->underlineThickness *1000L / ht->Units_Per_EM);
83   lily_cookie_fprintf (out, "end readonly def\n");
84 }
85
86
87 #define CHUNKSIZE 65534
88
89 static void
90 print_body (void *out, String name)
91 {
92   FILE *fd = fopen (name.to_str0 (), "rb");
93
94   static char xdigits[] = "0123456789ABCDEF";
95
96   unsigned char *buffer;
97   int i, j;
98
99   buffer = new unsigned char[CHUNKSIZE];
100   lily_cookie_fprintf (out, "/sfnts [");
101   for (;;)
102     {
103       i = fread (buffer, 1, CHUNKSIZE, fd);
104       if (i == 0)
105         break;
106       lily_cookie_fprintf (out, "\n<");
107       for (j = 0; j < i; j++)
108         {
109           if (j != 0 && j % 36 == 0)
110             lily_cookie_putc ('\n', out);
111           /* lily_cookie_fprintf (out,"%02X",(int)buffer[j]) is too slow */
112           lily_cookie_putc (xdigits[ (buffer[j] & 0xF0) >> 4], out);
113           lily_cookie_putc (xdigits[buffer[j] & 0x0F], out);
114         }
115       lily_cookie_fprintf (out, "00>"); /* Adobe bug? */
116       if (i < CHUNKSIZE)
117         break;
118     }
119   lily_cookie_fprintf (out, "\n] def\n");
120   delete[] buffer;
121   fclose (fd);
122 }
123
124 static void
125 print_trailer (void *out,
126                FT_Face face)
127 {
128   const int GLYPH_NAME_LEN = 256;
129   char glyph_name[GLYPH_NAME_LEN];
130
131   TT_MaxProfile *mp
132     = (TT_MaxProfile *)FT_Get_Sfnt_Table (face, ft_sfnt_maxp);
133
134   lily_cookie_fprintf (out, "/CharStrings %d dict dup begin\n", mp->numGlyphs);
135   for (int i = 0; i < mp->numGlyphs; i++)
136     {
137       FT_Error error = FT_Get_Glyph_Name (face, i, glyph_name, GLYPH_NAME_LEN);
138
139       if (error)
140         programming_error ("FT_Get_Glyph_Name() returned error");
141       else
142         lily_cookie_fprintf (out, "/%s %d def ", glyph_name, i);
143
144       if (! (i % 5))
145         lily_cookie_fprintf (out, "\n");
146     }
147   lily_cookie_fprintf (out, "end readonly def\n");
148   lily_cookie_fprintf (out, "FontName currentdict end definefont pop\n");
149 }
150
151 static void
152 create_type42_font (void *out, String name)
153 {
154   FT_Face face = open_ft_face (name);
155
156   print_header (out, face);
157   print_body (out, name);
158   print_trailer (out, face);
159 }
160
161 LY_DEFINE (ly_ttf_to_pfa, "ly:ttf->pfa",
162            1, 0, 0, (SCM ttf_file_name),
163            "Convert the contents of a TTF file to Type42 PFA, returning it as "
164            " a string.")
165 {
166   SCM_ASSERT_TYPE (scm_is_string (ttf_file_name), ttf_file_name,
167                    SCM_ARG1, __FUNCTION__, "string");
168
169   String file_name = ly_scm2string (ttf_file_name);
170   if (be_verbose_global)
171     progress_indication ("[" + file_name);
172
173   Memory_out_stream stream;
174
175   create_type42_font (&stream, file_name);
176   SCM asscm = scm_from_locale_stringn (stream.get_string (),
177                                        stream.get_length ());
178
179   if (be_verbose_global)
180     progress_indication ("]");
181
182   return asscm;
183 }