Hi,
I have a PDF application that displays an unusual character should appear where the euro currency symbol!
Any solution?
Thanks
xayuso
Hi,
I have a PDF application that displays an unusual character should appear where the euro currency symbol!
Any solution?
Thanks
xayuso
Re: No symbol of the euro (?) in PDF application?
Hello,
The problem must be by the customer, because in certain computers the euro symbol appears and in others not …
Any ideas?
Thanks in advance
Re: No symbol of the euro (?) in PDF application?
I would suggest that is the character map used by the PC in that it call not display the euro symbol.
Google options for displaying euro symbol:
http://lmgtfy.com/?q=euro+symbol+display+pdf
Regards,
Scott.
Re: No symbol of the euro (?) in PDF application?
Thanks ScottMartin,
I’ve searched for information on google and I can not find the problem, I don’t see the euro symbol ONLY with scriptcase, if I make a php that displays text with the encoding of the euro appears …
I’m going crazy …
Re: No symbol of the euro (?) in PDF application? [SOLVED]
I leave the solution to my problem with the symbol of “?”
Following the help of FPDF I had to create a font which was included ? command, in my case I opted for the Lucida Sans (unicode) following these instructions:
1 -> ttf2pt1 -a c:windowsfontsL_10646.TTF lsansu
2 -> use php to call the script makefont FPDF directory with the following instruction:
<? Php
require (‘makefont/makefont.php’);
MakeFont (‘c:windowsfontsL_10646.TTF’, ‘lsansu.afm’, ‘ISO-8859-15’);
?>
The function returns the following report:
Font file compressed (lsansu.z)
Font definition file generated (lsansu.php)
3 -> In the application scriptcase PDF option “Layout PDF - Code - Layout” enter:
sc_pdf_add_font (‘lsansu lsansu.php’,’’,’’);
sc_pdf_set_font (‘lsansu’,’’, 35);
4 -> In the application scriptcase PDF option “Layout PDF - Code - Definition” monetary change the fields ‘font_type’ => ‘lsansu’
5 -> Publish Application and ready.
Sincerely,