mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
set default space_threshold as 1/8
This commit is contained in:
parent
52c884e097
commit
c12e064f74
@ -82,7 +82,7 @@ po::variables_map parse_options (int argc, char **argv)
|
||||
|
||||
("heps", po::value<double>(¶m.h_eps)->default_value(1.0), "max tolerated horizontal offset (in pixels)")
|
||||
("veps", po::value<double>(¶m.v_eps)->default_value(1.0), "max tolerated vertical offset (in pixels)")
|
||||
("space-threshold", po::value<double>(¶m.space_threshold)->default_value(1.0/6), "distance no thiner than (threshold * em) will be considered as a space character")
|
||||
("space-threshold", po::value<double>(¶m.space_threshold)->default_value(1.0/8), "distance no thiner than (threshold * em) will be considered as a space character")
|
||||
("font-size-multiplier", po::value<double>(¶m.font_size_multiplier)->default_value(10.0), "setting a value greater than 1 would increase the rendering accuracy")
|
||||
("always-apply-tounicode", po::value<int>(¶m.always_apply_tounicode)->default_value(0), "ToUnicode map is ignore for non-TTF fonts unless this switch is on")
|
||||
("space-as-offset", po::value<int>(¶m.space_as_offset)->default_value(0), "treat space characters as offsets")
|
||||
|
Loading…
Reference in New Issue
Block a user