How To Download View Only/Protected PDF Files From the Google Drive..!!
If You Worried about "How To Download View Only/Protected PDF Files From the Googel Drive...??", If So then don't worry about that because today I brought a solution for that,So be with till the last I will give you a proper solution for Downloading the View Only/Read Only/Protected PDF Files from the google drive.
Script To Download The View Only/Protected PDF Files :-
let jspdf = document.createElement("script");
jspdf.onload = function () {
let pdf = new jsPDF('p', 'mm', [1000, 625]);let elements = document.getElementsByTagName("img");for (let i in elements) {let img = elements[i];console.log("add img ", img);if (!/^blob:/.test(img.src)) {console.log("invalid src");continue;}let can = document.createElement('canvas');let con = can.getContext("2d");can.width = img.width;can.height = img.height;con.drawImage(img, 0, 0);let imgData = can.toDataURL("image/jpeg", 1.0);pdf.addImage(imgData, 'JPEG', 0, 0);pdf.addPage();}
pdf.save("download.pdf");};
jspdf.src = 'https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js';document.body.appendChild(jspdf);
The JS Code (Script which is written in the JavaScript) is use to download the View Only/Read Only/ Protected Pdf File From the google drive. This above JS Code will help you to download the pdf files which are present in the google drive with a protected password.
let jspdf = document.createElement("script");
jspdf.onload = function () {
let pdf = new jsPDF('p', 'mm', [1000, 625]);
let elements = document.getElementsByTagName("img");
for (let i in elements) {
let img = elements[i];
console.log("add img ", img);
if (!/^blob:/.test(img.src)) {
console.log("invalid src");
continue;
}
let can = document.createElement('canvas');
let con = can.getContext("2d");
can.width = img.width;
can.height = img.height;
con.drawImage(img, 0, 0);
let imgData = can.toDataURL("image/jpeg", 1.0);
pdf.addImage(imgData, 'JPEG', 0, 0);
pdf.addPage();
}
pdf.save("download.pdf");
};
jspdf.src = 'https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js';
document.body.appendChild(jspdf);
The JS Code (Script which is written in the JavaScript) is use to download the View Only/Read Only/ Protected Pdf File From the google drive. This above JS Code will help you to download the pdf files which are present in the google drive with a protected password.
Comments
Post a Comment