set_option("searchpath={" . $searchpath . "}"); /* This means we must check return values of load_font() etc. */ $p->set_option("errorpolicy=return"); if ($p->begin_document($outfile, "") == 0) throw new Exception("Error: " . $p->get_errmsg()); $p->set_info("Creator", "PDFlib Cookbook"); $p->set_info("Title", $title); // Download image data from URL and store it in a PVF file if ($p->download("/pvf/image", "createpvf source={url=" . $image_url . "}") == 0) throw new Exception("Error: " . $p->get_errmsg()); /* Load the image from the PVF */ $image = $p->load_image("auto", "/pvf/image" , ""); if ($image == 0) throw new Exception("Error: " . $p->get_errmsg()); /* Start a page, place the image, and finish the page */ $p->begin_page_ext(400, 200, ""); $p->fit_image($image, 50, 100, ""); $p->end_page_ext(""); /* Delete the virtual file to free the allocated memory */ $p->delete_pvf("/pvf/image"); $p->end_document(""); $buf = $p->get_buffer(); $len = strlen($buf); header("Content-type: application/pdf"); header("Content-Length: $len"); header("Content-Disposition: inline; filename=image_from_url.pdf"); print $buf; } catch (PDFlibException $e) { print("PDFlib exception occurred:\n". "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": " . $e->get_errmsg() . "\n"); exit(1); } catch (Throwable $e) { echo("PHP exception occurred: " . $e->getMessage() . "\n"); exit(1); } $p = 0; ?>