Hello,
I am having trouble placing an image created in PHP into a PDF, and my google-fu seems to be lacking for finding an answer to how I can get around this, referencing the PHP manual I found 3 options for placing images
the following essentially told me the same thing, it wants me to point it to an image file rather than an image variable...
// $pdf_image = pdf_open_image_file($pdf, "png", $image, "", $pdf_page);
//(unsupported) $pdf_image = PDF_open_memory_image($pdf, $image);
$pdf_image = pdf_load_image($pdf,"png",$image,"");
anyone have an idea how I can get around this one?