]> git.donarmstrong.com Git - lilypond.git/blob - lily/ttf.cc
*** empty log message ***
[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--2006 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 #include "open-type-font.hh"
19
20
21 Index_to_charcode_map
22 make_index_to_charcode_map (FT_Face face)
23 {
24   Index_to_charcode_map m;
25   FT_ULong charcode;
26   FT_UInt gindex;
27
28   FT_CharMap current_cmap = face->charmap;
29   FT_Select_Charmap(face, FT_ENCODING_UNICODE);
30   for (charcode = FT_Get_First_Char (face, &gindex); gindex != 0;
31        charcode = FT_Get_Next_Char (face, charcode, &gindex))
32     m[gindex] = charcode;
33   FT_Set_Charmap (face, current_cmap);
34   
35   return m;
36 }
37
38 /*
39   Based on ttfps by Juliusz Chroboczek
40 */
41 static void
42 print_header (void *out, FT_Face face)
43 {
44   lily_cookie_fprintf (out, "%%!PS-TrueTypeFont\n");
45
46   TT_Postscript *pt
47     = (TT_Postscript *) FT_Get_Sfnt_Table (face, ft_sfnt_post);
48
49   if (pt->maxMemType42)
50     lily_cookie_fprintf (out, "%%%%VMUsage: %ld %ld\n", 0, 0);
51
52   lily_cookie_fprintf (out, "%d dict begin\n", 11);
53   lily_cookie_fprintf (out, "/FontName /%s def\n",
54                        FT_Get_Postscript_Name (face));
55
56   lily_cookie_fprintf (out, "/Encoding StandardEncoding def\n");
57   lily_cookie_fprintf (out, "/PaintType 0 def\n");
58   lily_cookie_fprintf (out, "/FontMatrix [1 0 0 1 0 0] def\n");
59
60   TT_Header *ht
61     = (TT_Header *)FT_Get_Sfnt_Table (face, ft_sfnt_head);
62
63   lily_cookie_fprintf (out, "/FontBBox [%ld %ld %ld %ld] def\n",
64                        ht->xMin *1000L / ht->Units_Per_EM,
65                        ht->yMin *1000L / ht->Units_Per_EM,
66                        ht->xMax *1000L / ht->Units_Per_EM,
67                        ht->yMax *1000L / ht->Units_Per_EM);
68
69   lily_cookie_fprintf (out, "/FontType 42 def\n");
70   lily_cookie_fprintf (out, "/FontInfo 8 dict dup begin\n");
71   lily_cookie_fprintf (out, "/version (%d.%d) def\n",
72                        (ht->Font_Revision >> 16),
73                        (ht->Font_Revision &((1 << 16) -1)));
74
75 #if 0
76   if (strings[0])
77     {
78       lily_cookie_fprintf (out, "/Notice (");
79       fputpss (strings[0], out);
80       lily_cookie_fprintf (out, ") def\n");
81     }
82   if (strings[4])
83     {
84       lily_cookie_fprintf (out, "/FullName (");
85       fputpss (strings[4], out);
86       lily_cookie_fprintf (out, ") def\n");
87     }
88   if (strings[1])
89     {
90       lily_cookie_fprintf (out, "/FamilyName (");
91       fputpss (strings[1], out);
92       lily_cookie_fprintf (out, ") def\n");
93     }
94 #endif
95
96   lily_cookie_fprintf (out, "/isFixedPitch %s def\n",
97                        pt->isFixedPitch ? "true" : "false");
98   lily_cookie_fprintf (out, "/UnderlinePosition %ld def\n",
99                        pt->underlinePosition *1000L / ht->Units_Per_EM);
100   lily_cookie_fprintf (out, "/UnderlineThickness %ld def\n",
101                        pt->underlineThickness *1000L / ht->Units_Per_EM);
102   lily_cookie_fprintf (out, "end readonly def\n");
103 }
104
105 #define CHUNKSIZE 65534
106
107 static void
108 print_body (void *out, string name)
109 {
110   FILE *fd = fopen (name.c_str (), "rb");
111
112   static char xdigits[] = "0123456789ABCDEF";
113
114   unsigned char *buffer;
115   int i, j;
116
117   buffer = new unsigned char[CHUNKSIZE];
118   lily_cookie_fprintf (out, "/sfnts [");
119   for (;;)
120     {
121       i = fread (buffer, 1, CHUNKSIZE, fd);
122       if (i == 0)
123         break;
124       lily_cookie_fprintf (out, "\n<");
125       for (j = 0; j < i; j++)
126         {
127           if (j != 0 && j % 36 == 0)
128             lily_cookie_putc ('\n', out);
129           /* lily_cookie_fprintf (out,"%02X",(int)buffer[j]) is too slow */
130           lily_cookie_putc (xdigits[ (buffer[j] & 0xF0) >> 4], out);
131           lily_cookie_putc (xdigits[buffer[j] & 0x0F], out);
132         }
133       lily_cookie_fprintf (out, "00>"); /* Adobe bug? */
134       if (i < CHUNKSIZE)
135         break;
136     }
137   lily_cookie_fprintf (out, "\n] def\n");
138   delete[] buffer;
139   fclose (fd);
140 }
141
142 static void
143 print_trailer (void *out,
144                FT_Face face)
145 {
146   const int GLYPH_NAME_LEN = 256;
147   char glyph_name[GLYPH_NAME_LEN];
148
149   TT_MaxProfile *mp
150     = (TT_MaxProfile *)FT_Get_Sfnt_Table (face, ft_sfnt_maxp);
151
152   lily_cookie_fprintf (out, "/CharStrings %d dict dup begin\n", mp->numGlyphs);
153
154   Index_to_charcode_map ic_map (make_index_to_charcode_map (face));
155
156   for (int i = 0; i < mp->numGlyphs; i++)
157     {
158       glyph_name[0] = 0;
159       if (face->face_flags & FT_FACE_FLAG_GLYPH_NAMES)
160         {
161           FT_Error error = FT_Get_Glyph_Name (face, i, glyph_name,
162                                               GLYPH_NAME_LEN);
163           if (error)
164             {
165               programming_error ("print_trailer(): FT_Get_Glyph_Name() returned error");
166               glyph_name[0] = 0;
167             }
168         }
169
170       if (!glyph_name[0])
171         {
172           get_unicode_name (glyph_name, ic_map[i]);
173         }
174       
175       lily_cookie_fprintf (out, "/%s %d def ", glyph_name, i);
176
177       if (! (i % 5))
178         lily_cookie_fprintf (out, "\n");
179     }
180
181   lily_cookie_fprintf (out, "end readonly def\n");
182   lily_cookie_fprintf (out, "FontName currentdict end definefont pop\n");
183 }
184
185 static void
186 create_type42_font (void *out, string name)
187 {
188   FT_Face face = open_ft_face (name);
189
190   print_header (out, face);
191   print_body (out, name);
192   print_trailer (out, face);
193
194   FT_Done_Face (face);
195 }
196
197
198 LY_DEFINE (ly_ttf_ps_name, "ly:ttf-ps-name",
199            1, 0, 0, (SCM ttf_file_name),
200            "Extract the PostScript name from a TrueType font.")
201 {
202   SCM_ASSERT_TYPE (scm_is_string (ttf_file_name), ttf_file_name,
203                    SCM_ARG1, __FUNCTION__, "string");
204   string file_name = ly_scm2string (ttf_file_name);
205   if (be_verbose_global)
206     progress_indication ("[" + file_name);
207
208   FT_Face face = open_ft_face (file_name);
209   char const *ps_name_str0 = FT_Get_Postscript_Name (face);
210   SCM ps_name = scm_makfrom0str (ps_name_str0 ? ps_name_str0 : "");
211   
212   FT_Done_Face (face);
213   
214   if (be_verbose_global)
215     progress_indication ("]");
216   
217   return ps_name;
218 }
219
220
221
222 LY_DEFINE (ly_ttf_to_pfa, "ly:ttf->pfa",
223            1, 0, 0, (SCM ttf_file_name),
224            "Convert the contents of a TTF file to Type42 PFA, returning it as "
225            " a string.")
226 {
227   SCM_ASSERT_TYPE (scm_is_string (ttf_file_name), ttf_file_name,
228                    SCM_ARG1, __FUNCTION__, "string");
229
230   string file_name = ly_scm2string (ttf_file_name);
231   if (be_verbose_global)
232     progress_indication ("[" + file_name);
233
234   Memory_out_stream stream;
235
236   create_type42_font (&stream, file_name);
237   SCM asscm = scm_from_locale_stringn (stream.get_string (),
238                                        stream.get_length ());
239
240   if (be_verbose_global)
241     progress_indication ("]");
242
243   return asscm;
244 }