Pdf.js:使用base64文件源而不是url呈现pdf文件

Ale*_*lex 64 javascript pdf base64 canvas pdf.js

我正在尝试使用pdf.js从pdf渲染页面

通常,使用网址,我可以这样做:

PDFJS.getDocument("http://www.server.com/file.pdf").then(function getPdfHelloWorld(pdf) {
  //
  // Fetch the first page
  //
  pdf.getPage(1).then(function getPageHelloWorld(page) {
    var scale = 1.5;
    var viewport = page.getViewport(scale);

    //
    // Prepare canvas using PDF page dimensions
    //
    var canvas = document.getElementById('the-canvas');
    var context = canvas.getContext('2d');
    canvas.height = viewport.height;
    canvas.width = viewport.width;

    //
    // Render PDF page into canvas context
    //
    page.render({canvasContext: context, viewport: viewport});
  });
});
Run Code Online (Sandbox Code Playgroud)

但在这种情况下,我将文件放在base64而不是url:

data:application/pdf;base64,JVBERi0xLjUKJdDUxdgKNSAwIG9iaiA8PAovTGVuZ3RoIDE2NjUgICAgICAKL0ZpbHRlciAvRmxhdGVEZWNvZGUKPj4Kc3RyZWFtCnjarVhLc9s2...
Run Code Online (Sandbox Code Playgroud)

怎么做到这一点?

Cod*_*fel 93

来自http://mozilla.github.com/pdf.js/build/pdf.js的源代码

/**
 * 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 XMLHttpRequest(XHR)
 * is used, which means it must follow the same origin rules that any XHR does
 * e.g. No cross domain requests without CORS.
 *
 * @param {string|TypedAray|object} source Can be an url to where a PDF is
 * located, a typed array (Uint8Array) already populated with data or
 * and parameter object with the following possible fields:
 *  - url   - The URL of the PDF.
 *  - data  - A typed array with PDF data.
 *  - httpHeaders - Basic authentication headers.
 *  - password - For decrypting password-protected PDFs.
 *
 * @return {Promise} A promise that is resolved with {PDFDocumentProxy} object.
 */
Run Code Online (Sandbox Code Playgroud)

因此,标准的XMLHttpRequest(XHR)用于检索文档.问题在于XMLHttpRequests不支持数据:uris(例如data:application/pdf; base64,JVBERi0xLjUK ......).

但是有可能将类型化的Javascript数组传递给函数.您唯一需要做的就是将base64字符串转换为Uint8Array.您可以使用https://gist.github.com/1032746上的此功能

var BASE64_MARKER = ';base64,';

function convertDataURIToBinary(dataURI) {
  var base64Index = dataURI.indexOf(BASE64_MARKER) + BASE64_MARKER.length;
  var base64 = dataURI.substring(base64Index);
  var raw = window.atob(base64);
  var rawLength = raw.length;
  var array = new Uint8Array(new ArrayBuffer(rawLength));

  for(var i = 0; i < rawLength; i++) {
    array[i] = raw.charCodeAt(i);
  }
  return array;
}
Run Code Online (Sandbox Code Playgroud)

TL;博士

var pdfAsDataUri = "data:application/pdf;base64,JVBERi0xLjUK..."; // shortened
var pdfAsArray = convertDataURIToBinary(pdfAsDataUri);
PDFJS.getDocument(pdfAsArray)
Run Code Online (Sandbox Code Playgroud)

  • 如果您处于“严格模式”,请不要忘记“i = 0”之前的“var”!我白白浪费了1个小时。:) (2认同)

Uze*_*zer 5

根据示例,直接支持 base64 编码,尽管我自己没有测试过。获取您的 base64 字符串(从文件派生或加载任何其他方法、POST/GET、websockets 等),将其转换为带有 atob 的二进制文件,然后将其解析为 PDFJS API 上的 getDocument,例如PDFJS.getDocument({data: base64PdfData});Codetoffel 答案确实适用于我虽然。