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)
In the latest major release of ImageSharp, there are some [breaking API changes](https://sixlabors.com/posts/announcing-imagesharp-300/). This causes compatibility issues if a project uses ImageSharp 3 alongside `PdfSharpCore`. Minimal repro: **Project.csproj** ```xml Exe...
How do I use PDFSharpCore to generate PDF document from XML and XSLT input? Do you have any code samples?
set { Elements.SetString(Keys.V, value); RenderAppearance(); } //HACK in PdfTextField System.ArgumentNullException: 'The size of the XPdfForm is to small. (Parameter 'viewBox')' -------- test: let document = PdfReader.Open( templateFile, PdfDocumentOpenMode.Modify ) in...
After upgrading to 1.3.57, I received the following error message when reading a pdf document (it worked fine in version 1.3.28): Exception: Unexpected EOF at ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream.Fill() at ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream.Read(Byte[] buffer, Int32...
## Issue Opening a PDF with PdfSharpCore causes the modification date to change before any modification has been made. This makes checking the modification date to see if its been...
PdfSharpCore fails to open these two pdfs. looks like two different issues. I have tried opening in accuracy.moderate with no luck `PdfDocument document = PdfReader.Open(path, PdfDocumentOpenMode.Import, PdfSharpCore.Pdf.IO.enums.PdfReadAccuracy.Moderate);` Both pdf can...
ImageSharp version 3.0.1 PdfSharpCore version 1.3.26 and higher var stream = new MemoryStream(); image.Save(stream, new PngEncoder()); XImage.FromStream(()=> stream); throw exception "Method not found: 'SixLabors.ImageSharp.Image`1 SixLabors.ImageSharp.Image.Load(System.IO.Stream, SixLabors.ImageSharp.Formats.IImageFormat ByRef)'." When I try...
Hi, I am using TeeChart which has a NuGet package reference to PdfSharpCore. However, the assemblies in the NuGet package are not signed which interferes with the deserialization of their...
Basically title. When I try to take in an existing PDF byte array then open up a memory stream to read the PDF then Call PDFReader.Open(...), I get an error...
I am needing to create Page Labels for a document. It appears that I need to create a numbertree object to hold an array of dictionaries which correspond to the...