Bir javascript ile PDF (FPDF) işlemek mümkün mü?

0 Cevap php

Yani, PDF garble üretir sunucusuna jQuery ile bazı değerleri geçiyorum. Böyle bir şey gider:

$.post('/admin/printBatch',
data, // Some vars and such
function(data){
    if(data) {

        var batch =  window.open('','Batch Print','width=600,height=600,location=_newtab');
        var html = data; // Perhaps some header info here?!
        batch.document.open();
        batch.document.write(html);
        batch.document.close();

        $( this ).dialog( "close" ); // jQuery UI
    } else {
        alert("Something went wrong, dawg.");
    }
    return false;
});

Çıktı dosyası kabaca şöyle görünüyor:

$pdf->AddPage(null, null, 'A PDF Page');
//....
$pdf->Output('', 'I'); // 'I' sends the file inline to the browser (http://fpdf.org/en/doc/output.htm)

Tarayıcı penceresine render alır Ne:

%PDF-1.3 3 0 obj <> endobj 4 0 obj <> stream ...

Ben büyük bir şey eksik, ben sadece ... düşüncelerini bilmek?

Teşekkürler çocuklar.

0 Cevap