How to print a base64 pdf?

javascript, jquery, pdf

Solution

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.

Problem

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: function(data) { var printWindow = window.open( "data:application/pdf;base64, " + data ); printWindow.print(); } }); ``` Sadly, this does not work in Chrome. I am receiving the following error: SecurityError: Blocked a frame with origin "xxx" from accessing a frame with origin "null". The frame requesting access has a protocol of "http", the frame being accessed has a protocol of "data". Protocols must match. Suggestions on how to work around this?

Original source

Related problems