Tagged Questions

3
votes
1answer
1k views

Resolving protected resources with Flying Saucer (ITextRenderer)

I'm using Flying Saucer to create a pdf from xhtml, hosted on a tomcat server. Most of the images included in the pdf are publicly available (logos and so on), but some of them are protected behind a ...
3
votes
1answer
198 views

Converting JavaScript generated documents/pages to PDF

I'm using xhtmlrenderer + iText in Java to generate PDFs for some pages in my application. I've managed to convert some pages already. However, I came across a limitation to this approach where it ...
2
votes
2answers
268 views

FlyingSaucer LTR/RTL/BiDi problem

I'm using flying saucer xhtmlrenderer for building pdf documents. Everything worked fine until now - now we should generate arabic text inside pdf. Xhtmlrenderer is rendering Arabic text in reverse ...
2
votes
1answer
233 views

How to use CSS3 orphans and widows properties with xhtmlrenderer (flying saucer) R8?

I read in this bugfix description that xhtmlrenderer should support the "orphans" and "widows" properties of CSS3 since Version R5. Using R8, it seems not to work. div.textContent { orphans: 5; ...
2
votes
2answers
971 views

flying saucer (xhtmlrenderer) doesn't bold my font?

I'm using a custom truetype font in a pdf generated by flying saucer xhtmlrenderer. ITextRenderer renderer = new ITextRenderer(); renderer.getFontResolver().addFont("myfont.ttf", BaseFont.CP1252, ...
1
vote
1answer
358 views

Unable to print in correct resolution

I'm trying to print labels using xhtmlrenderer and java printing. However I don't seem to be able to set the resolution correct so the image is printed all edgy. This is my printing code: val ...
1
vote
2answers
348 views

xhtmlrenderer creating PDFs of length 0

I am new to org.xhtmlrenderer.pdf.ITextRenderer and have this problem: The PDFs that my test servlet streams to my Downloads folder are in fact empty files. The relevant method, ...
1
vote
1answer
119 views

JTextPane and XHTMLRenderer: When to use which

What are some situations that you would use XHTMLRenderer (flying saucer) over JTextPane with a HTMLDocument and vice versa? Is it mostly a matter of preference or are there certain cases that one is ...
1
vote
1answer
278 views

How to create TOC or index using the Flying Saucer project?

I convert HTML files to PDF format using The Flying Saucer Project. This are documents containing repetitive information - premises and their addresses, let's call them elements. At the end of a ...
1
vote
3answers
298 views

XHTML editor wanted!

I need an editor that outputs clean HTML, and preferably strict XHTML with CSS, as I am going to display the resulting pages as help pages in a java application using xhmtlrenderer ("Flying Saucer") ...
1
vote
2answers
714 views

Is it possible to resolve css as a classpath resource using Flying Saucer (XHTML-Renderer)?

I'm trying to package up resources into a jar, but I'm having trouble getting Flying Saucer to find the css on the classpath - I can't construct a URL easily to be able to resolve this seamlessly. ...
1
vote
1answer
610 views

How to render Asian characters in a PDF using xhtmlrenderer

I was wondering what steps were needed to render Asian characters using the java based xhtmlrenderer (flying saucer) library? I am wanting to render the following: <html> ...
0
votes
1answer
51 views

How to render in-memory HTML code to an image?

I found http://code.google.com/p/flying-saucer/ which should be the most suitable solution for my project. But the documents only seem to be able to read from file. But I my case I want to render ...
0
votes
1answer
301 views

Add HTML to iText document in memory using XHTMLrenderer (FlyingSaucer)

I am using iText 2.1.7 to generate a document from a database. One of the fields I need to add is in XHTML format. I can use the HTMLWorker class to generate the HTML but this is a bit limited. I ...
0
votes
1answer
212 views

content not allowed in prolog from document created by DOM when printing using flying saucer

I'm trying to print some text using my flying saucer (https://xhtmlrenderer.dev.java.net). The document is generated using DOM-API but when the print starts there is a 'content not allowed in prolog' ...
0
votes
1answer
560 views

flying saucer (xhtmlrenderer) requests image 4 times

in my xhtml i have the following: ... <img src="myImage.jpg" /> ... and I render like so: ITextRenderer renderer = new ITextRenderer(); ...
0
votes
1answer
419 views

flying saucer (xhtmlrenderer) out of memory

I'm trying to use flying saucer to create a very large PDF and it seems to be running out of memory. below are a couple of stack traces which suggest to me that flying saucer is not completely ...
0
votes
3answers
226 views

Using an ampersand in flying saucer

I get the error below when converting to PDF with flying saucer. I've removed the ampersand charector and it worked, so this seems to be the problem. How do I include ampersand's in my PDF documents? ...
0
votes
2answers
737 views

Bookmarks with xhtmlrenderer (iText)

I'm using xhtmlrenderer (Also known as Flying Saucer) with iText to convert HTML to PDF. How would I create bookmarks with this? Does someone with have a small example? Thanks in advance.
0
votes
1answer
1k views

xhtmlrenderer xhtml to pdf font problem

I'm using org.xhtmlrenderer.pdf.ITextRenderer to convert my (x)html page to pdf using Java. I've got most of it working, except the font part. I'm using verdana in my page and the pdf is rendered ...