Tagged Questions
0
votes
1answer
14 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>
...
0
votes
1answer
21 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 ...
1
vote
3answers
74 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"?>
...
1
vote
2answers
54 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 ...
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
1answer
200 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
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 ...
1
vote
1answer
179 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
92 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
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
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
292 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 ...
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 ...
0
votes
2answers
407 views
What is wrong with my xsl-fo code
I am trying to generate a pdf using apache-fop from the following command.
C:\fop-1.0-bin\fop-1.0>fop -xml sample1.xml -xsl xsl-fo.xsl -pdf sample2.pdf
My xml looks like this
<?xml ...
3
votes
1answer
125 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 ...
0
votes
1answer
382 views
Apache FOP XML - XLS-FO generates invalid pdf
I'm trying to create a PDF document with Apache FOP from an xml file that is formatted with an xlst stylesheet to convert the original xml file to an xml-fo formatted xml file.
As I'm new to this, I ...
0
votes
2answers
185 views
FOP not generating readable PDF
My enviroment is :
Glassfish 3.12
FOP-1.0
and I am trying to generate a PDF using FOP via a servlet.
The XML file is :
<?xml version='1.0' encoding='iso-8859-1'?>
<LIST>
...
0
votes
1answer
101 views
Fixing the location of a word in a line in PDF with FOP
I am trying to implement FOP to output a PDF using XML and XSLT files.
My problem is the following I need to fix the position of words in a line (but not through using tables) for example:
I have ...
0
votes
1answer
119 views
how to get xsl from existing pdf?
Is it possible to get the .xsl file from an existing .pdf file?
I know that with Apache FOP you can get a .pdf file from a .xml and .xsl but I would like to go in the other direction. Any idea?
...
1
vote
1answer
251 views
XML to PDF using FOP return a blank page
I'm trying to convert an xml file to a pdf file using Apache FOP but I receive only a blank page, this is my code:
protected byte[] buildPDF(byte[] xml) throws IOException {
FileOutputStream fos;
...
3
votes
1answer
355 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 ...
1
vote
1answer
183 views
xslfo with FOP: Check if content overflows and call different template?
I have a question with XSLFO, generator is FOP. What I wanna do:
In the PDF I wanna generate an item list, each item is in a box with a specific width and height. In case the content does not fit this ...
0
votes
0answers
82 views
After moving from Weblogic to Tomcat… FOP 0.95 generated PDFs suddenly have undesired margins
Some bizarre behavior was reported by a client developing with FOP and I wanted to see if anyone knows what is going on.
We have been generating PDF's from text using FOP for a long while on ...
0
votes
1answer
106 views
PDF designing using XSL FO
I have a question regarding the PDF designing:
I have a requirement where in the whole PDF should have an image (kind of a background image) along with the header and footer repeating if the content ...
0
votes
0answers
252 views
Generate PDF from a big image using Apache FOP
I would like to generate a PDF from an image, using Apache FOP and XSLT. However, if image s bigger, then PDF document page, then it only gets as much space as it is available on the page (including ...
2
votes
2answers
481 views
FOP is it possible to create a table with only <table-head> but no <table-body>?
I'm using FOP to transform HTML(embedded in XML) to PDF.
The HTML snippet is like below:-
<table border="1" width="100%">
<thead>
<tr>
<th>Name</th>
...
0
votes
0answers
412 views
fixed: Multiple page-sequence objects
When working with big xml files fop breaks down due to the lack of ram(1.7gb in my case, is the limit), so one of the ways to fix this is to use multiple page sequence objects as described here . ...
2
votes
1answer
501 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
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 ...
1
vote
0answers
1k views
XSLT/XSL-FO: page-numbering start from page 2
I am using XSLT and XSL-FO for document creation. And the requirement is: in a document the page number should start from page 2 (on page 2 the number should be 1).
In layout-master-set I created 2 ...
1
vote
0answers
51 views
Putting TOC and LOF on the same page (PDF)
I tried several things to have my TOC and LOF on the same page in my PDF (xsltproc with fop), but none of them succeeded. Last thing I tried was tweaking force.page.count and initial.page.number as ...
-1
votes
1answer
191 views
XML with HTML and XSLT transformation
I try to modified a xml document that has html inside a tag I can transform <p> and list but I have bold and italics inside. How can I make this? I use xslt templates to transform.
This is my ...
0
votes
1answer
241 views
XSL FO Repeat contents of split spanned cell
I am using apache FOP 0.95 (and docbook on top of it) and I would like to repeat the content of a table cell spanning multiple rows whenever a page break happens. At the moment the cell content is ...
0
votes
2answers
463 views
How display preformatted text in a pdf generated by fop?
Does anyone know how I can display preformatted html text like:
<ol>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ol>
inside a pdf generated ...
0
votes
1answer
404 views
Relative path for external graphic with parameters
I'm having a problem constructing the links for my external graphics. In my xml for example I have this path: /images/1.png.
Now I want to print all the images from the xml in a for-each. But I don't ...
1
vote
1answer
256 views
fop 0.20.5 and xslt 2.0?
does fop 0.20.5 support xslt 2.0? I have not been able to find the answer to this anywhere.
I have a 1.0 xslt document and I want to add a regular expression section to it. I have read that I can ...
1
vote
1answer
305 views
Docbook XSL: Set a default size/scale for imagedata elements?
Writing some stylesheets for DocBook.
Edit: per the comment below: Yes, this means I am writing customizations based on the DocBook-XSL stylesheets, not rewriting existing DocBook stylesheets.
Is ...
1
vote
0answers
223 views
Restart footnote numbering in each 'sect1' in Docbook
As the title describes my problem is that I want to reset the footnote numbering in each 'sect1', not just in each 'chapter' or 'appendix' and etc.
So far I couldn't manage to reset it. I've tried to ...
0
votes
1answer
229 views
running a batch file using xsl and fop…Problems with the fop
I am running my simple little batch program:
@echo off
transform data_files\sql_dump data_files\sql_to_xml transformed_files\sql_dump_to_xml
transform transformed_files\sql_dump_to_xml ...
0
votes
2answers
533 views
xsl number()-function cannot convert
I am using fop 1.0 in a .NET application.
My stylesheet looks like
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet ... version="1.0" ...>
...
<xsl:param name="fromPerson" ...
0
votes
2answers
530 views
How can I sum up some values per page in a table in XSL-FO?
I'm using XSL-FO to generate an account statement print out. The PDF is actually just a simple table with a simple header on every page. The difficulty is that I have to display transaction volumes ...
0
votes
2answers
281 views
How to display one or the other information depending on the page number in XSL-FO?
I'm using XSL-FO to create PDF's. Now I have a label that I want to display only on the first page, and another label that I want to display on all other pages, e.g.
Page 1
Last month's balance
...
0
votes
1answer
2k views
FOP warning:line 1 of a paragraph overflows the available area by more than 50 points
Just to make sure I would like to share my understanding of FOP vre 1.0 with you,
FOP uses a automated line breaking algorithm i.e when data overflows the width of a table cell,FOP looks for white ...
0
votes
0answers
959 views
Creating dynamic XSL-FO table using XSLT
I am creating a table in xsl-fo, with undefined number of elements (indtr).
I wonder if there a smart way to do this?
Here is my input xml file
<pr-levels>
<prs>
...
1
vote
1answer
278 views
Docbook, images already resized
I have an issue with my docbook xmls. The basic problem is that I couldn't find yet any solution to keep the inline/mediaobject images original size (height/width). All of the images are displayed ...
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 ...
2
votes
1answer
195 views
is there a simple example of a php snippet highlighted in docbook with pdf output?
I've been trying to highlight the code in a programlisting block in docbook. The code is the following:
<programlisting language="php"><![CDATA[
// php code
]]></programlisting>
...
2
votes
1answer
457 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 ...
0
votes
1answer
261 views
Docbook-XSL remove page break after part
I'm generating a PDF from a DocBook XML, styling it with an XSL stylesheet, using FOP as processing tool.
Is it possible to remove the page break after the title of a part element ?
Thanks,
Carlo
0
votes
2answers
377 views
xslt 2.0 month name in French or German
I’m using xslt fn:formate-dateTime() to get the current date and time, for English it’s works fine.
But everytime I try to get the month name in different languages (fr, de, etc), I will just get ...

