0
votes
1answer
89 views

iTextSharp equivalent of XPdfFontOptions

I'm converting a C# app page which uses PdfSharp to iTextSharp & have found a line of code I can't see an obvious replacement for. The existing code is PdfSharp.Drawing.XPdfFontOptions ...
1
vote
1answer
430 views

Alter the page numbers on a pdf created with PdfSharp/Itextsharp

I am using PdfSharp/Itextsharp to stitch together a number of documents and stamp a page number at the bottom of each page. The first document in the package is the Table of Contents and is not ...
0
votes
1answer
642 views

Getting Dictionary of values from PDF's Internals using iTextSharp and PDFsharp

I have a project in which I need to split very large PDF files containing between 150 and 200 thousand pages each. I am currently using the iTextSharp DLL to split some of the PDFs which have the ...
0
votes
4answers
2k views

Alter PDF - Text repositioning

Is there any way to shift / move the text inside existing pdf page to some other position? Like there is some text at area x=100, y=100, w=100, h=100 and i want to move it to x=50, y=200, w=100, ...
0
votes
2answers
737 views

Rotated image extracted from pdfsharp

I am successfully able to extract images from a pdf using pdfsharp. The image are of CCITFFaxDecode. But in the tiff image created , the image is getting rotated. Any idea what might be going wrong? ...
1
vote
1answer
499 views

Resize PDF page and wrap text?

Is it possible to change the size of a page inside a PDF document without resizing all of its content? I want all text to wrap their content according to the new size. I haven't been able to find any ...
1
vote
2answers
5k views

Generate PDF based on HTML code (iTextSharp, PDFSharp?)

Does the library PDFSharp can - like iTextSharp - generate PDF files *take into account HTML formatting *? (bold (strong), spacing (br), etc.) Previously I used iTextSharp and roughly handled in such ...
0
votes
2answers
273 views

PDF stream to excel

I am having a PDF with tables in it. The main objective is to have the similar table structure being reflected in ExcelSheet. Reading the PDF stream with iTextSharp or PDFSharp I could get the plain ...
0
votes
2answers
4k views

adding new pages to existing pdf using iTextSharp

I have a pdf file with 1 page.Now I want to add two more pages to it with some data or image. I tried this but it doesnot adding new pages : private void addPage() { Document document = new ...
1
vote
1answer
786 views

silverPDF - PDF Sharp Silverlight Library [TypeInitialization_Type] Arguments: PdfSharp.PSSR

I get this error when creating a PDF from Silverlight with SilverPDF. [TypeInitialization_Type] Arguments: PdfSharp.PSSR Additional Info in the Stack Trace: ...
0
votes
1answer
781 views

I want to export pdf to xml with font information as attribute values

I want to export pdf to xml with font information lik font-size, font name, font-style, word spacing, letter spacing etc using any Freely available pdf libraries like PDFSharp, ItextSharp. For ...
1
vote
1answer
748 views

Can a pdfbox or itextsharp or pdfsharp reads corrupted pdf file

I recently downloaded pdf libraries ( pdfbox, pdfsharp, itextsharp), and I am trying to figure out can i parse corrupted pdf files with in Asp.Net. which lib is best for reading corrupted pdf file.
0
votes
2answers
1k views

how to copy only body of pdf file using itextsharp or pdfsharp in C#

I am still waiting for the reply from you all. I really need your support.......plz I am developing a project called pdf recovery. In that i want to just copy the body of file into another pdf file ...
0
votes
3answers
3k views

Unacceptable performance rendering PDF Tables with ITextSharp and PDFSharp

I am trying to generate PDF files containing large numbers of tables. Each PDF could potentially be 150 pages in length. When using ITextSharp, the file sizes are up to 16 megabytes and have no ...