If someone can take a look ath this example and tell me what it does NOT produce any result.... thanks a lot for your help.
<?php
$pdf = cpdf_open(0);
cpdf_page_init($pdf,1,0,842,595,1);
cpdf_import_jpeg($pdf,"2.jpeg",10,10,0,200,109,0,0,1);
cpdf_finalize($pdf);
Header("Content-type: application/pdf");
cpdf_output_buffer($pdf);
cpdf_close($pdf);
?>