UNPKG

pdf2html

Version:

PDF to HTML or Text conversion using Apache Tika. Also generate PDF thumbnail using Apache PDFBox.

18 lines (16 loc) 282 B
// lib/config.js /** * Configuration constants */ const DEFAULT_OPTIONS = { thumbnail: { page: 1, imageType: 'png', width: 160, height: 226, }, command: { maxBuffer: 1024 * 2000, }, }; module.exports = { DEFAULT_OPTIONS };