]> git.donarmstrong.com Git - lilypond.git/blob - lily/pfb.cc
* lily/pfb.cc (LY_DEFINE): ly:ttf->pfa, new function.
[lilypond.git] / lily / pfb.cc
1 /* 
2   pfb.cc --  implement pfb conversion.
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2004--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7   
8 */
9
10 #include <cstdlib>
11 #include <cstdio>
12 #include <cstring>
13
14 #include "source-file.hh"
15 #include "memory-stream.hh"
16 #include "ttftool.h"
17
18 char *
19 pfb2pfa (Byte const * pfb, int length)
20 {
21   char * out = new char[1];
22   int olen = 0;
23   
24   Byte const * p = pfb;
25   while (p  < pfb + length)  
26     {
27       if (*p++ != 128) 
28         break;
29
30       Byte type = *p++;
31       if (type == 3)
32         break ;
33
34       unsigned seglen =
35         p[0] | (p[1] << 8)
36         | (p[2] << 16) | (p[3] << 24);
37
38       p += 4;
39       if (type == 1)
40         {
41           out = (char*)realloc (out, olen + seglen + 1);
42           char* outp = out + olen ;
43           memcpy (outp, p, seglen);
44           olen += seglen; 
45           p += seglen;
46         }
47       else if (type == 2)
48         {
49           unsigned outlength =  (seglen * 2) + (seglen / 32) + 2;
50
51           out = (char*)realloc (out, olen + outlength + 1);
52
53           char * outp = out + olen;
54           for (int i = seglen; i--;)
55             {
56               sprintf (outp, "%02x", *p++);
57               outp += 2;
58               if (!(i % 32))
59                 {
60                   *outp ++ = '\n';
61                 }
62             }
63
64           olen = outp - out;
65         }
66       
67     }
68   out[olen] = 0;
69
70   return out;
71 }
72
73 LY_DEFINE(ly_pfb_to_pfa, "ly:pfb->pfa",
74           1, 0, 0, (SCM pfb_path),
75           "Convert the contents of a PFB file to PFA."
76           )
77 {
78   SCM_ASSERT_TYPE(scm_is_string (pfb_path), pfb_path,
79                   SCM_ARG1, __FUNCTION__, "string");
80
81   String path = ly_scm2string (pfb_path);
82   int len ; 
83   char *str = gulp_file (path, &len);
84   char *pfa = pfb2pfa ((Byte*)str, len);
85   
86   SCM pfa_scm = scm_makfrom0str(pfa);
87   free (pfa);
88   delete str;
89   return pfa_scm;
90 }
91
92
93 LY_DEFINE(ly_ttf_to_pfa, "ly:ttf->pfa",
94           1, 0, 0, (SCM ttf_path),
95           "Convert the contents of a TTF file to Type42 PFA, returning it as "
96           " a string."
97           )
98 {
99   SCM_ASSERT_TYPE(scm_is_string (ttf_path), ttf_path,
100                   SCM_ARG1, __FUNCTION__, "string");
101
102   String path = ly_scm2string (ttf_path);
103
104   Memory_out_stream stream;
105   create_type42(path.to_str0 (),
106                 stream.get_file());
107   SCM asscm = scm_from_locale_stringn (stream.get_string (),
108                                        stream.get_length ());
109
110   return asscm;
111 }
112           
113