Invoice PDF – How to Display an Image in Magento PDF Invoice

invoicepdf

This is my code:

$image = Zend_Pdf_Image::imageWithPath("http://stefan.local/media/catalog/product/1/1.jpg");
$page->drawImage($image, 10, 30, 20, 50);

But I am getting this error message:

a:5:{i:0;s:45:"Cannot create image resource. File not found.";i:1;s:1336:"#0 C:\xampp\htdocs\stefan\lib\Zend\Pdf\Image.php(124): Zend_Pdf_Resource_ImageFactory::factory('http://stefan.l...')
Can someone help me with this ?

Best Answer

you have to pass path like "C:\xampp\htdocs\stefan\media\catalog\product\1\1.jpg". not http path.