将PDF文件发送到打印机

时间:2014-04-30 06:11:50

标签: php pdf printwriter

我使用php_printer.dll扩展名在php中打印一些文本,我的代码用于打印

$handle = printer_open("EPSON TM-T82II Receipt");
    printer_start_doc($handle, "My Document");
    printer_start_page($handle);
    $filename='billdoc_260.pdf';
    $fhandle=fopen($filename, 'r');
    $contents = fread($fhandle, filesize($filename));
    fclose($fhandle);
    printer_set_option($handle, PRINTER_MODE, "RAW");
    printer_write($handle,$contents);
    printer_end_page($handle);
    printer_end_doc($handle);
    printer_close($handle);

它打印pdf文件的原始文本,类似这样

%PDF-1.3 3 0 obj <> endobj 4 0 obj <> stream xœ•TMOÛ@½çWL

我尝试了其他PRINTER_MODE,例如emf,text但无效。

任何人都可以告诉我如何在Windows上的WAMP中从我的打印机打印pdf。

0 个答案:

没有答案