I am trying to use PDFlib to create a pdf of a tiff image. I have run through all the examples and can create the 'hello world' example but cannot get the image to go. The following is my code (PHP5 Zend, RHES2, Apache2):
<?php
$pdf = PDF_new();
PDF_open_file($pdf,'');
PDF_begin_page($pdf,595,842);
$image = PDF_load_image($pdf,"tiff","image.tiff","");
PDF_place_image($pdf,$image,64,26,.24);
?>
I get a blank page. Any help would be greatly appreciated. Thanks.