nickalchemist
nickalchemist

Reputation: 2241

Password protect PDF using Javascript

Is there a way to password protect PDF document while generation using any JS library? Something like-

doc = new jsPDF({'password':'lethal'});
var initialx = 10;
var initialy = 25;
var end = 190;

Upvotes: 1

Views: 4030

Answers (1)

Santoni
Santoni

Reputation: 164

You can check library you use for method like setProtection or something else like in this library here. There are a lot of parameters You have to check but I am sure you'll handle it :)

Upvotes: 1

Related Questions