The code you put isn't well formed:

    $pdf->pages[0]->drawText('Alcalá - España', 300, 770, 'ISO-8859-1');

The characters you are using are UTF8, you have to change 'ISO-8859-1' with
'UTF8' and you will be done. The row would be like that:

    $pdf->pages[0]->drawText('Alcalá - España', 300, 770, 'UTF8');

--
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/Latin-fonts-in-Zend-Pdf-tp648967p3943751.html
Sent from the Zend Framework mailing list archive at Nabble.com.

--
List: [email protected]
Info: http://framework.zend.com/archives
Unsubscribe: [email protected]


Reply via email to