RE: € Sign

2006-09-19 Thread Christian Loock
Hello,

i tried using #x20ac;, or #8366; and both didn't work, i also tried using 
ISO-8859-15 instead of ISO-8859-1 but then the PDF Generation fails with an 
Error

[ERROR]ISO8859_15

UTF-8 didn't work too ;(

Any other ideas of how to display the €-Sign?

-Original Message-
From: Pascal Sancho [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 14, 2006 1:55 PM
To: fop-users@xmlgraphics.apache.org
Subject: RE: € Sign

 -Original Message-
 From: Andreas Reuleaux [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 14, 2006 1:31 PM
 To: fop-users@xmlgraphics.apache.org
 Subject: Re: € Sign
 
 On Thu, Sep 14, 2006 at 01:22:10PM +0200, Christian Loock wrote:
  Hello,
   
  i have the problem that the € sign is not displayed in my PDF. I 
  Generate the PDF using FOP 0.20.5. THe Font is Arial and
 the encoding
  iso-8859-1
   
 
 
 € is not in iso-8859-1, how about you try to you use utf-8 or 
 iso-8859-15?
 
 -Andreas

Hi,
You can use character entity, witch is not encoding dependant:
Euro symbol can be represented by either #x20ac;, or #8366;

That can be done with any Unicode character.

Pascal
 


RE: € Sign

2006-09-19 Thread Pascal Sancho
 -Original Message-
 From: Christian Loock [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, September 19, 2006 11:26 AM
 
 i tried using #x20ac;, or #8366; and both didn't work, i 
 also tried using ISO-8859-15 instead of ISO-8859-1 but then 
 the PDF Generation fails with an Error
 
 [ERROR]ISO8859_15
 
 UTF-8 didn't work too ;(
 
 Any other ideas of how to display the €-Sign?
 
 -Original Message-
 From: Pascal Sancho [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 14, 2006 1:55 PM
 To: fop-users@xmlgraphics.apache.org
 Subject: RE: € Sign
 
  -Original Message-
  From: Andreas Reuleaux [mailto:[EMAIL PROTECTED]
  Sent: Thursday, September 14, 2006 1:31 PM
  To: fop-users@xmlgraphics.apache.org
  Subject: Re: € Sign
  
  On Thu, Sep 14, 2006 at 01:22:10PM +0200, Christian Loock wrote:
   Hello,

   i have the problem that the € sign is not displayed in my PDF. I 
   Generate the PDF using FOP 0.20.5. THe Font is Arial and
  the encoding
   iso-8859-1
  
  € is not in iso-8859-1, how about you try to you use utf-8 or 
  iso-8859-15?
  
  -Andreas
 
 Hi,
 You can use character entity, witch is not encoding dependant:
 Euro symbol can be represented by either #x20ac;, or #8366;
 
 That can be done with any Unicode character.

Can you try it with a standard font (one of 'serif', 'sans-serif', 'monospace',
'Courier', 'Helvetica', or 'Times', not Arial)?
- if that works: charset in your arial font don't embed desired glyphes
- if that doesn't work: please provide a XSL-FO (not XSLT) that demonstrates 
your problem.

FYI, encoding doesn't affect XML entities. Problem is elsewhere.

Pascal


Re: € Sign

2006-09-19 Thread Manuel Mall
On Tuesday 19 September 2006 17:51, Pascal Sancho wrote:
  -Original Message-
  From: Christian Loock [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, September 19, 2006 11:26 AM
 
  i tried using #x20ac;, or #8366; and both didn't work, i
  also tried using ISO-8859-15 instead of ISO-8859-1 but then
  the PDF Generation fails with an Error
 
  [ERROR]ISO8859_15
 
  UTF-8 didn't work too ;(
 
  Any other ideas of how to display the €-Sign?
 
  -Original Message-
  From: Pascal Sancho [mailto:[EMAIL PROTECTED]
  Sent: Thursday, September 14, 2006 1:55 PM
  To: fop-users@xmlgraphics.apache.org
  Subject: RE: € Sign
 
   -Original Message-
   From: Andreas Reuleaux [mailto:[EMAIL PROTECTED]
   Sent: Thursday, September 14, 2006 1:31 PM
   To: fop-users@xmlgraphics.apache.org
   Subject: Re: € Sign
  
   On Thu, Sep 14, 2006 at 01:22:10PM +0200, Christian Loock wrote:
Hello,
   
i have the problem that the € sign is not displayed in my PDF.
I Generate the PDF using FOP 0.20.5. THe Font is Arial and
  
   the encoding
  
iso-8859-1
  
   € is not in iso-8859-1, how about you try to you use utf-8 or
   iso-8859-15?
  
   -Andreas
 
  Hi,
  You can use character entity, witch is not encoding dependant:
  Euro symbol can be represented by either #x20ac;, or #8366;
 
  That can be done with any Unicode character.

The following works fine for me with the latest FOP trunk version

fo:block font-family=ArialFOP costs #8364;0.00 which is 
NOTHING!/fo:block

using a font metrics file generated from the Arial font from a standard 
English Windows 2000 installation.

Note that I used #8364; and not #8366;.

 Can you try it with a standard font (one of 'serif', 'sans-serif',
 'monospace', 'Courier', 'Helvetica', or 'Times', not Arial)?
 - if that works: charset in your arial font don't embed desired
 glyphes - if that doesn't work: please provide a XSL-FO (not XSLT)
 that demonstrates your problem.

 FYI, encoding doesn't affect XML entities. Problem is elsewhere.

 Pascal

Manuel

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: € Sign

2006-09-19 Thread Jeremias Maerki
In that case, you're using a font that doesn't contain the Euro
character.

Please run the file examples/fo/basic/fonts.fo from your FOP
installation through FOP. It demonstrates the use of the Euro character.
If fonts.fo works, you need to change the font in your other document.
If fonts.fo doesn't work, you have a very old PDF viewer and you need to
use a different font, too, preferably a newer TrueType font which is
sure to contain the Euro character. Please note that not all fonts
contains the Euro character.

On 19.09.2006 11:26:03 Christian Loock wrote:
 Hello,
 
 i tried using #x20ac;, or #8366; and both didn't work, i also tried using 
 ISO-8859-15 instead of ISO-8859-1 but then the PDF Generation fails with an 
 Error
 
 [ERROR]ISO8859_15
 
 UTF-8 didn't work too ;(
 
 Any other ideas of how to display the €-Sign?
 
 -Original Message-
 From: Pascal Sancho [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, September 14, 2006 1:55 PM
 To: fop-users@xmlgraphics.apache.org
 Subject: RE: € Sign
 
  -Original Message-
  From: Andreas Reuleaux [mailto:[EMAIL PROTECTED]
  Sent: Thursday, September 14, 2006 1:31 PM
  To: fop-users@xmlgraphics.apache.org
  Subject: Re: € Sign
  
  On Thu, Sep 14, 2006 at 01:22:10PM +0200, Christian Loock wrote:
   Hello,

   i have the problem that the € sign is not displayed in my PDF. I 
   Generate the PDF using FOP 0.20.5. THe Font is Arial and
  the encoding
   iso-8859-1

  
  
  € is not in iso-8859-1, how about you try to you use utf-8 or 
  iso-8859-15?
  
  -Andreas
 
 Hi,
 You can use character entity, witch is not encoding dependant:
 Euro symbol can be represented by either #x20ac;, or #8366;
 
 That can be done with any Unicode character.
 
 Pascal
  



Jeremias Maerki


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: € Sign

2006-09-14 Thread Andreas Reuleaux
On Thu, Sep 14, 2006 at 01:22:10PM +0200, Christian Loock wrote:
 Hello,
  
 i have the problem that the € sign is not displayed in my PDF. I Generate the 
 PDF using FOP 0.20.5. THe Font is Arial and the encoding iso-8859-1
  


€ is not in iso-8859-1, how about you try to you use utf-8
or iso-8859-15?

-Andreas


 
 
 
 Viele Grüße / Best Regards
 
 Christian Loock
 Junior Software Engineer
 
 _
 Phone +49 (0) 28 21 / 9 78 56-16
 Fax   +49 (0) 28 21 / 9 78 56-77
 E-Mail [EMAIL PROTECTED]
 
 Headquarter
 db-central gmbh
 Dienstleistungszentrum am Weißen Tor
 Gocher Landstrasse 2
 D-47551 Bedburg-Hau
 
 Subsidiary
 db-central gmbh
 Film- und Medienzentrum
 Königsallee 43
 D-71638 Ludwigsburg (Stuttgart)
 
 visit www.db-central.com
 _ 
 
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: ? Sign

2006-09-14 Thread Mikael Andersen

Hey,

iso-8859-1
doesn't contain the € character. You'll need iso-8859-15
(where € replaced ¤) - or use UTF-8 (at least that's my experience).

/Mikael







Christian Loock
[EMAIL PROTECTED] 
14-09-2006 13:25



Please respond to
fop-users@xmlgraphics.apache.org





To
fop-users@xmlgraphics.apache.org


cc



Subject
€ Sign








Hello,

i have the problem that the € sign is
not displayed in my PDF. I Generate the PDF using FOP 0.20.5. THe Font
is Arial and the encoding iso-8859-1



Viele Grüße / Best Regards

Christian Loock
Junior Software Engineer

_
Phone +49 (0) 28 21 / 9 78 56-16
Fax  +49 (0) 28 21 / 9 78 56-77
E-Mail [EMAIL PROTECTED]

Headquarter
db-central gmbh
Dienstleistungszentrum am Weißen Tor
Gocher Landstrasse 2
D-47551 Bedburg-Hau

Subsidiary
db-central gmbh
Film- und Medienzentrum
Königsallee 43
D-71638 Ludwigsburg (Stuttgart)

visit www.db-central.com
_





Re: € Sign

2006-09-14 Thread Michael Bruns
Hi Christian,

Christian Loock wrote:
 Hello,
  
 i have the problem that the € sign is not displayed in my PDF. I Generate the 
 PDF using FOP 0.20.5. THe Font is Arial and the encoding iso-8859-1

I think this problem is not caused by FOP but by the character set you
chose. If you want to use the Euro-sign you should choose ISO-8859-15
instead of ISO-8859-1. That's at least what solved similar problems for
me when using HTML.

Cheers

Michael

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: € Sign

2006-09-14 Thread Louis . Masters

We use utf-8 and the following template
to print the Euro sign:

xsl:template name=printEuro
fo:inline
white-space-collapse=false

   xsl:text#x20AC; /xsl:text
/fo:inline
/xsl:template







Christian Loock
[EMAIL PROTECTED] 
09/14/2006 07:22 AM



Please respond to
fop-users@xmlgraphics.apache.org





To
fop-users@xmlgraphics.apache.org


cc



Subject
€ Sign








Hello,

i have the problem that the € sign is
not displayed in my PDF. I Generate the PDF using FOP 0.20.5. THe Font
is Arial and the encoding iso-8859-1



Viele Grüße / Best Regards

Christian Loock
Junior Software Engineer

_
Phone +49 (0) 28 21 / 9 78 56-16
Fax  +49 (0) 28 21 / 9 78 56-77
E-Mail [EMAIL PROTECTED]

Headquarter
db-central gmbh
Dienstleistungszentrum am Weißen Tor
Gocher Landstrasse 2
D-47551 Bedburg-Hau

Subsidiary
db-central gmbh
Film- und Medienzentrum
Königsallee 43
D-71638 Ludwigsburg (Stuttgart)

visit www.db-central.com
_





RE: € Sign

2006-09-14 Thread Pascal Sancho
 -Original Message-
 From: Andreas Reuleaux [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, September 14, 2006 1:31 PM
 To: fop-users@xmlgraphics.apache.org
 Subject: Re: € Sign
 
 On Thu, Sep 14, 2006 at 01:22:10PM +0200, Christian Loock wrote:
  Hello,
   
  i have the problem that the € sign is not displayed in my PDF. I 
  Generate the PDF using FOP 0.20.5. THe Font is Arial and 
 the encoding 
  iso-8859-1
   
 
 
 € is not in iso-8859-1, how about you try to you use utf-8 or 
 iso-8859-15?
 
 -Andreas

Hi,
You can use character entity, witch is not encoding dependant:
Euro symbol can be represented by either #x20ac;, or #8366;

That can be done with any Unicode character.

Pascal
 


RE: € Sign

2006-09-14 Thread Christian Loock
Thank you very much :) 

-Original Message-
From: Pascal Sancho [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 14, 2006 1:55 PM
To: fop-users@xmlgraphics.apache.org
Subject: RE: € Sign

 -Original Message-
 From: Andreas Reuleaux [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 14, 2006 1:31 PM
 To: fop-users@xmlgraphics.apache.org
 Subject: Re: € Sign
 
 On Thu, Sep 14, 2006 at 01:22:10PM +0200, Christian Loock wrote:
  Hello,
   
  i have the problem that the € sign is not displayed in my PDF. I 
  Generate the PDF using FOP 0.20.5. THe Font is Arial and
 the encoding
  iso-8859-1
   
 
 
 € is not in iso-8859-1, how about you try to you use utf-8 or 
 iso-8859-15?
 
 -Andreas

Hi,
You can use character entity, witch is not encoding dependant:
Euro symbol can be represented by either #x20ac;, or #8366;

That can be done with any Unicode character.

Pascal
 


RE: € Sign

2006-09-14 Thread Karl Roberts
Hi,

That is correct you can specify the unicode number but you still need to make 
sure that the font you use has your required unicode glyphs.

I used the Arial Unicode MS font found at C:\WINDOWS\Fonts on my PC which has 
loads of glyphs
See:- http://www.alanwood.net/unicode/fonts.html#arialunicodems for details of 
the Unicode tables it covers.


-Original Message-
From: Pascal Sancho [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 14 September 2006 9:55 PM
To: fop-users@xmlgraphics.apache.org
Subject: RE: € Sign

 -Original Message-
 From: Andreas Reuleaux [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 14, 2006 1:31 PM
 To: fop-users@xmlgraphics.apache.org
 Subject: Re: € Sign
 
 On Thu, Sep 14, 2006 at 01:22:10PM +0200, Christian Loock wrote:
  Hello,
   
  i have the problem that the € sign is not displayed in my PDF. I 
  Generate the PDF using FOP 0.20.5. THe Font is Arial and
 the encoding
  iso-8859-1
   
 
 
 € is not in iso-8859-1, how about you try to you use utf-8 or 
 iso-8859-15?
 
 -Andreas

Hi,
You can use character entity, witch is not encoding dependant:
Euro symbol can be represented by either #x20ac;, or #8366;

That can be done with any Unicode character.

Pascal
 

NOTICE
This e-mail and any attachments are confidential and may contain copyright 
material of Macquarie Bank or third parties. If you are not the intended 
recipient of this email you should not read, print, re-transmit, store or act 
in reliance on this e-mail or any attachments, and should destroy all copies of 
them. Macquarie Bank does not guarantee the integrity of any emails or any 
attached files. The views or opinions expressed are the author's own and may 
not reflect the views or opinions of Macquarie Bank.