web/pdf_combiner_web_bindings
library
Functions
-
combinePDFs(JSArray<JSString> inputPaths)
→ JSPromise<JSAny?>
-
JavaScript binding to combine multiple PDFs
This external function calls the
combinePDFs JavaScript function, passing a JSArray<JSString> of input file paths.
It returns a JSPromise which resolves to the result of combining the PDFs.
-
convertPdfToImages(JSString inputPath, JSAny? config)
→ JSPromise<JSAny?>
-
JavaScript binding to convert a PDF to multiple images
This external function calls the
convertPdfToImages JavaScript function, passing a JSString input path of the PDF file.
It returns a JSPromise which resolves to the resulting images.
-
createPdfFromImages(JSArray<JSString> inputPaths, JSAny? config)
→ JSPromise<JSAny?>
-
JavaScript binding to create a PDF from multiple images
This external function calls the
createPdfFromImages JavaScript function, passing a JSArray<JSString> of input image file paths.
It returns a JSPromise which resolves to the path of the created PDF.
-
pdfToImage(JSString inputPath, JSAny? config)
→ JSPromise<JSAny?>
-
JavaScript binding to convert a PDF to a single image
This external function calls the
pdfToImage JavaScript function, passing a JSString input path of the PDF file.
It returns a JSPromise which resolves to the resulting image.