Jump to content

Encryption Problem in pdf?


divadiva

Recommended Posts

Experts,

 

Is there a way I can handle encrypted pdf files?I have created a pdf form which reads data from database and merges another pdf as well.

 

It works well with non encryted files.But if the PDF is encrypted I get: 
FPDF error: File is encrypted!

 

Here is the code that merges another file:

 

$pdf->Ln() ;
				$pdf->Ln() ;
				$pdf->Ln() ;
				$pagecount = $pdf->setSourceFile('../files/'.$d_row['configuration_file']); //pdf file is encrypted

				for($fpdipageindex=1; $fpdipageindex<=$pagecount; $fpdipageindex++)
				{				
					$tplidx = $pdf->importPage($fpdipageindex);					
					$pdf->addPage(); 	
					$pdf->useTemplate($tplidx, 20, 30, 150); 




 

 

How to handle?Any suggestions?

 

Thanks in advance.

 

 

Link to comment
https://forums.phpfreaks.com/topic/144781-encryption-problem-in-pdf/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.