```` use PDF::API2; my $pdf = PDF::API2->new; my $page = $pdf->page; my $gfx = $page->gfx; my $img = $pdf->image("squirrel.tiff"); $gfx->object( $img, 100, 500, 100, 100 ); $pdf->save("squirrel.pdf"); ```` When applied to the attached TIFF image file, it renders a garbled image. [tiff.zip](https://github.com/ssimms/pdfapi2/files/13795542/tiff.zip)