1,316 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
72
views
Issue with Summation Symbol Rendering in MathML using XSL-FO Apache FOP
I am rendering MathML equations in PDF using XSL-FO with Apache FOP. While most equations render correctly, I’ve noticed an issue with the summation symbol — specifically, the lower limit appears ...
-1
votes
1
answer
123
views
Apache Fop Font not found
I need a font that can handle glyphs like š,đ,ž,ć,č... and since Apache Fop doesn't have a single font that can handle these glyphs preinstalled I am trying to import new ones.
So far I tried all ...
0
votes
2
answers
162
views
How to configure Apache FOP (using xsl-fo) to use a RGB-icc file to produce PDF/UA with enough contrast to meat Accessible standards
I want to use RGB colors in PDF in order to produce PDF/UA with enough contrast to meat Accessible standards for a page-number in orange.
I have tried several options like the one in this question:
...
0
votes
0
answers
34
views
Make command does not work - Exception in thread "main" java.lang.NoSuchMethodError when re-making GnuCash documentation [duplicate]
I am trying to re-make the GnuCash documentation (processed via DocBook) on my machine and tried to tweak a few settings.
Based on https://docbook.sourceforge.net/release/xsl/current/doc/html/labels....
1
vote
1
answer
305
views
Apache FOP/Xmlgraphics can't load SVG if it is in a jar
I've got an application using Apache FOP to create a PDF which includes an SVG image (it's a logo and is the same every time)
I find that it doesn't include the image if I use Maven's assembly plugin ...
0
votes
0
answers
125
views
Transform simple FO file to PDF using fop 2.10 and JPMS
I did an example that you may clone by
git clone https://github.com/rolfschumacher/chFop.git
Importing it to Eclipse as an existing Maven project and let it run leads to
Unable to derive module ...
0
votes
0
answers
106
views
Apache FOP for .NET Core (FOP.NetCore v. 3.0): Wingdings 2/3 not found
Our organization switched to using C# Apache FOP.NetCore 3.0 .NET library to generate PDF documents recently. Shortly after the switch, we discovered that we can not use "Wingdings 2" and &...
1
vote
1
answer
74
views
Apache FOP service is rendering the Donut graph on pdf wrong
I am trying to create a donut graph on a page with some calculations and then downlaod it as pdf. I am using Apache Fop to downlaod the page as pdf . the gRaph rendering on the page view site is ...
1
vote
0
answers
50
views
FOP internal image processing - inverting colors
I am generating a pdf via xsl/fo.
In that base xml I am using <fo:external-graphic src="path2file">
The image is in TIF-Format and is converted by the internal image process.
The ...
1
vote
1
answer
53
views
Index a block-container below the table-cell
A background coloured block-container text overlaps the square rounded table-cell as you can see
i want to avoid hacks like a block-container with the same height as the table cell with only upper ...
-1
votes
2
answers
206
views
Can't draw SVG in PDF with Apache FOP - Unknown formatting object "{}svg" encountered (a child of fo:instream-foreign-object}
I created the following code for a simple checkbox in a table using XSL-FO:
Java code
Element svg = document.createElement("svg");
svg.setAttribute("width", "12pt");
svg....
0
votes
1
answer
67
views
PDF FO.NET special characters on windows not working
If I have the following XML
<?xml version="1.0" encoding="UTF-8"?>
<Data>
<Value01>≥</Value01>
<Value02>≥</Value02>
</Data&...
2
votes
0
answers
54
views
Issue with Hindi in Apache FOP 2 version
I am getting incorrect Hindi text in rendered PDF using Apache FOP 2.0 using different Hindi fonts (Nirmla UI, Arial Unicode, Mangal, Aparaj, Amiko, Kokila fonts). I tried to adding script dev/dev2 ...
0
votes
2
answers
46
views
Print the table to the end of the page in PDF
I have some document with text and tables with various height. The document has table in the end. I need to print this table and continue its borders to the bottom of the page. Is it possible? I use ...
2
votes
2
answers
128
views
Add a blank space when an empty tag in XML is encountered
Im using Apache FOP to create PDFs.
Part of my XML looks like below. Basically i am trying to put the entire content of the tags as is in the PDF and I'm having a bit of challenge here.
I would like ...