How To Print A Base64 Pdf?
I receive a base64 pdf from the server which I want to print. I have been trying the following: $.ajax({ type: 'POST', url: url, data: blahblahblah, success: functi
Solution 1:
You can try to open your window and try to insert the pdf data as embed.
Here is an piece of code I've found and used fine (I changed to fit on your code, but not tested):
$.ajax({
type: "POST",
url: url,
data: blahblahblah,
success: function(data) {
var winparams = 'dependent=yes,locationbar=no,scrollbars=yes,menubar=yes,'+
'resizable,screenX=50,screenY=50,width=850,height=1050';
var htmlPop = '<embed width=100% height=100%'
+ ' type="application/pdf"'
+ ' src="data:application/pdf;base64,'
+ escape(data)
+ '"></embed>';
var printWindow = window.open ("", "PDF", winparams);
printWindow.document.write (htmlPop);
printWindow.print();
}
});
Hope it helps.
Solution 2:
// open PDF received as Base64 encoded string in new tab
const openPdf = (basePdf) => {
let byteCharacters = atob(basePdf);
let byteNumbers = new Array(byteCharacters.length);
for (let i = 0; i < byteCharacters.length; i++) {
byteNumbers[i] = byteCharacters.charCodeAt(i);
}
let byteArray = new Uint8Array(byteNumbers);
let file = new Blob([byteArray], {type: 'application/pdf;base64'});
let fileURL = URL.createObjectURL(file);
window.open(fileURL);
}
Solution 3:
you can use jspdf to do this like
var p=new jspdf();
p.addImage(imgData, 'JPEG', 0, 0); // where imageDate contains base64 string
Post a Comment for "How To Print A Base64 Pdf?"