var fDesc=new Array(); fDesc[0] = "QPCPrint is an emulator that accepts input in ESC/P2 format, be it text or raster graphics, and outputs the result to any Windows compatible printer. The emulation has a precision of 1440dpi and matches the output of a real printer extremely well.

The QPCPrint engine presents itself in the form of a filter plug-in, i.e. an executable that accepts input as a file and outputs the result on a printer. This mechanism is directly supported by the QPC QL emulator, for example. Using freely available third party tools it can also be turned into the heart of a virtual Windows printer, thus enabling applications that directly put their data into a printer spool or even still use LPT ports to use QPCPrint."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }