diff options
author | Lei Zhang <thestig@chromium.org> | 2018-07-13 16:12:01 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-13 16:12:01 +0000 |
commit | 3a83fe5cf6cf1c056118531105359fc31615dc7f (patch) | |
tree | 737f36d22ea245520f090c9b38e53be165353678 /public/fpdf_ppo.h | |
parent | d8df8c35a463073579ca01a838699b037eca7cee (diff) | |
download | pdfium-3a83fe5cf6cf1c056118531105359fc31615dc7f.tar.xz |
Fix FPDF_ImportNPagesToOne() documentation.
FPDF_ImportNPagesToOne() has width/height parameters to indicate the
dimensions of pages in the returned PDF. PDF is not a raster-based
format, so pixels are not the right unit for page dimensions.
Change-Id: Iff5b373a5a020b5822aaa29d2b44f1dbf7a75b13
Reviewed-on: https://pdfium-review.googlesource.com/37810
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'public/fpdf_ppo.h')
-rw-r--r-- | public/fpdf_ppo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/fpdf_ppo.h b/public/fpdf_ppo.h index 7b21aed404..85112696be 100644 --- a/public/fpdf_ppo.h +++ b/public/fpdf_ppo.h @@ -34,8 +34,8 @@ FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDF_ImportPages(FPDF_DOCUMENT dest_doc, // |output_doc| page. // // src_doc - The document to be imported. -// output_width - The output page width measured in pixels. -// output_height - The output page height measured in pixels. +// output_width - The output page width in PDF "user space" units. +// output_height - The output page height in PDF "user space" units. // num_pages_on_x_axis - The number of pages on X Axis. // num_pages_on_y_axis - The number of pages on Y Axis. // |