1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 09:38:40 +00:00
This commit is contained in:
Lu Wang 2012-09-23 13:04:29 +08:00
parent 9ed1931caa
commit b6ac8eb8f0
2 changed files with 140 additions and 142 deletions

View File

@ -10,8 +10,7 @@
* Copyright 2012 Lu Wang <coolwanglu@gmail.com>
*/
var pdf2htmlEX = (function(){
return {
var pdf2htmlEX = {
pages : [],
page_boxes : [],
container : null,
@ -173,5 +172,4 @@ var pdf2htmlEX = (function(){
},
__last_member__ : 'no comma' /*,*/
}.init();
})();
}.init();

View File

@ -73,7 +73,7 @@ void parse_options (int argc, char **argv)
.add("heps", &param.h_eps, 1.0, "max tolerated horizontal offset (in pixels)")
.add("veps", &param.v_eps, 1.0, "max tolerated vertical offset (in pixels)")
.add("space-threshold", &param.space_threshold, (1.0/8), "distance no thiner than (threshold * em) will be considered as a space character")
.add("font-size-multiplier", &param.font_size_multiplier, 8.0, "setting a value greater than 1 would increase the rendering accuracy")
.add("font-size-multiplier", &param.font_size_multiplier, 4.0, "setting a value greater than 1 would increase the rendering accuracy")
.add("auto-hint", &param.auto_hint, 0, "[Experimental] Whether to generate hints for fonts")
.add("tounicode", &param.tounicode, 0, "Specify how to deal with ToUnicode map, 0 for auto, 1 for forced, -1 for disabled")
.add("space-as-offset", &param.space_as_offset, 0, "treat space characters as offsets")