How to add a logo, PPI or amend your Ebay, Amazon, Play.com or eBid Magento invoices

How to add a logo, PPI or amend your Ebay, Amazon, Play.com or eBid Magento invoices

Yes, using our software with Ebay, Amazon (Marketplace (Pro Merchant) or Seller Central), Play.com or eBid you can produce invoices using Microsoft Word. Because it uses Microsoft Word you can have the invoice exactly how you want, adding logos, PPIs, return address details etc..

Adding a PPI to the label
You can add a PPI by adding the following lines after the code that draws the label (in the www.labz.co.uk section).

$image = Mage::getConfig()->getOptions()->getMediaDir().DS.'PPIImage.jpg';
$image = Zend_Pdf_Image::imageWithPath($image);
$page->drawImage($image, 190, 168, 290, 207);

You will need to put the image in the /public_html/media/ folder on your website. The PPI image should be 207 by 83 pixels.

Adding a logo to the label
You can add a logo by adding the following lines after the code that draws the label (or PPI) (in the www.labz.co.uk section).

$image = Mage::getConfig()->getOptions()->getMediaDir().DS.'IL_logo.jpg';
$image = Zend_Pdf_Image::imageWithPath($image);
$page->drawImage($image, 70, 181, 145, 207);

You will need to put the image in the /public_html/media/ folder on your website. In this example, The logo is 245 by 85 pixels.

You can find out more information on how the software works by using the Downloads link. There is also a free 14 day trial of the software.