Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

getDocument

This is the main entry point for loading a PDF and interacting with it.

NOTE: If a URL is used to fetch the PDF data a standard Fetch API call (or XHR as fallback) is used, which means it must follow same origin rules, e.g. no cross-domain requests without CORS.

function getDocument(src:
| string
| URL
| TypedArray
| DocumentInitParameters
): PDFDocumentLoadingTask;
§
getDocument(src: string | URL | TypedArray | PDFDataRangeTransport | DocumentInitParameters): PDFDocumentLoadingTask
[src]

§Parameters

§
src: string | URL | TypedArray | PDFDataRangeTransport | DocumentInitParameters
[src]
  • Can be a URL where a PDF file is located, a typed array (Uint8Array) already populated with data, or a parameter object.