I am currently using the TCPDF library to create PDFs on the fly. As part of my application, I store multiple image files (png, jpg, gif) in a MySQL database, in blob format. I'd like to use the TCPDF Image() function to place these images into a PDF file, each on a separate page. Is there an easy way to take the blob content for multiple entries in my database and place them into a PDF file? I am not tied to TCPDF if there is a better way to do this. Please help!

link|improve this question

80% accept rate
feedback

1 Answer

You do it like this:

$stmt = $mysqli->prepare("SELECT pdf FROM pdfs WHERE transaction = ?");
$stmt->bind_param('i',$id);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($pdfcontent);
while($stmt->fetch()){
     header("Content-Length: " . strlen($pdfcontent) );
     header("Content-Type: application/octet-stream");
     header('Content-Disposition: attachment; filename="YourPDF.pdf"');
     header("Content-Transfer-Encoding: binary\n");
     echo $pdfcontent;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.