Library to create and manipulate PDF documents in Java.
0
votes
2answers
17 views
how to add blank page in digitally signed pdf using java?
I want to insert blank page at end of the digitally PDF using Itext library.and my confusion is adding pages will invalidate the existing signatures?
Thank you.
1
vote
0answers
32 views
Convert html+css+js to PDF
I want to create something like this (code is here):
in pdf format. I'm using google charts and regarding to this forum converting chart to pdf is impossible. I've already tryied iText+XMLWorker, ...
0
votes
1answer
13 views
Form Field text is aligned vertically after FormFlattening
I am using this code to flatten the pdf.There is a form field named "DBA_Name".This is multiline.It is vertically bottom aligned.But after flatten the pdf,it is getting top aligned.
I have no idea why ...
0
votes
0answers
31 views
Why does this project Deploy and run just fine, but fails to build?
Recently we have added the Itext library to our project to generate PDF files.
When we implemented the process, everything works just fine if you run the project in netbeans. However when we ...
0
votes
0answers
28 views
iText throws java.lang.ArrayIndexOutOfBoundsException on creation of PdfReader
I use the following code to create a PdfReader instance:
FileInputStream pdfIn = new FileInputStream("c:/temp/20501217.pdf");
ByteArrayOutputStream stampedPdfBAOS = new ByteArrayOutputStream();
try {
...
0
votes
0answers
32 views
How to make watermark image unselectable through java
I am trying to make one image unselectable, actually I want to create one watermark, as to maintain a little security the image that we are going to make watermark of it should be unselectable.
I ...
0
votes
1answer
25 views
Search and Replace PDF using Itext
I need to generate a PDF based on some user inputs. The output PDF have some images, tables and texts. I think that Itext is not user friendly for programmatically generate this report.
Since the ...
0
votes
0answers
15 views
How can you read the fields from a password-protected PDF using iText when you do have the PDF password?
I have a PDF created from LiveCycle Designer in PDF 1.7.
I'd like to read some fields in that PDF on the server side at times. I have the password that protects the PDF on the server side.
I am ...
-2
votes
0answers
13 views
Flattening a dynamic XFA form [closed]
I have a dynamic PDF form (based on XFA technology). I try to fill out and flatten the form like this:
PdfStamper stamper = new PdfStamper(reader, fileOutputStream);
stamper.setFormFlattening(true);
...
0
votes
1answer
35 views
Convert HTML to PDF and add it to a paragraph
I want to add a paragraph, containing HTML, to a document.
As far as I know, iText only supports adding HTML to a document directly via XMLWorkerHelper.
Furthermore I want to change the font of the ...
0
votes
1answer
61 views
Xpages PDF creation using the XMLWorker class
Using SSJS I've successfully created a PDF using the simple HTML parser that comes with iText but the simple HTML parser doesn't respect CSS and is very limited. I downloaded the XMLWorker class from ...
0
votes
0answers
46 views
Losing javascript which is added into pdf using itext
I am trying to add javascript into a pdf using itext and later merge it with another pdf.
But the final merged pdf does not contain the javascript. The javascript is working fine if the pdf is not ...
0
votes
0answers
14 views
Is it possible to add an XFA Field Databinding Value with iText?
We are having to work with a XFA styled PDF form that is poorly designed, but we are not the author's of the form (there are many forms we need to do this for). The form has data bindings for most ...
0
votes
1answer
34 views
How can I add Rectangle on every page of a document using iText?
I'm using iText 5.3.5 to create a pdf document. Right now I am trying to get a rectangle on every single page of the document but I'm not pretty sure of how to do this. I tried adding this at the end ...
0
votes
2answers
56 views
iText - avoid last row not to cut tables on page split to next page
I am working on itext 5 using java. I have pages with mutiple tables with dynamic rows. In some instances, the table last row is splitted into next page with the folowing header. I am using ...
0
votes
1answer
27 views
PdfUtilities.convertPdf2Png Create automatic images in My directory
I've written some code to perform OCR on a PDF using Tesseract (Tess4J):
public void DoOCRAnalyse(String From) throws FileNotFoundException {
Tesseract instance = Tesseract.getInstance(); // JNA ...
0
votes
0answers
20 views
Why adding a Paragraph to a Paragraph modify leading of outer Paragraph?
I have a question about the leading of Paragraph object in Itext (I'm using version 5.2.1).
This is the code:
BaseFont f = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.WINANSI, ...
-2
votes
1answer
36 views
How to use ItextAsian [closed]
Can anyone suggest me to create PDF with Itext to showing Japanese font. I fond many example to create with unicode but not with itextasian . I really want to know how to use itextasian ? Please ...
-2
votes
0answers
50 views
I'm Stuck here on PDF parsing (text and image) those are my methodes [closed]
I work with iText to retrieve the contents of a PDF file.
there are two types of PDF files:
* A text file.
* A file with all the pages pictures (scaned images).
the goal is to get a few words to ...
0
votes
0answers
11 views
itext or itextsharp string with 2 upper and lower rows
This is the reference pdf I am trying to replicate.
http://www.depo.com.tw/asp/pdf/R_VW_PASAT_2.pdf
I am working on the PDF catalog and I am trying to output something like the above.
As you guys ...
0
votes
1answer
24 views
How to increase cell spaces in certain sections of PDF table and not the entire table using itext?
I have created pdf pages using PDFTable and itext version 5.2.1
I have created a method which defines font, cell spacing,etc..
This is the code:
Cell textColspanCenter(String staticdata, Font font, ...
0
votes
0answers
28 views
iText Image wrapped PdfTemplate outputting incorrect text string
Document document = new Document();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PdfWriter writer = PdfWriter.getInstance(document, baos);
document.open();
PdfTemplate pdfTemplate = ...
-1
votes
1answer
15 views
How to access resources in Java Struts 1 app
In a Struts 1 Web App I can access images from a .jsp by
<img src="../../images/myImageName.png"/>
Am I also able to reference that image from a .java class in my source directory?
I am ...
0
votes
0answers
29 views
Extract Header Info From PDF Document Pages
Using Java 1.6 and iText:
I'm trying to extract header information from a PDF document. By "header", I'm specifically talking about something similar to a header as viewed in a MS Word doc, and not ...
4
votes
1answer
67 views
Determine whether a PDF page contains text or is purely picture
How to determine whether a PDF page contains text or is purely picture, using Java?
I searched through many forums and websites, but I can not find an answer yet .
Is it possible to extract text ...
0
votes
3answers
33 views
Does iText support OCR?
I would like to ask a question about iText.
I am facing a problem searching for text in a PDF file.
I can create a plain text file using the getTextfromPage() method as described in the following ...
1
vote
1answer
37 views
Using iText with JBoss 7 Java EE project
How to use iText with JBoss 7 Java EE project?
I created a Java EE Project using JBoss Tools
Group Id: org.jboss.tools.example
Artifact Id: multi
I'm now trying to use iText to create a PDF from my ...
0
votes
1answer
35 views
Sign PDF from usb Token Using MSCAPI & ITEXT
can anyone give me a simle example of pdf signing from usb token using MSCAPI and ITEXT. I do not want to use a fixed ocsp string.
I tried to follow this
Digital Signature book but it did not work. ...
0
votes
2answers
49 views
itext pdf generation fail on parsing some html tags
I have this html code, which reside in db and I want to parse it in pdf.
I am using itext for pdf generation.
here is the html in db:
<p>no note.</p><br>
<ul><br>
...
1
vote
2answers
45 views
XFA Form conversion to PDFA-1B
We have a requirement to convert XFA Form (Adobe LiveCycle Form) to PDF/A-1B.
We're attempting to use iText 5.4.0 to parse the PDF, populate the XFA fields and then save the modified PDF back out.
All ...
0
votes
0answers
55 views
iText - avoid first row to cut tables on page split [duplicate]
I am working with itext 5 which has many tables. Each table has many rows with different cell heights. When a table first row doesn't fit on the rest of the page, iText splits the table and the last ...
0
votes
0answers
46 views
PdfStamper in Java Applet
I use PdfStamper in Java applet to sign pdf files.
The problem is that applet every time suspends when reach line with pdfStamper.close();
I think that my problem is related to some java applet policy ...
0
votes
2answers
22 views
jfree chart bar chart add $ to range value
I implemented a code to represent a bar chart (as of picture). Now my problem is that I want to add $ sign to the values to represent the currencies. So that the values would be:
$0 ---- $500,000 ...
1
vote
0answers
41 views
iText tables - how to keep multi row cells on one page?
I'm creating a table in iText that lists events for a date. If there are mutliple events for a date, I set the rowspan property of the date-cell to the number of events. I'm currently using a row for ...
3
votes
2answers
54 views
Jsoup simple HTML tag splitting
My java app reads database rows, and creates iText PDF files. The problem is that some cells in the rows I get, contain the bold HTML tag, and this means that I must also display a bold Chunk in my ...
0
votes
1answer
55 views
Search for text in PDF files
I have a list of words about (86 words), and some PDF files.
I would like to search for those words into PDF files and return values tell me if exist.
During research for solutions in tutorials I ...
0
votes
1answer
68 views
Split a PdfTable in next page
How to split a PdfTable in next page in Java?
I am generating a pdf document using itext in java. The pdf has a header and a table. When the table continues to the next page, two rows of the table ...
0
votes
2answers
48 views
How can I set XFA data in a static XFA form in iTextSharp and get it to save?
I'm having a very strange issue with XFA Forms in iText / iTextSharp (iTextSharp 5.3.3 via NuGet). I am trying to fill out a static XFA styled form, however my changes are not taking.
I have both ...
1
vote
2answers
42 views
Exception when attempting to generate variable-page PDF with iText
I'm trying to create an auto-filled PDF of a government payroll form, which involves the possibility of a variable number of pages. I'm currently storing each page as a Map, with the keys being the ...
0
votes
0answers
45 views
Inserting a PDF document into a new PDF Page
I am working on a project to insert PDF document in the middle of a PDF page built in Java (using iText Library). I am able to do that but my problem is that every time it put the PDF document at the ...
0
votes
1answer
52 views
Drawing on a rendered pdf - Swing
After being extremely annoyed at the lack of free software to draw directly onto pdfs, I've decided to write it myself.
I aim to achieve this by having some sort of canvas widget in a GUI with the ...
-1
votes
3answers
85 views
Merge 2 PDFs in Java
I have a Problem with iText and merging of 2PDFs to 1 PDF.
I would like to merge this PDFs:
PDF1 - One Site:
This is PDF1.
PDF2 - One Site:
This is PDF2.
What I need: ...
0
votes
2answers
58 views
Generate PDF using 'letter paper'
I am well aware that questions like this are not very popular, but I could not find any other lead on the subject, I apologize anyway.
I've come across the expression "Letter paper" (or letter-paper) ...
-1
votes
1answer
119 views
How to convert images to pdf using iText.
Can anyone please show me how to use iText API in android to convert images captured which is already in gallery and save it as pdf document. Help needed as soon as possible. Main objective is to ...
1
vote
2answers
58 views
Stackoverflow error in OnstartPage method
I intend to have a different String for every Start of Page depending on values I read from another File. I have Placed this in my onStartPage Method Like this:
@Override
public void ...
0
votes
1answer
51 views
Prevent copying pdf contents generated using iText
We have a web application which generates a report and saves it in pdf using iText. We want to prevent user from copying the contents from this file. I thought this can be achieved by converting pdf ...
0
votes
1answer
93 views
iTextSharp StyleSheet equivalent
When using the HTMLWorker to covert HTML into PDF elements we can provide a StyleSheet instance that can be used to style the generated elements.
Unfortunately the CSS-to-PDF conversion is quite ...
0
votes
0answers
32 views
use iText to set tab order
Is it possible to set the tab order (tab follow tag structure) using iText, like Adobe Acrobat Pro does?
Using Adobe Acrobat Pro you can select a pages properties and then select between different tab ...
1
vote
1answer
133 views
Why does generated PDF display properly in Internet Explorer but not in FireFox or Chrome?
I'm generating PDFs in Java using lowagie/iTextPDF and am having a problem displaying the output in Firefox and Chrome, but IE8 displays them fine.
Firefox and Chrome display gibberish, like this:
...
0
votes
1answer
110 views
Using iText to create PDF
I'm trying to create a PDF using iText and I'm having a great deal of difficulty. In short, what I want to do is:
Read in a template pdf
Make a copy in memory of the template
Draw a table on the ...


