Apache FOP (Formatting Objects Processor) is a print formatter driven by XSL formatting objects (XSL-FO) and an output independent formatter. It is a Java application that reads a formatting object (FO) tree and renders the resulting pages to a specified output. Output formats currently supported ...

learn more… | top users | synonyms

0
votes
1answer
15 views

Apache FOP and Arial font

My XSL style uses Arial font <fo:block font-family="Arial" font-size="8pt" font-weight="normal"> Configuration file fonts.xml: <?xml version="1.0"?> <fop> <renderers> ...
1
vote
0answers
11 views

xsl:fo how to include dynamically generated svg

I want to generate a svg chart and insert it into pdf using apache fop. So far I have tried using <fo:instream-foreign-object xmlns:svg="http://www.w3.org/2000/svg"> <xsl:value-of ...
0
votes
1answer
41 views

FOP trimming spaces and tabs inside strings

I'm using fop libraries v1.1 to produce a pdf, and I noted that fop by default collapse white-spaces inside strings. For example a block like: <fo:block> Sample Text ...
0
votes
1answer
23 views

XSL + Apache FOP: Adding content on the remainder of empty space on a paragraph

I'm making a PDF generator with Apache FOP and one of the main requirement is to fill the remaining empty space of a paragraph with a series of dashes like this: This is a paragraph on a page that ...
0
votes
1answer
48 views

No Such method error during transformation to pdf in Java

I have a problem while transforming the xslt to pdf in java, i am following the same process posted in this link "Java Transformation to PDF". Error: ` Caused by: java.lang.NoSuchMethodError: ...
0
votes
0answers
34 views

Adding Index Page in PDF created with Apache FOP

I have written an application using Apache FOP, that generates PDFs with many multiple Chapters. Is there a way, by which I could know - which chapter appears on which page. Actually, I need to create ...
0
votes
1answer
73 views

FOP - how to avoid high memory consumption with very high number of page-sequences?

How can I avoid FOP to consume a growing amount of memory even when pages do not contain forward-references and < page-sequence> blocks are very small? Here's a Test java program that feeds FOP ...
0
votes
1answer
30 views

Apache Camel FOP Component Not Propagating Headers

The FOP component doesn't appear to be propagating headers. In the route below, headers are available to the XSLT component and it does pass them through the other side. But after fop, they're all ...
1
vote
3answers
75 views

Generate a pdf to document a database in XSLT

I have a XML related to a database and have to generate a PDF to document the database. I am using FOP to convert XSLT to PDF. XML: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> ...
0
votes
0answers
70 views

XSL-FO using empty tables cells and leaders

I'm using table columns with leaders (dotted line) to create a visual connection between content in different cells. E.g: Text in col one..........Text in col two I use an "spacer" column to keep a ...
0
votes
0answers
74 views

convert xml (android source) to pdf

public void onClick(View v) {switch(v.getId()) { case R.id.button1: try { // Setup directories File baseDir = new File("res/layout"); File ...
1
vote
2answers
55 views

XSLT to generate xsl fo from HTML with varying namespace

I have a XSLT file which is used for html to xsl-fo conversion using fop engine. It has templates for HTML elements as shown below <pre> <xsl:stylesheet ...
2
votes
0answers
78 views

Apache-FOP - reduce image sizes that are embedded into PDF

I have lots of JPG images that should be embedded into the resulting PDF. They have quite a big resolution and are about 5-10MB each. I want to embed them into PDF as a preview and I'm using a ...
0
votes
0answers
48 views

WMF file format in XSLFO

I am trying to convert Docx to Pdf with the document.xml file from the docx using Apache FOP. I am facing problem to embed the wmf equation files in PDF, it showing the following error: WARNING: ...
0
votes
0answers
241 views

create a Pdf from xsl and xml files using Itext in android

hie, I have to make an invoice app in which user can create invoices and estimate in pdf format and send it to clients. till now I am able to create pdf by filling an existing pdf template using ...
1
vote
0answers
60 views

fop two column, positioning external graphic at the top (XSL-FO)

I want to position image at the top of page, e.g. I have 3 to 4 image at different places. I would like to position it at the top of pages (spaning all the width)instead getting into middle,even if ...
0
votes
1answer
44 views

Inline image in xslfo is rendered as block

I am facing an issue with XSLFO - FOP image rendering, I have several images of different size. some of the small images are aligned inline with the text and some are big images that occupies a ...
1
vote
1answer
67 views

What does reference-orientation really do?

I have to render a pfd using FOP, and some images mst be rotated. The result however doesn't look the way I expect it to be. So, here is my question (and I somehow wasn't able to find a good ...
0
votes
1answer
203 views

XSLT Generate Dynamic Rows and Columns for Apache FOP

For the following xml file, i need to generate an xsl-fo file to be converted into pdf. I am new to style sheets and struggling to create dynamic table. Please help. Also, the width for each column ...
0
votes
1answer
165 views

Fop exception when FopFactory.newInstance()

i'm using struts 2 and i'm trying to use fop to create a pdf file from xml and xsl. I develop my code in base this two url ...
0
votes
0answers
57 views

How to render dynamically formatted text via FOP XSLT/XML Translation

We have an application that inserts legalese at the end of FOP-generated PDF documents. Depending on which client we're running the app for, the disclaimer can be an extended block of text that takes ...
0
votes
1answer
85 views

Apache FOP ClassNotFoundException/ClassCircularityError On Weblogic11g

I'm using Apache FOP 1.1 within EJB3 and Spring 3.0.6 web application. The code: FopFactory fopFactory = FopFactory.newInstance(); resides in my class, (which is being called from a Spring MVC ...
0
votes
1answer
91 views

Splitting Apache FOP blocks into multiple columns to display data

I am fop-newbie who is willing to generate PDF using Apache FOP, as described below [ Imagine A4 page has dimensions 800pt x 600pt. The top 200pt x 600 pt will hold a image and some meta data about ...
0
votes
1answer
89 views

Apache-FOP - howto format number retrieved with <fo:retrieve-marker/>

I am currently trying to use Apache-FOP for generating Invoices. Using <fo:retrieve-marker/> and <fo:marker/> I am able to create Subtotals for every page. I want to format this number ...
0
votes
0answers
77 views

How do I convert and merge multiple *.textile files into a single large PDF in eclipse wikitext?

I have an ant build file in my eclipse project which builds HTML files from .textile files as described in the mylyn documentation. I also have an index.html file which links to all these generated ...
0
votes
1answer
40 views

Chaining Saxon XsltTransformer output into FOP

I need to pipe the output of several XSL transformations into a FopFactory object, but I can't figure out how to code this. I have the piping working, but the last step is a mystery. DOMResult ...
1
vote
1answer
181 views

HTML to PDF using XSL FO is having pagination issue - displays only the first page

I'm using a Java class(http://pastebin.com/KhSGPmCV) that takes in an HTML document and tries to convert it to a PDF document by the following steps: Uses Tidy to parse it into an XML document. Uses ...
0
votes
1answer
93 views

How to get array length in XSL?

I need to show table, if array have elements, and some another block, if array is empty? I have only for-each now. My array has "items" name. <some table header code...> <xsl:for-each ...
1
vote
1answer
50 views

fop pdf blank even pages

I'm generating PDF using Apache FOP. I have a requirement to display the content only in Odd pages and leave the Even pages blank. I managed to do this earlier with FOP 0.95 and below like this, by ...
1
vote
1answer
66 views

TOC formatting issue when headline close to numbering

I've run into a scenario where if the TOC title is too close to the TOC numbering, it pulls the numbering inwards. Here you can see several examples where I started adding/removing one character at a ...
0
votes
0answers
67 views

Adding a custon font to fop 0.20.5 version

i need to add new font in the fop jar and i want to use that in xsl. i changed some code and added a fon tag in useconfig.xml in the fop jar 0.20.5. if i try to access that font in xsl iam getting ...
0
votes
1answer
538 views

XSL-FO dynamic table column width

As it stands now, I have about 12 columns and all of them are exactly the same width. The problem is that some columns don't require that much space. How do I get the columns to fit their content? The ...
1
vote
2answers
295 views

XSL-FO write text over a line or fo:leader

I'm creating a pdf file from xml and xsl-fo and Apache FOP and I need to write text over a line. I mean something like a form to compile by hand, where you write name, surname etc. Something like ...
1
vote
0answers
124 views

XSL-FO external graphic not rotating properly

I've suddenly developed the problem where the graphics in my resulting PDF don't have the proper rotation, or orientation. Photos taken with an iPhone in portrait orientation have started appearing ...
1
vote
1answer
112 views

FOP XSL-FO Anchor in an external destination

With XSL-FO (Fop), I succeeded in creating a link to an external PDF : <fo:basic-link show-destination="new"> <xsl:attribute name="external-destination">foo.pdf</xsl:attribute> ...
1
vote
1answer
167 views

Why does region-start begin at the top of the page when a region-before is present?

According to the Formatting Object documentation the region-start (the region to the left of the body) spans between region-before (the header) and region-after (the footer), but when I generate a ...
1
vote
1answer
133 views

Apache FOP AFP to XML conversion

I am looking for a Java API that provides functionality that will convert AFP(IBM Advanced Function Presentation)formatted documents to xml or pdf. I am trying to implement Apache FOP 1.1, but there ...
1
vote
0answers
162 views

Use XSL FO file to layout PDF using iText

I have a requirement of converting graphics(Java2D objects) and some tables into PDF. I also need the PDF to be interactive. Keeping these requirements in mind I came to a conclusion that I should use ...
0
votes
0answers
86 views

Error using PageDrawer class to drawPage

My goal is to .paint() a page of a pdf file onto a PDFDocumentGraphics2D. I have this pdf page in the form of a PDPage. I get an error when I want to write this PDPage onto a PDFDocumentGraphics2D ...
0
votes
1answer
101 views

Way to convert jPedal pdf to PDFDocumentGraphics2D

I use the PdfDecoder class from jPedal to attempting to convert/paint a pdf file to a PDFDocumentGraphics2D object. The PDFDocumentGraphics2D is an extension of javas AWT Graphics class, and part of ...
0
votes
2answers
102 views

Apache FOP 1.0 Multithreading - Too many open files err24

We use Apache FOP to convert a whole lot of XML's to AFP's and PDF's. Our current load would be around 25k files per run on a HP-UX system. We have 8 threads in total that are used to initialize and ...
0
votes
0answers
293 views

Table border missing in parts using apache FOP and Java

I am using FOP v1.1rc1 to build a PDF with a table in it, that is continued on the last page if it has more than a certain number of rows. All the other tables im using work fine but the continuation ...
1
vote
2answers
233 views

Java Render XML Document as PDF

I have an XML document currently stored as an in-memory string & want to render it as a PDF. In other words, the PDF content will be an XML document. The XML being rendered by the method is ...
0
votes
1answer
131 views

Force Apache FOP to override image resolution?

Is there a way to configure Apache to ignore the DPI metadata that is stored in image files and use a specific value instead? or perhaps an attribute that can be used on the ...
0
votes
0answers
98 views

Apache FOP umlaut spacing issue

I am using Apache FOP version 0.95. I am facing a spacing issue in the ps file : (Empf\344nger) [5.464 8.464 5.592 3.376 14.216 5.696 5.592 5.312 3.976] The word 'Empfänger' is being printed as 'Empfä ...
0
votes
0answers
136 views

Image won't display in PDF using FOP 1.1 and Java

I've searched Google through and through and can't seem to find the solution to my issue... I'm using Apache FOP 1.1 and Java to generate a PDF file from Java classes. This Java project runs from a ...
0
votes
0answers
89 views

targetrenderer set to MIME_PNG fails in fop >=1.0 but succeeds in 0.95

I'm using FOP for a couple of years now and thought it was time to upgrade to version 1.1. Problem is that the rendering to PNG stopped functioning. It all still works with version 0.95. PDF ...
-1
votes
1answer
77 views

Can Apache FOP 0.95 render Emoticons? [closed]

We are using Apache FOP 0.95 rendering system and the rendering engine crashes when it encounters a UTF-8 emoticon. I am using Java to render the data to PS/PDF format. Is there a way to render them ...
1
vote
1answer
66 views

Apache FOP - how to find which data will be printed on which page

I am using Apache FOP to generate PDF from XSLT in my retail project and then print the PDF. A new requirement has come to print the running total in the footer of every page of receipt. I am not ...
0
votes
1answer
116 views

Is there an alternative to “keep-together='always'” on table-row?

Upon finding the "keep-together" attribute, and needing to not page break inside a row I added keep-together="always" on every table-row element in my xslt. Is there a nicer way of achieving the same ...

1 2 3 4 5 6