createPdfFromImages function

  1. @JS('createPdfFromImages')
JSPromise<JSAny?> createPdfFromImages(
  1. JSArray<JSString> inputPaths,
  2. JSAny? config
)

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.

Implementation

@JS('createPdfFromImages')
external JSPromise createPdfFromImages(
    JSArray<JSString> inputPaths, JSAny? config);