|  PHP interesse |  | Hallo 
 Bij een pdf met afbeelding krijg ik een fout melding:
 
 
 
    
    
        
            
                
<?php
$img  = pdf_open_image_file($this->m_sPDFbestand, "jpeg", "mijnAfbeelding.jpg");
pdf_place_image($this->m_sPDFbestand, $img, 50, 650, 0.6);
?>
 <?php $img  = pdf_open_image_file($this->m_sPDFbestand, "jpeg", "mijnAfbeelding.jpg");pdf_place_image($this->m_sPDFbestand, $img, 50, 650, 0.6); ?>
   
 Fout melding:
 Fatal error: Uncaught exception 'PDFlibException' with message 'pdf_open_image_file() expects exactly 5 parameters, 3 given' in C:\clsPDF.php:152 Stack trace: #0 C:\clsPDF.php(152): pdf_open_image_file() #1 C:\index.php(18): clsPDF->PDFgenereren(Resource id #3, 'jpeg', 'mijnAfbeelding....') #2 {main} thrown in C:\clsPDF.php on line 152
 
 In deze tutorial: http://www.site...en_met_PHP worden ook maar 3 parameters gebruikt
  
 Wie kan mij helpen?
 |