itext Questions
4
We are doing research in information extraction, and we would like to use iText.
We are on the process of exploring iText. According to the literature we have reviewed, iText is the best tool to ...
Anguished asked 11/1, 2012 at 14:40
3
After extensive google searches, I'm starting to wonder if I'm missing the point of digital signatures in some way.
This is fundamentally what I believe I should be able to do in principle, and I'...
6
Solved
<%
OutputStream output=response.getOutputStream();
response.setContentType("application/pdf");
response.setHeader("Content-Disposition", "inline; filename=details.pdf");
try{
Document document ...
2
Solved
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import com.itextpdf.text.Document;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.PdfWriter;
pu...
2
We are using JasperReport 6.1.0 which has a dependency to com.lowagie:itext:jar:2.1.7.js2. It looks like iText 2.1.7 has IP issue, and iText is asking all users to use the latest version which requ...
Greenness asked 17/11, 2016 at 10:22
2
Solved
I am creating a single pdf page with 6 images in a table in separate cells, even though I am setting the images height and width on the server side exactly the same with ScaleToFit the images sizes...
3
I'm trying to create a pdf document using iTextSharp 5.3.4 using the following
Document document = new Document();
FileStream stm = new FileStream(filename, FileMode.Create);
PdfWriter writer = Pd...
3
Solved
I have tried a lot on google but not able to find..
Any help is appreciated.
Please find the code below:-
protected void Page_Load(object sender, EventArgs e)
{
StreamReader read = new StreamR...
Barbican asked 24/5, 2011 at 12:21
3
Solved
I am trying to use a PDF for stamping and need to rotate it 90 degrees to lay it on correctly? Anyone know how to do this? Can't seem to find it online.
2
Solved
How can I get iTextSharp to repeat the headers of a PdfPTable on each page of the generated PDF?
Ahq asked 14/1, 2010 at 8:37
3
Solved
I am using itext5 to create pdf files with painted non-removable watermarks as follows:
public class TestWatermark {
public static String resourcesPath = "C:\\Users\\java\\Desktop\\TestWater...
3
I am using Java with iText in order to generate some PDFs. I need to put text in columns, so I am trying to use PdfPTable. I create it with:
myTable = new PdfPTable(n);
n being the number of col...
7
I'm using iText in my java program for editing an existing pdf.The generated pdf could not open and it shows pdf header signature not found error.I'm using both my input and output file in a same n...
4
I am having an problem with reading a table from pdf file. It's a very simple pdf file with some text and a table. The tool i am using is itextsharp. I know there is no table concept in PDF. After ...
5
Solved
I'm using iText to generate a PDF. I created a custom PdfPageEventHelper to add a header (and footer) to each page.
My problem is I don't know how to add the image so it is displayed in the "heade...
2
Solved
I'm getting the following exception when excecuting this code:
public byte[] watermarking(byte[] orig) throws IOException {
PdfReader pdfReader = new PdfReader(orig);
ByteArrayOutputStream baos ...
Photodrama asked 23/3, 2016 at 10:58
7
How to create PDF file using iText or some other library on android?
Is there any tutorial on iText for android?
Thanks
Mettah asked 8/12, 2011 at 17:31
8
I have several datasheets for products. Each is a separate file. What I want to do is to use iText to generate a summary / recommended set of actions, based on answers to a webform, and then append...
3
Solved
This code below does not work.
Table table = new Table(2);
table.setBorder(Border.NO_BORDER);
I am new to iText 7 and all I wanted is to have my table borderless.
Like how to do it?
6
here's my code. It correctly adds the pictures I want and everything works except that the images are using their native resolution, so if the image is big it's being cropped to fit the page.
Is t...
4
Solved
Is there any way to convert a Org.BouncyCastle.X509.X509Certificate to System.Security.Cryptography.X509Certificates.X509Certificate2?
The inverse operation is easy, combining Org.BouncyCastle.X50...
Megasporophyll asked 15/11, 2011 at 12:55
6
Solved
What is the latest version of iText? And what is the maven dependency for that?
2
Solved
I am using Spring MVC .I have to write a service that would take input from the request body, add the data to the pdf and returns the pdf file to the browser. The pdf document is generated using it...
Tseng asked 20/5, 2013 at 15:20
4
Solved
I've added a Text object that start with whitespaces to the Paragraph object,
but the whitespace of paragraph is removed in iText7(7.0.4).
It looks like left trim. Is this a specification of Para...
3
Solved
in itext 7.1, I am adding an image to a pdf document with following code :
Document document = new Document(writerPdf); //make a new document object
ImageData imgData = ImageDataFactory.create(im...
1 Next >
© 2022 - 2025 — McMap. All rights reserved.