I am using the R&OS PDF library to generate pdf documents in PHP. Living in Italy, unfortunately we have accented characters, which I just cannot manage to generate. I’ve looked through the instructions, and I found:
‘setup the helvetica font for use with german characters
$diff=array(196=>‘Adieresis’,228=>‘adieresis’,
214=>‘Odieresis’,246=>‘odieresis’,
220=>‘Udieresis’,252=>‘udieresis’,
223=>‘germandbls’);
$pdf->selectFont(’./fonts/Helvetica.afm’
,array(‘encoding’=>‘WinAnsiEncoding’
,‘differences’=>$diff));
Which I tried, to generate agrave and Agrave (à and the big A with an accent),
but no luck. Any help would stop me going mad!
Tony