Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm overriding pdf invoice model to add some text in footer of the pdf.When I print invoice from the backend,strange characters are getting displayed.enter image description here

app/code/local/Company/Invoice/etc/config.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Company_Invoice>
            <version>0.1.0</version>
        </Company_Invoice>
    </modules>
    <global>
        <models>
            <sales>
                <rewrite>
                    <order_pdf_invoice>Company_Invoice_Model_Order_Pdf_Invoice</order_pdf_invoice>
                </rewrite>
            </sales>
        </models>
    </global>
</config>

app/code/local/Company/Invoice/Model/Order/Pdf/Invoice.php http://pastebin.com/VQaWr0Xg

If this module is disabled,default Magento prints invoice correctly.Any ideas?

share|improve this question
have tried adding the encoding? $page->drawText(Mage::helper('sales')->__('test'),25,25, 'UTF-8); – Soundz Sep 3 '12 at 9:36
It doesn't seems to work – blakcaps Sep 3 '12 at 9:43
try passing the page by reference with &$page i got my pdf creation working like this – Soundz Sep 3 '12 at 11:25

1 Answer

It looks like you included a var_dump() statement somewhere. Try searching your codebase for an occurence of var_dump() and remove it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.