pdf-to-png-converter
Version:
Node.js utility to convert PDF file/buffer pages to PNG files/buffers. No build-time compilation required — pre-built native binaries included for all major platforms.
13 lines (12 loc) • 409 B
TypeScript
/**
* Verbosity levels for the pdfjs-dist logger, passed via `PdfToPngOptions.verbosityLevel`.
*
* - `ERRORS` (0) — only errors are logged (default, recommended for production)
* - `WARNINGS` (1) — errors and warnings are logged
* - `INFOS` (5) — all messages including informational output are logged
*/
export declare enum VerbosityLevel {
ERRORS = 0,
WARNINGS = 1,
INFOS = 5
}