AW: formatted numbers

2004-05-07 Thread Jan Kohnert
-Ursprüngliche Nachricht- Von: Clay Leeds [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 6. Mai 2004 18:09 An: [EMAIL PROTECTED] Betreff: Re: formatted numbers not exactly. I dont want to format the number, I want to format the output of the number. In my example (sorry, it was messed

ICC Profiles

2004-05-07 Thread Philipp Emanuel Haindl
Hi everybody! Does anyone know if it is possible to define and apply a ICC profile to a fop generated PDF-File. I was looking the whole day long for information but with no success. So please help. Thanks in advance, Phil

Re: AW: formatted numbers

2004-05-07 Thread Jeremias Maerki
You can do that be putting the part before the decimal point in one table cell, the rest in another, aligning them accordingly. Worked fine for me. On 07.05.2004 09:17:54 Jan Kohnert wrote: not exactly. I dont want to format the number, I want to format the output of the number. In my example

Re: ICC Profiles

2004-05-07 Thread Jeremias Maerki
There's no support for that, yet. For JPEG images there is some code that takes an optional ICC profile over into the PDF, but that's about it. You're welcome to help us implement this feature in CVS HEAD. On 07.05.2004 09:25:05 Philipp Emanuel Haindl wrote: Does anyone know if it is possible to

AW: AW: formatted numbers

2004-05-07 Thread Jan Kohnert
thanks a lot! -Ursprüngliche Nachricht- Von: Jeremias Maerki [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 7. Mai 2004 09:42 An: [EMAIL PROTECTED] Betreff: Re: AW: formatted numbers You can do that be putting the part before the decimal point in one table cell, the rest in another,

Re: problem with two columns document and fo:table-row keep-with-next=always

2004-05-07 Thread Selber Jean-François
thanks keep-together=always combined with keep-with-next solve my problem - Original Message - From: Chris Pratt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 06, 2004 6:51 PM Subject: RE: problem with two columns document and fo:table-row keep-with-next=always Are you

Re: How start a page sequence always on right page of the document?

2004-05-07 Thread Selber Jean-François
thanks a lot. I try it. It work BUT when a page is add at the end of the page sequence, I don't want to have the header and footer In this case I want to have a blank page how can I do?? thanks jf - Original Message - From: Andreas L. Delmelle [EMAIL PROTECTED] To: [EMAIL PROTECTED]

problem with fo:inline background-color

2004-05-07 Thread Selber Jean-François
Hello I used fop 0.20.5 I want to write text with different background this code doesn't work fo:blockfo:inline background-color="blue"Hello/fo:inline fo:inline background-color="red"World/fo:inline/fo:block Is this fo code incorrect? thanks jf

problem external-graphic and background

2004-05-07 Thread Selber Jean-François
hello, I'm using fop 0.20.5 I want to display a border arround an image with 3d effect I try a simple sample with 2d effect but it doesn't work: fo:external-graphic src="" height="3.5cm" width="3cm" border-color="black" border-width="1pt" border-style="solid"/ there is no border arround

problem with fo:inline background-color

2004-05-07 Thread Selber Jean-François
I used fop 0.20.5 I want to write text with different background this code doesn't work fo:blockfo:inline background-color="blue"Hello/fo:inline fo:inline background-color="red"World/fo:inline/fo:block Is this fo code incorrect? thanks jf

RE: How start a page sequence always on right page of the document?

2004-05-07 Thread Andreas L. Delmelle
-Original Message- From: Selber Jean-François [mailto:[EMAIL PROTECTED] thanks a lot. I try it. It work BUT when a page is add at the end of the page sequence, I don't want to have the header and footer In this case I want to have a blank page how can I do?? Hi, Check this to

embeded svg with svg:image problem

2004-05-07 Thread Selber Jean-François
Hello I want to embed a svg in my fo code but this svg has an image and it doesn't work can someone help me? (see fop code) thanks jf fop code: fo:instream-foreign-objectsvg:svg xmlns:svg="http://www.w3.org/2000/svg" width="3.1cm" height="3.6cm" svg:rect x="0" y="0" width="3cm"

Fw: problem external-graphic and boder

2004-05-07 Thread Selber Jean-François
hello, I'm using fop 0.20.5 I want to display a border arround an image with 3d effect I try a simple sample with 2d effect but it doesn't work: fo:external-graphic src="" height="3.5cm" width="3cm" border-color="black" border-width="1pt" border-style="solid"/ there is no border arround

RE: problem external-graphic and background

2004-05-07 Thread Andreas L. Delmelle
-Original Message- From: Selber Jean-François [mailto:[EMAIL PROTECTED] I'm using fop 0.20.5 I want to display a border arround an image with 3d effect I try a simple sample with 2d effect but it doesn't work: fo:external-graphic src=src/photo.jpg height=3.5cm

Re: problem with fo:inline background-color

2004-05-07 Thread Chris Bowditch
Selber Jean-François wrote: Hello I used fop 0.20.5 I want to write text with different background this code doesn't work fo:block fo:inline background-color=blueHello/fo:inline fo:inline background-color=redWorld/fo:inline /fo:block fo:inline hasnt been fully implemented. At the moment its

Re: problem external-graphic and background

2004-05-07 Thread Chris Bowditch
Selber Jean-François wrote: I want to display a border arround an image with 3d effect I try a simple sample with 2d effect but it doesn't work: fo:external-graphic src=src/photo.jpg height=3.5cm width=3cm border-color=black border-width=1pt border-style=solid/ there is no border arround may

Re: embeded svg with svg:image problem

2004-05-07 Thread Clay Leeds
Selber Jean-François wrote: fop code: fo:instream-foreign-object svg:svg xmlns:svg=http://www.w3.org/2000/svg; width=3.1cm height=3.6cm svg:rect x=0 y=0 width=3cm height=3.5cm fill=black/svg:rect svg:rect x=0.1cm y=0.1cm width=3cm height=3.5cm fill=black/svg:rect svg:image x=1 y=1

RE: embeded svg with svg:image problem

2004-05-07 Thread Chris Pratt
You have to define the xlink namespace or the parser doesnt know what that namespace refers to.  You define it just like you defined the svg namespace, so your svg:svg line should probably be: svg:svg width=3.1cm height=3.6cm xmlns:svg=http://www.w3.org/2000/svg

RE: embeded svg with svg:image problem

2004-05-07 Thread Andreas L. Delmelle
-Original Message- From: Selber Jean-François [mailto:[EMAIL PROTECTED] I want to embed a svg in my fo code but this svg has an image and it doesn't work can someone help me? (see fop code) FATAL ERROR: The prefix xlink for attribute xlink:href is not bound. Hi, Namespace