3 // Copyright (C) 2012-2013 by Werner Lemberg.
5 // This file is part of the ttfautohint library, and may only be used,
6 // modified, and distributed under the terms given in `COPYING'. By
7 // continuing to use, modify, or distribute this file you indicate that you
8 // have read `COPYING' and understand and accept it fully.
10 // The file `COPYING' mentioned in the previous paragraph is distributed
11 // with the ttfautohint library.
22 #define TTFAUTOHINT_STRING "; ttfautohint"
23 #define TTFAUTOHINT_STRING_WIDE "\0;\0 \0t\0t\0f\0a\0u\0t\0o\0h\0i\0n\0t"
25 // build string which gets appended to the `Version' field(s)
29 // return value 1 means allocation error, value 2 too long a string
32 build_version_string(Info_Data
* idata
)
38 unsigned char* data_new
;
39 unsigned short data_new_len
;
44 // 128 bytes certainly hold the following options except -X
45 data_new
= (unsigned char*)realloc(idata
->data
, 128);
51 idata
->data
= data_new
;
53 d
= (char*)idata
->data
;
54 d
+= sprintf(d
, TTFAUTOHINT_STRING
" (v%s)", VERSION
);
58 d
+= sprintf(d
, " -d");
62 d
+= sprintf(d
, " -l %d", idata
->hinting_range_min
);
63 d
+= sprintf(d
, " -r %d", idata
->hinting_range_max
);
64 d
+= sprintf(d
, " -G %d", idata
->hinting_limit
);
65 d
+= sprintf(d
, " -x %d", idata
->increase_x_height
);
72 if (idata
->gray_strong_stem_width
)
73 strong
[count
++] = 'g';
74 if (idata
->gdi_cleartype_strong_stem_width
)
75 strong
[count
++] = 'G';
76 if (idata
->dw_cleartype_strong_stem_width
)
77 strong
[count
++] = 'D';
78 d
+= sprintf(d
, " -w \"%s\"", strong
);
80 if (idata
->windows_compatibility
)
81 d
+= sprintf(d
, " -W");
82 if (idata
->pre_hinting
)
83 d
+= sprintf(d
, " -p");
84 if (!idata
->hint_composites
)
85 d
+= sprintf(d
, " -c");
86 if (idata
->latin_fallback
)
87 d
+= sprintf(d
, " -f");
89 d
+= sprintf(d
, " -s");
90 if (idata
->x_height_snapping_exceptions
)
91 d
+= sprintf(d
, " -X \"\""); // fill in data later
94 idata
->data_len
= d
- (char*)idata
->data
;
96 if (idata
->x_height_snapping_exceptions
)
98 s
= number_set_show(idata
->x_height_snapping_exceptions
, 6, 0x7FFF);
105 // ensure UTF16-BE version doesn't get too long
107 if (s_len
> 0xFFFF / 2 - 128)
116 // we now reallocate to the real size
117 // (plus one byte so that `sprintf' works)
118 data_new_len
= idata
->data_len
+ s_len
;
119 data_new
= (unsigned char*)realloc(idata
->data
, data_new_len
+ 1);
126 if (idata
->x_height_snapping_exceptions
)
128 // overwrite second doublequote and append it instead
129 d
= (char*)(data_new
+ idata
->data_len
- 1);
130 sprintf(d
, "%s\"", s
);
133 idata
->data
= data_new
;
134 idata
->data_len
= data_new_len
;
136 // prepare UTF16-BE version data
137 idata
->data_wide_len
= 2 * idata
->data_len
;
138 data_new
= (unsigned char*)realloc(idata
->data_wide
,
139 idata
->data_wide_len
);
145 idata
->data_wide
= data_new
;
147 d
= (char*)idata
->data
;
148 dw
= (char*)idata
->data_wide
;
149 for (unsigned short i
= 0; i
< idata
->data_len
; i
++)
162 free(idata
->data_wide
);
165 idata
->data_wide
= NULL
;
167 idata
->data_wide_len
= 0;
174 info(unsigned short platform_id
,
175 unsigned short encoding_id
,
176 unsigned short /* language_id */,
177 unsigned short name_id
,
182 Info_Data
* idata
= (Info_Data
*)user
;
183 unsigned char ttfautohint_string
[] = TTFAUTOHINT_STRING
;
184 unsigned char ttfautohint_string_wide
[] = TTFAUTOHINT_STRING_WIDE
;
186 // we use memmem, so don't count the trailing \0 character
187 size_t ttfautohint_string_len
= sizeof (TTFAUTOHINT_STRING
) - 1;
188 size_t ttfautohint_string_wide_len
= sizeof (TTFAUTOHINT_STRING_WIDE
) - 1;
191 unsigned short v_len
;
196 // if it is a version string, append our data
201 || (platform_id
== 3 && !(encoding_id
== 1
202 || encoding_id
== 10)))
204 // one-byte or multi-byte encodings
206 v_len
= idata
->data_len
;
207 s
= ttfautohint_string
;
208 s_len
= ttfautohint_string_len
;
213 // (two-byte) UTF-16BE for everything else
214 v
= idata
->data_wide
;
215 v_len
= idata
->data_wide_len
;
216 s
= ttfautohint_string_wide
;
217 s_len
= ttfautohint_string_wide_len
;
221 // if we already have an ttfautohint info string,
222 // remove it up to a following `;' character (or end of string)
223 unsigned char* s_start
= (unsigned char*)memmem(*str
, *len
, s
, s_len
);
226 unsigned char* s_end
= s_start
+ offset
;
227 unsigned char* limit
= *str
+ *len
;
229 while (s_end
< limit
)
237 if (*(s_end
- 1) == '\0') // UTF-16BE
248 while (s_end
< limit
)
249 *s_start
++ = *s_end
++;
251 *len
-= s_end
- s_start
;
254 // do nothing if the string would become too long
255 if (*len
> 0xFFFF - v_len
)
258 unsigned short len_new
= *len
+ v_len
;
259 unsigned char* str_new
= (unsigned char*)realloc(*str
, len_new
);
264 memcpy(*str
+ *len
, v
, v_len
);