this is the link for the dompdf, http://code.google.com/p/dompdf/
it is used to convert html to pdf .
when i tried using it normally(without using plugin), i am not getting error, its working fine . when i am trying to use it inside wordpress plugin, i am getting error that headers already sent , what is the solution for this ? if u want to experiment, try this code
<?php
require_once("dompdf_config.inc.php");
$html =
'<html><body>'.
'<p>Put your html here, or generate it with your favourite '.
'templating system.</p>'.
'</body></html>';
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("sample.pdf");
?>