PdfSharpCore icon indicating copy to clipboard operation
PdfSharpCore copied to clipboard

Port of the PdfSharp library to .NET Core - largely removed GDI+ (only missing GetFontData - which can be replaced with freetype2)

Results 228 PdfSharpCore issues
Sort by recently updated
recently updated
newest added

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 ![image](https://user-images.githubusercontent.com/5093271/178892863-33b2c5a4-57ea-4f67-bfa0-7de44ab0242b.png) ![image](https://user-images.githubusercontent.com/5093271/178893044-60641159-0453-4883-9920-4ae62f3416ef.png) 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: ![image](https://user-images.githubusercontent.com/6518006/175119365-a2a4a422-3213-46d1-9134-f507a2c11016.png) 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...