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)
Application crashes on startup with the following error message displayed in a popup window: > An Issue in the projectname.UWP.exe process has caused it to fail to activate. This process...
the Error was   PdfDocument newPdf = new PdfDocument(); foreach (string pdf in pdfFilePaths) { PdfDocument importPdf = PdfReader.Open(pdf, PdfDocumentOpenMode.Import); //this line will raise error foreach (var pdfPage in...
As I was working on the previous support for the local AppData fonts in Windows, I noticed that the code was a bit 'old'. Things I changed: * Swapped the...
I consistently get an exception (without useful detail) when Paragraph.Addimage is executed. I have tried several iterations of this method call without success [AddImage Bug.pdf](https://github.com/ststeiger/PdfSharpCore/files/8835442/AddImage.Bug.pdf) .
Here's the error message: "Unexpected token 'endobj' in PDF stream. The file may be corrupted. If you think this is a bug in PDFsharp, please send us your PDF file."...
I couldn't find a way to message anybody. I am trying to compile test code in Visual Studio 2019 Pro .NET 5 console app. Your sample code had: ` gfx.DrawString(...
Hi So I load an existing PDF document using ```csharp PdfDocument document = PdfReader.Open(new MemoryStream(pdfStream), PdfDocumentOpenMode.Modify); ``` The document has these fonts defined:  However when I save the pdf,...
This PR adds support for reading PDF-documents protected by encryption-algorithms that were introduced in PDF version 1.6 and 1.7. (i.e. AES-encryption with a key-length of up to 256 bit) It...
According to the docs - [Unicode](https://github.com/ststeiger/PdfSharpCore/blob/master/docs/PdfSharpCore/samples/Unicode.md), I should have possibility to embed the font into the document. Unfortunately the implementation of the [XPdfFontOptions](https://github.com/ststeiger/PdfSharpCore/blob/master/PdfSharpCore/Drawing/PdfFontOptions.cs) does not have constructor that has 2...