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 ...
19
votes
12answers
3k views
What is the recommended toolchain for formatting XML DocBook?
I've seen Best tools for working with DocBook XML documents, but my question is slightly different. Which is the currently recommended formatting toolchain - as opposed to editing tool - for XML ...
16
votes
1answer
1k views
Scale down to fit an image in FOP
I am using FOP version 1.0 to create PDFs. In one of the pages I'd like to display an image (2552 x 4200 pixel) and scale it down if it doesn't fully fit on the page. As far as I could see on the ...
7
votes
5answers
5k views
PDF Generation Library for Java
I know this has been asked before, but I'm still undecided on which PDF generation framework to use for my current project.
My requirements
on-the-fly generation of PDF documents (mainly order ...
7
votes
2answers
5k views
XSL-FO fop. Long text flows into adjacent cells/block, obscuring stuff there
Could anyone suggest me a way to make long words (like serial numbers) to be wrapped? I tried some commercial software and there is no such issue. Is it a fop bug or probably there is a solution ...
7
votes
3answers
3k views
Using ApacheFOP v1.0 in .NET application
Has anyone successfully complied the Apache FOP v1.0 library to a .NET DLL? I am using the IKVM syntax found at http://onjava.com/pub/a/onjava/2004/08/18/ikvm.html; however, the compiled DLL seems to ...
6
votes
5answers
574 views
Do Design patterns in Object Oriented Programming signal systemic problems of the paradigm of OO? [duplicate]
Possible Duplicate:
Are design patterns really language weaknesses?
After spending years pouring over books on OOP and the techniques of OOP, and recently getting involved more and more in ...
5
votes
10answers
2k views
Where can I find good tutorials on XSL-FO (Formating/ed Objects), the stuff one feeds to fop and get PDF's?
On a company that I've worked, me and my colleagues, implemented a tailored document distribution system on top of XSL-FO.
My task was to get the script to deliver the documents and configure the ...
5
votes
1answer
4k views
xls-fo fop 0.94 Using the keep-together with wrap-option=“wrap”
In xls-fo fop 0.94 Using the keep-together along with with wrap-option="wrap" ignores the wrap option ? Is there a way to make them both work?
<fo:table-row border="1pt solid black" ...
5
votes
1answer
1k views
Using new fonts with Apache FOP in Java
I have to internationalize an application, and therefore have to let a user chose a font for a PDF that I will create at runtime. I want to be able to display a list of font choices from the user's ...
5
votes
1answer
4k views
how to keep table with header but allow page breaks inside table body in XSL-FO using FOP
I'm generating a PDF using Apache FOP and a XSL-FO stylesheet. In the PDF, I output headings (html equiv h1) which belong to a table, so should be kept together always. However, my tables may also ...
4
votes
1answer
2k views
PDFBox setting A5 page size
Started playing with PDFBox
PDDocument document = new PDDocument();
PDPage page = new PDPage();
document.addPage( page );
PDFont font = PDType1Font.HELVETICA_BOLD;
PDPageContentStream contentStream ...
4
votes
2answers
3k views
How to embed font in PDF created from HTML with iText and Flying Saucer?
I have problem with embedding Polish fonts into PDF converted from HTML.
My HTML code have style in body:
<BODY style="font-family: Tahoma, Arial, sans-serif;font-size : 8pt;">
I tried 2 ...
4
votes
2answers
1k views
Good alternative to FOP?
I'm currently using FOP to generate PDF from an XML file.
But I am facing two big issues :
First: FOP cannot manage OpenType Font files
Second: fo:float is not implemented yet
So it's impossible ...
4
votes
1answer
660 views
What does this Apache FOP error mean?
Error message
(Location of error
unknown)org.apache.fop.fo.Validation
Exception: Property id "_Ref191196753"
previously used; id values must be
unique in document.
Any ideas on what may ...
3
votes
2answers
247 views
problem with xsl apply-templates
It seems that my template is never called but the for loop works correctly.
It prints "test" exactly the number of times the "car" node exists but "doStuff" doesn't seem to be accessed and "test2" is ...
3
votes
2answers
506 views
SVG generation with FOP doesn't work
On one server, and on my Windows laptop, producing PDFs with this method works fine:
http://www.databasesandlife.com/svg-to-pdf/
But on the other server I get this error:
...
3
votes
1answer
360 views
Keep white spaces in the generated PDF with FOP
I'm implementing FOP using XSLT and XML files where I want to keep the white spaces between words.
This is how my XMLlooks like:
<lines>
<line1> My Creation ...
3
votes
3answers
2k views
How to dynamically change xslt page-sequence based on node attributes?
The watered-down version of the problem I'm having is this. For an XML file like:
<?xml version="1.0" encoding="UTF-8"?>
<items>
<item cols="1">Item 1</item>
<item ...
3
votes
1answer
2k views
Displaying newline character in PDF generated with FOP
I'm generating a PDF document using FOP. The source XML contains some text data which contains newlines. But when its being shown in PDF, all new lines are converted into spaces. I tried replacing ...
3
votes
2answers
2k views
Preserving linefeeds etc. in text content of XSL but not in tags itself
While building an XSL document I ran into the following problem. I want to preserve linefeeds in the original text, so I set linefeed-treatment="preserve". However, this apparantly also means it ...
3
votes
1answer
3k views
Apache FOP: Displaying UTF-8 Characters in PDF (without embed?)
I'm trying to use FOP to export a PDF with UTF-8 characters, preferably without needing to embed the font.
The following code:
<fo:block font="10pt Helvetica" text-align="justify" ...
3
votes
3answers
4k views
FOP: fo:block width attribute ignored?
I'm managing to generate a PDF with one line-chart from google-chart, but the quality of the generated columns titles doesn't fit our needs, so I want to generate by myself.
This task should be done ...
3
votes
1answer
664 views
Apache FOP: zindex does not appear to be working in overlapping blocks
I am a FOP newb. I am trying to show text on top of an image by using block-container's and zindexes. The image is always on top though. If i remove the image, i can see the text, so the text is under ...
3
votes
1answer
861 views
How to manipulate page number in FOP?
I am using Apache FOP 0.95, and all I want to do is add 1 to the current page number.
So, on page 12, I want to show 12 / 13. Then nothing on page 13, of course.
Any ideas how I could do this, ...
3
votes
3answers
370 views
What is the sense of “Feature Oriented Programming” (FOP) in C++, and would it make sense in Java and C#?
Sadly, I can't remember where I read it, but...
...in C++ you can derive a class from a template parameter.
Im pretty sure it was called
Feature Oriented Programming (FOP) and meant to be somehow ...
3
votes
1answer
128 views
Adding Annotation to Apache Fop
I am rendering a PDF using Apache Fop. I am making XSLT templates which I used to convert xml to PDF. I want to put annotation in the output PDF using Apache Fop.
I have been searching and it says ...
3
votes
1answer
467 views
How can I create a two column layout with XSL-FO and FOP 1.0?
I've got a piece of software that creates an XSL-FO description from a text file and converts that into a PDF document. Each line in the text file is converted to a fo:block in FO, which sounds wrong, ...
3
votes
1answer
619 views
generating HTML from XSL-FO using Java
I have some PDF files generated based on some XSL-FO documents and I now need this content in HTML too. I am using FOP for creating the PDF files but this does not support HTML as an output format.
...
3
votes
1answer
1k views
XSL-FO processor for PHP : transform XML to PDF
I am looking for a PHP XSL-FO processor.
What I need is an alternative to Apache FOP (in the Java world), in order to convert an XML document to PDF, but I need to execute it in a PHP environment ...
3
votes
2answers
766 views
Including a PDF file in a PDF file generated by FOP
I'm using FOP to generate PDF files.
What's the best way to either include another PDF file in a PDF generated by FOP or to cook multiple PDF files together using PHP?
3
votes
1answer
224 views
Running fop as www-data on Ubuntu
I'm trying to run FOP (via php exec() command) and when I run FOP on the command line (as my user) it works perfectly fine, however the PHP command is running it as the www-data user for apache and it ...
3
votes
1answer
1k views
How can I display a Unicode character using Apache fop? Showing “?” instead of character.
I been trying to insert a Unicode character ∇ or ▽, so it shows in the PDF generated by Apache FOP.
This is what I did so far:
First you have to know the correct Unicode codepoint ...
3
votes
1answer
913 views
XSL:FO, Floats in F.O.P
A while ago I found out that FOP doesn't allow you to use floats, and a few other features in Xsl-Fo 1.0. I've tried a few different ways to emulate them, but I have had no success. If anyone has had ...
2
votes
3answers
7k views
Convert a string to XML input stream in java
I'm trying to generate a PDF document using FOP and Java.
I receive the XML as a string and not as a file.
How can I convert this XML string to an XML input stream so that I can call ...
2
votes
2answers
799 views
Is there a XSL-FO renderer which supports <fo:table table-layout=“auto”>?
I'm using Pandoc to convert Markdown to Docbook, doing stuff to it then rendering the Docbook to XSL-FO using Apache FOP. Unfortunately, Pandoc makes tables with table-layout="auto" and FOP only ...
2
votes
2answers
695 views
what is benefit of using Antennahouse over Apache FOP?
I would like to know the difference and additional features in Antennahouse over Apache FOP.
2
votes
1answer
2k views
Inline image data in XSL:FO / Apache FOP
I have MIME Multi-Part data that I want to convert to PDF using XSL:FO. I'm comfortable reading MIME using Apache James and I have a grasp on embedded image data in Mime or inline images in HTML. I ...
2
votes
1answer
7k views
How to display fixed image height and width using xsl-fo with apache fop 0.95
I am trying to fix the height and width of image in pdf generated using fop 0.95.
Here is the code used for it
<fo:external-graphic src="s\image.png" height="2.00in" width="2.00in"/>
...
2
votes
4answers
1k views
Creating a PDF from Java and Displaying it in a webpage
Currently I am using FOP to generate a pdf from java code and an xslt document. The FOP spits out a PDF file that is displayed (embeded) into a webpage. The documents can range between one and several ...
2
votes
1answer
464 views
Docbook XML to PDF, no 'ő' and 'ű' characters
I have the following problem for a while. I have been trying to convert Docbook XML to PDF. Almost everything goes well except the PDF file has no 'ő' and 'ű' chars in the text, they are replaced with ...
2
votes
1answer
1k views
Processing FOP with parameters
HI,
I want to use FOP to prepare a XML document for printing (ps/pdf).
Is it possible to send parameters to FOP to do conditional formating as exist in xsl processors
XSL:
<xsl:param ...
2
votes
1answer
502 views
Use XSL:FO to add attachments to PDF
After resolving inline images with help from SO, I need to sort out inline attachments. PDF can contain attachments and I found:fo:declarations - pdf:embedded-file but again it pointed to an external ...
2
votes
1answer
524 views
Remove verso and list of tables from DocBook document
I have problem with customization layer of DocBook XSL. I use Apache FOP to transform document from DocBook XML to PDF. But the book contains second page (so called verso) and page List of Tables. I ...
2
votes
1answer
1k views
FOP Driver Configuration same as FOPFactory
I am currently using FOP embedded using Driver as follows
Driver driver = new Driver();
driver.setRenderer(Driver.RENDER_PDF);
driver.setInputSource(new InputSource(new ...
2
votes
1answer
466 views
ApacheFOP - Blank PDF Output?
I've been trying to transform my XML documents to PDF through Apache FOP,
but the output pdf is blank.
Any help to why this is occuring is greatly appreciated.
The code seems to be executed without ...
2
votes
1answer
797 views
What is the maximum number of pages tha apache fop can generate?
Hi I was working with apache fop and when the number of pages exceeds about 130 pages ,it could not generate the pdf ....
Is there any limit to page number or the length of xml file...
Exception in ...
2
votes
1answer
327 views
Rendering blocks side-by-side with FOP
I need to generate a PDF from XML data using Apache FOP. The problem is that FOP doesn't support fo:float, and I really need to have items (boxes of rendered data) side-by-side in the PDF. More ...
2
votes
1answer
936 views
Docbook stylesheet and tables, FOP error
I've never experienced this error since I use Docbook. I've looked it up and found out that this error was fixed earlier in the past (and also I gave a try to do the same steps as it was explained). ...
2
votes
2answers
537 views
Generating TIFF with Apache FOP 1.0 - TIFFImageEncoder4
I have successfully been using Apache FOP to generate a PDF using an Ant task.
I also have Java code (Web Service using Axis2) successfully working and producing PDFs, but have been using the Ant Task ...
2
votes
4answers
2k views
I can't change my Font Family using Apache FOP
I use fop Quick Start Guide to print a simple PDF file from simple XML file and it works fine. but when I change <name>Frank</name> to <name>امیررضا</name> (change name to ...
