From 342628ed03d5895b6896bfe7e026077efc5e9210 Mon Sep 17 00:00:00 2001 From: Lu Wang Date: Sat, 19 Jan 2013 17:17:12 +0800 Subject: [PATCH] .. --- src/pdf2htmlEX.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pdf2htmlEX.cc b/src/pdf2htmlEX.cc index 3a82ed5..8bec400 100644 --- a/src/pdf2htmlEX.cc +++ b/src/pdf2htmlEX.cc @@ -63,8 +63,8 @@ void parse_options (int argc, char **argv) .add("last-page,l", ¶m.last_page, numeric_limits::max(), "last page to process") .add("zoom", ¶m.zoom, 0, "zoom ratio", nullptr, true) - .add("fit-width", ¶m.fit_width, 0, "fit width", nullptr, true) - .add("fit-height", ¶m.fit_height, 0, "fit height", nullptr, true) + .add("fit-width", ¶m.fit_width, 0, "fit width to pixels", nullptr, true) + .add("fit-height", ¶m.fit_height, 0, "fit height to pixels", nullptr, true) .add("hdpi", ¶m.h_dpi, 144.0, "horizontal DPI for non-text") .add("vdpi", ¶m.v_dpi, 144.0, "vertical DPI for non-text") .add("use-cropbox", ¶m.use_cropbox, 0, "use CropBox instead of MediaBox")