Michi Mummert: PDFlib ein bild darstellen

Hallo,

möchte ein PDF erzeugen mit Bild.
Text funktioniert prima!
Nur ein Bild bekomme ich nicht rein?

Fehler:
Fatal error: PDFlib error [1016] PDF_open_image_file: Couldn't open PNG file 'test.png' for reading (file not found) in d:\usr\local\http\remote\pdf\test.php on line 9

Code:
<?php

// create new document
$pdf = pdf_new();
pdf_open_file($pdf);
pdf_begin_page($pdf, 500, 700);

// open and place an image
$im = pdf_open_image_file($pdf, "png", "test.png");
pdf_place_image($pdf, $im, 250, 350, 0.4);
pdf_close_image($pdf, $im);

pdf_end_page($pdf);
pdf_close($pdf);

// output document
$data = pdf_get_buffer($pdf);
header("Content-type: application/pdf");
header("Content-disposition: inline; filename=test.pdf");
header("Content-length: " . strlen($data));
echo $data;
?>

Bild- und PHP-Datei liegen im selben Ordner.
Habe auch schon GIF U. JPEG versucht, ohne Erfolg.

Neue PDFlib ist installiert!

Weis jemand Rat?