Having a font which is not embedded in the PDF

2004-11-05 Thread Chanaka Amarasekara
Hi, I want to create a PDF but the fonts should not be embedded to the PDF. When I open the PDF it should take the font from my default OS fonts folder (e.g. C:\Winnt\Fonts). With the attached userconfig.xml and the font metric (arial.xml), I'm able to create a PDF with the Arial font, but this

Solution to extra blank pages when you add page breaks

2004-02-26 Thread Chanaka Amarasekara
Hi, I found a way of solving the problem, where FOP adds extra blank pages when you add a page break. Simple remove the break-after=page or break-before=page from the fo:table or fo:table-row tag and add the following condition to it. BREAK-AFTER xsl:if test=position() != last()xsl:attribute

RE: Table break-after/ break-before page add extra blank pages

2004-02-25 Thread Chanaka Amarasekara
#blank-page-between-page-sequences) unfortunately, non of these worked but maybe it might work for you. Any ideas why it not working. Regards, Chanaka On Thu, 2004-02-19 at 17:45, J.Pietschmann wrote: Chanaka Amarasekara wrote: I'm using the Apache FOP to create a PDF file. I'm having a problem

Total number of pages

2004-02-23 Thread Chanaka Amarasekara
Hi All, Is it possible to get the total number of pages before the FOP process the XSL file? I'm trying to modify the Table class in org.apache.fop.fo.flow folder, and I need to know the total number of pages in the generated PDF file. Is this possible? Thanks, Chanaka

Table break-after/ break-before page add extra blank pages

2004-02-19 Thread Chanaka Amarasekara
Hi, I'm using the Apache FOP to create a PDF file. I'm having a problem in my XSL file, where when I add a break-after = page for a table it adds an extra blank page to the end and if I have a break-before = page it will add an extra blank page to the beginning. Is there a way to solve this