PdfSharpCore
PdfSharpCore copied to clipboard
Port of the PdfSharp library to .NET Core - largely removed GDI+ (only missing GetFontData - which can be replaced with freetype2)
Hi, I am trying to use PdfSharpCore for very basic task of filling forms. Unfortunately I have Unicode problem. ``` using PdfDocument document = PdfReader.Open(@"C:\Users\user\Downloads\cxPdfTest.pdf"); PdfTextField f = (PdfTextField)document.AcroForm.Fields["txtName"]; f.Text...
Hello, thank you for your proyect. I am trying to use a free3of9.ttf (barcode) font when using the IFontResolver interface it shows me the error. 
Hello, I'm trying to use PdfSharpCore in the Docker environment with the Alpine 3.17 base image and I'm courious why only the TTF font format is supported? There are a...
Hi, I added the PdfSharpCore library by Nuget into a .Net Core 3.1 project. We can use it from local environment correctly but after publishing and deploy the project to...
Hi, We experienced an issue opening a pdf document that opens correctly in various readers using PdfSharpCore v1.3.43. **Exception**: PdfSharpCore.Pdf.IO.PdfReaderException: Token '' was not expected. **Stack**: ParserDiagnostics.ThrowParserException(String message) Parser.ReadObject(PdfObject pdfObject,...
I can add a bookmark to a Section.Elements group but it doesn't show in the rendered PDF, nor is there an apparent means to reference a bookmark (i.e., from a...
 PdfPage page = document.AddPage(); PdfTextAnnotation textAnnot = new PdfTextAnnotation { Title = "标题乱码", Subject = "22222", Contents = "11111.\r11111.123", Opacity = 0.5, Open = true, Icon = PdfTextAnnotationIcon.NoIcon, };...
Say on the 3rd page, I do the following: ``` Section section = document.AddSection(); section.PageSetup = document.DefaultPageSetup.Clone(); section.PageSetup.OddAndEvenPagesHeaderFooter = true; section.PageSetup.StartingNumber = 1; Paragraph paragraph = new Paragraph(); paragraph.AddText("Page ");...
I am trying to add Table of Contents to the PDF. I referred: http://www.pdfsharp.net/wiki/HelloMigraDoc-sample.ashx http://www.pdfsharp.com/PDFsharp/index.php?option=com_content&task=view&id=55&Itemid=63 But when I try to paragraph.AddBookmark and then DocumentRenderer.RenderObject, it raises this exception. ``` Unhandled...
## Expected Behavior Cell padding should be adjustable on a cell by cell basis. In my case I have a small table embedded in a cell and I want the...