Unable to open password protected pdf in angular application

1.4k Views Asked by At

i use pdfjs-dist in my angular application to render pdf. but i am unable to open password protected pdf. Is there any other way to verify password for the document and open it.

1

There are 1 best solutions below

1
On

Use the below code.

let  pdfJs= require('pdfjs-dist');
pdfJs.getDocument({ url: 'my.pdf', password: 'your password' }).then(function(pdf) 
{
  let text = [];
  for(let i = 1; i <= pdf.numPages; i++) {
    pdf.getPage(i).then(function(page) {
      page.getTextContent().then(function(data) {
        for(let j = 0; j < data.items.length; j++) {
          text.push(data.items[j].str);
        }        
      });
    });
  }

}).catch(function(error) {

});