Posts

Showing posts from June, 2020

How to download view only protected PDF from Google Drive

Image
JS Code 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); How to download view only protected PDF from Google Drive

Search Engine Optimization Quiz No 2 Solution Batch 7 Digiskills

Image
Search Engine Optimization Quiz No 2 Solution Batch 7 Digiskills SEO Quiz No 2 Solution Batch 7 Digiskills Quiz No 2 Solution Batch 7 Digiskills SEO SEO No 2 Solution Batch 7 Digiskills Quiz No 2 Solution Batch 7 Digiskills Search Engine Optimization DigiSkills SEO Quiz No 1 Solution Batch 7 DigiSkills SEO Quiz No 2 Solution Batch 7 DigiSkills SEO Quiz No 3 Solution Batch 7 DigiSkills SEO Quiz No 4 Solution Batch 7 Related Posts: Freelancing Quiz No 1 Solution Batch 7 Digiskills Creative Writing Quiz No 1 Solution Batch 7 Digiskills DigiSkills.pk Training Program is Pakistan’s first Online Training Program to empower the youth with skills that are in--demand in freelance market. DigiSkills Training Program consists of multiple online skill-based training courses. There are ten courses that are being offered in this program : Freelancing WordPress Creative Writing Search Engine Optimization (SEO) Graphics Design E-Commerce Management AutoCAD Qui...