-2
votes
0answers
28 views

Pdf file saving in both downloads and specified folder [closed]

I tried to convert html to pdf using itextsharp. pdf is generated in a specified path successfully. but it is also saving in a downloads folder. string path = Server.MapPath("~/Suggestions/"); bool ...
1
vote
1answer
38 views

Error while creating pdf using iTextsharp.dll

Error Occurs while running C# project, which uses itextsharp.dll to genereate pdf file The content of error: "Could not load file or assembly 'itextsharp, Version=5.4.1.0, Culture=neutral, ...
0
votes
0answers
42 views

how to apply css for html to pdf convert process?

I used iTextSharp to convert pdf from HTML with inline Css, but the css is not applying. divPDF.InnerHtml = "<ul ...
-1
votes
0answers
24 views

how to set the page size of the output pdf document with respect to my input pdf document using itextsharp?

I am using iTextSharp for manipulating PDF documents in asp.net web environment.actually i have to read input document and then convert it to an iTextSharp.text.Image. Finally i have to add the image ...
0
votes
0answers
25 views

How to create a jpeg file from image extracted from the pdf file using itextsharp?

I am using iTextSharp for manipulating pdf file in my asp.net web application. I have converted pdf pages into iTextSharp.text.Image.Now I want to save this image files into hard disk named like ...
0
votes
1answer
51 views

Read info of pdf file without reading whole file

I need to get the information of pdf file. There is my code: PdfReader reader = new PdfReader(fileName); var info = reader.Info; I don't need to read the whole file: if there are a lot of pdf ...
1
vote
0answers
80 views

Is there any way to convert word file (docx) to TIFF? [closed]

Friends, I want to convert docx or doc file to TIFF on the fly, I tried to convert that using iTextSharp but it seems that iTextSharp's parser it is not compatible to do that. I found ASPOSE but ...
1
vote
2answers
46 views

Detecting CJK characters in a string (C#)

I am using iTextSharp to generate a series of PDFs, using Open Sans as the default font. On occasion, names are inserted into the content of the PDFs. However my issue is that some of the names I need ...
-2
votes
0answers
92 views

How to read .PDF stored as varbinary(max) from SQL Server and merge them with iTextSharp in C#.NET [closed]

I picked up someone else's code that generates a .PDF for a project using iTextSharp helper methods. I have to merge that .PDF with other .PDFs that are stored in a database as varbinary(max) files. ...
0
votes
1answer
136 views

get original content of a pdf signed with itextsharp

I'm trying to get the original document of a signed PDF in order to compare it's hash with an stored doc. This is really easy when the document has several signatures, with acrobat reader you can go ...
0
votes
0answers
99 views

High cpu utilization when combining png into pdf by itextsharp

When combining PNGs into PDF by itextsharp, the CPU utilization is very high(about 26%). I don't know why. Any suggestions as to how I might reduce CPU utilization? Here is the code. PdfWriter ...
1
vote
2answers
399 views

Read PDF using itextsharp where PDF language is non-English

I am trying to read this PDF using itextsharp in C# which will convert this pdf into word file. also it needs to maintain table formating and fonts in word when i try with English pdf it will work ...
0
votes
0answers
117 views

How to show horizontal line in iTextSharp

I am creating a pdf and need to put a horizontal line in the page. Can anyone tell how to do that? Thanks in advance.
0
votes
2answers
115 views

using multiple PdfPageEventHelper

I have to generate a large amount of different types of documents using the itextsharp library, all have things in common, some have common headers, page counts, watermarks my initial tought was to ...
0
votes
1answer
726 views

create PDF file using itextsharp in C#

I have need to create PDF files where draw line on page using margin of left,right and top. But here, confusion due to that, calculation of these margin are in pixel value. So, how can it possible ...
0
votes
1answer
195 views

PdfStamper changes size of MemoryStream

Have a PDF on disk that is 498kb. I'm reading this into a MemoryStream which reports the size as 508978 when viewed in the debugger. Then using a reader and stamper, the output MemoryStream has a ...
1
vote
0answers
50 views

How do I add a checkbox to PdfCell in iTestSharp?

I am generating a PDF and would like to add locked check boxes (both checked and unchecked, depending on the data received) with the label. I am not sure how to do that. cell.Phrase = new ...
1
vote
0answers
242 views

How do I get the signature image from a smartcard with C#?

I'm developing a C# application to certify pdf documents. I've got the certification process done but now I need to take the signature image stored in a smartcard and place it in the given PDF file. ...
0
votes
1answer
109 views

Trying to add a ItextSharp List (not the list like list box, but the bulleted list) to a PDF

I am using an ItextSharp Stamper to load a templated PDF and want to add a bulleted list to a specific location in the PDF. Fist is this possible? I have seen in mikesdotnetting blog how to create ...
0
votes
0answers
133 views

how can create radiobuttonlist using itextsharp

A big problem i am facing i am creating radiobutton list on pdf but this is not creating a box there can you help me why this is happening . there i want to display Very Important () () () ...
0
votes
1answer
606 views

itextsharp: get table headers in all the pages

I have this code below please help me to repeat the table headers in each page. I have tried with few options availavle on net but they are not working. I am using ItextSharp for the first time. ...
0
votes
1answer
151 views

Does MultiColumnText Work in iTextSharp v5.3.3?

I can't find MultiColumnText anywhere in iTextSharp v5.3.3 (from NuGet). All I can find is ColumnText which certainly isn't as friendly to use and is more than I really need. Am I missing something? ...
0
votes
1answer
1k views

Convert from html string to pdf using itextsharp in asp.net

I'm using iTextSharp in my project and using this method to parse html string to pdf public static MemoryStream MakePdf(string htmlCode) { MemoryStream msOutput = new ...
0
votes
1answer
185 views

How to get the UserUnit property from a PdfFile using iTextSharp PdfReader

I have a bunch of PDF files- I read these as requested into a byte array and then also pass it to a iTextSharp PdfReader instance. I want to then grab the dimensions of each page- in pixels. From ...
2
votes
2answers
200 views

How to check whether a page in PDF is A4 or not

I am creating a small application in which I open a existing PDF and then check whether the individual pages are in A4 or not. If pages are not in A4 then convert them to A4. I am facing two ...
0
votes
2answers
206 views

Is there a systematic way (via iText or otherwise) to replace placeholder items in a PDF report generated by ReportViewer?

I have found that one of the Microsoft Reporting controls (the Chart) is inadequate for my needs. Since these controls aren't extensible, I've extended the functionality of a WPF control and am saving ...
-1
votes
1answer
164 views

iTextSharp check RadioGroup field

I have a PDF with radiogroup field and I want to select programmatically a radio within that radiogroup. Ayone can help please. Thanks
0
votes
1answer
249 views

Running out the PDF page while generating PDF using iTextSharp.dll

I am generating the PDF using iTextSharp.i have a HTMl Page and i am Reading HTML Page then generate the PDF.but the Problem is that the half of the page is in PDF while another half of the Page is ...
0
votes
1answer
462 views

How to replace MultiColumnText with ColumnText in iText

I have such statements in the code MultiColumnText mct = new MultiColumnText(MultiColumnText.AUTOMATIC); mct.AddRegularColumns(document.Left, document.Right, 30f, 2); mct.AddElement(table); But ...
0
votes
1answer
391 views

How do I insert a hyperlink to another page with iTextSharp in an existing PDF?

I would like to add a link to an existing pdf that jumps to a coordinate on another page. I am able to add a rectangle using this code: PdfContentByte overContent = stamper.GetOverContent(1); ...
0
votes
2answers
63 views

Copy/Clone Stream in a loop…

I am fundamentally doing something wrong here within this loop. The first time through the loop, the Stream works fine, but subsequent times through the loop fail with the Stream being corrupted. I ...
0
votes
1answer
533 views

Trying to debug some iTextSharp code that is designed to convert an web page into a PDF document via a string variable

I am stuck trying to debug some code that is designed to convert an web page into a PDF document via a string variable. It uses the iTextSharp c# tool (xmlworker) and is a modification of the example ...
0
votes
1answer
1k views

Merge PDFs iTextSharp

I looked at a few examples online and came up with this code to merge pdfs using iTextSharp. But I am getting an error :. {"The document has no pages."} It fails at Page = ...
0
votes
1answer
334 views

iTextSharp modify pdf properties

I have a PDF I am trying to open up and alter slightly (just changing the ViewerPreferences) but can't seem to work out the exact usage of iTextSharp. The file that gets saved at the end is corrupt. ...
-1
votes
2answers
1k views

Set fixed number of rows per page, PDF generation using itextsharp

I have a List<object> and this list contains thousands of record. I want to generated pdf using itextsharp. and Pdfptable to generated pdf it is working fine, but but I want only 10 records per ...
1
vote
1answer
368 views

iText PDF MultiColumnText Line Height

I'm having trouble setting the line height for a Paragraph object when its added to a Column inside a MultiColumnText object. Notice the arbitrary spacing between each new line. Screen shot here of ...
0
votes
3answers
124 views

PdfTable: last cell is not visible

I use PdfPTable in the following way var myTable = new PdfPTable( 3 ); foreach(var nextString in myStrings) { var nextCell = new PdfPCell( new Phrase( nextString, smallFont ) ); nextCell.Border = ...
0
votes
0answers
115 views

How to add text followed follow by an image in a PdfPCell?

I've created a table and I need to add a small image near the text, in the right. How can I do this? PdfPCell cell = new PdfPCell(); cell.AddElement(new Paragraph("text", font)); Image img = ...
0
votes
1answer
134 views

C# create pdf documents with no need of High permissions on the server

I have a C# proyect where I need to create a pdf document. I did it using the iTextSharp dll but when I ran it on the server it didn't work. It seems that the dll needs higher permissions than the one ...
1
vote
1answer
166 views

Wrongly resolving references

I'm trying to implement generating PDF using a library iTextSharp to an old project we have at the company, everything is working great, except for when adding the Imports to a form that is using ...
0
votes
1answer
359 views

How to extract text 'marked for redaction' from a PDF using iTextSharp?

This is a follow on from this question We figured out how to extract text marked for redaction using the code below. However, there are additional leading and trailing characters captured beyond the ...
0
votes
0answers
198 views

Null reference exception inside of the itextSharp API

I am currently working on project ABCD. I have a page called PrintFriendly.aspx that renders a print friendly HTML version of the screen the user is currently looking at. The print friendly screen ...
0
votes
1answer
373 views

How do you bold specific text in a PDF form field *and then flatten the form* using iTextSharp?

Given a PDF form with fields already specified, I want to be able to put something like this in one of the form fields: Rodrigo, you are NOT the father! Using iTextSharp, I can accomplish this ...
1
vote
1answer
1k views

Inserting an image into a PDF using iTextSharp

I am attempting to insert an image into a newly created PDF document using iTextSharp - although I am not sure I am going about it in the correct manner. I have created an image object and then ...
0
votes
1answer
1k views

Applying Styles in PDF GridView using itextsharp

I'm trying to print a panel which contains data like labels and GridView to a PDF using itextsharp in my webpage. But if i'm not able to apply the styles to the GridView. Can you help me?? I'm using ...
0
votes
1answer
46 views

iTextSharp long time loading on first time

I'm using iTextSharp to create pdf documents on a fly but my problem is because the first time it takes too much time to complete the pdf generation. The next times it goes faster. Someone knows if ...
0
votes
2answers
223 views

setting the font of a PdfFormField in iText

How do you set the font for a field using iText when created as follows: PdfReader pdf = new PdfReader("C:\\foo.pdf"); FileStream outs = new FileStream("C:\\bar.pdf", FileMode.Create, ...
0
votes
0answers
73 views

how to show or hide watermark using itextsharp

Is there option to show or hide watermarks from pdf document using itextsharp based on particular events, e.g., will_print event
0
votes
0answers
198 views

Generating PDF from HTML using Itextsharp

I am using ITextSharp to parse html to PDF. But the problem it didn't take any fonts within HTML. For example; suppose the following code snippet is my html. <span style="font-family: comic sans ...
1
vote
4answers
3k views

How can I convert image url to system.drawing.image

I'm using VB.Net I have an url of an image, let's say http://localhost/image.gif I need to create a System.Drawing.Image object from that file. Notice save this to a file and then open it is not one ...

1 2 3 4