4 * Copyright (C) 2014-2015 by Werner Lemberg.
6 * This file is part of the ttfautohint library, and may only be used,
7 * modified, and distributed under the terms given in `COPYING'. By
8 * continuing to use, modify, or distribute this file you indicate that you
9 * have read `COPYING' and understand and accept it fully.
11 * The file `COPYING' mentioned in the previous paragraph is distributed
12 * with the ttfautohint library.
20 #define DUMPVAL(str, arg) \
25 width, (str), (FT_Long)(arg)); \
27 #define DUMPSTR(str, arg) \
32 width, (str), (arg), eol); \
34 #define DUMPSTRX(arg) \
39 prev_eol, width, "", (arg), eol); \
44 /* if `format' is set, we present the data in a more friendly format */
47 TA_font_dump_parameters(FONT
* font
,
58 const char* eol
= "\n";
59 const char* prev_eol
= "";
66 s
= sdscat(s
, "TTF_autohint parameters\n"
67 "=======================\n"
80 DUMPVAL("adjust-subglyphs",
81 font
->adjust_subglyphs
);
82 DUMPSTR("default-script",
83 script_names
[font
->default_script
]);
84 DUMPVAL("dw-cleartype-strong-stem-width",
85 font
->dw_cleartype_strong_stem_width
);
86 DUMPSTR("fallback-script",
87 script_names
[ta_style_classes
[font
->fallback_style
]->script
]);
88 DUMPVAL("fallback-stem-width",
89 font
->fallback_stem_width
);
90 DUMPVAL("gdi-cleartype-strong-stem-width",
91 font
->gdi_cleartype_strong_stem_width
);
92 DUMPVAL("gray-strong-stem-width",
93 font
->gray_strong_stem_width
);
94 DUMPVAL("hinting-limit",
96 DUMPVAL("hinting-range-max",
97 font
->hinting_range_max
);
98 DUMPVAL("hinting-range-min",
99 font
->hinting_range_min
);
100 DUMPVAL("hint-composites",
101 font
->hint_composites
);
102 DUMPVAL("ignore-restrictions",
103 font
->ignore_restrictions
);
104 DUMPVAL("increase-x-height",
105 font
->increase_x_height
);
110 DUMPVAL("windows-compatibility",
111 font
->windows_compatibility
);
113 ns
= number_set_show(font
->x_height_snapping_exceptions
,
114 TA_PROP_INCREASE_X_HEIGHT_MIN
, 0x7FFF);
122 DUMPSTR("x-height-snapping-exceptions", ns
);
124 ds
= TA_control_show(font
);
132 /* show control instructions line by line */
145 token
= strtok_r(ds
, "\n", &saveptr
);
146 DUMPSTR("control-instructions", token
);
150 token
= strtok_r(NULL
, "\n", &saveptr
);
158 DUMPSTR("control-instructions", "");
172 res
= (char*)malloc(len
);
181 /* end of tadump.c */