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'm converting an application from PdfSharp Library to PdfSharpCore, it is a large application, but all texts now have a different space size between words (see image attached) comparing...
position:PdfSharpCore.Pdf.IO.Parser.ReadXRefTableAndTrailer(PdfCrossReferenceTable xrefTable) ``` private PdfTrailer ReadXRefTableAndTrailer(PdfCrossReferenceTable xrefTable) { Debug.Assert(xrefTable != null); Symbol symbol = ScanNextToken();/// return Keyword ```
I use the PDFSharpCore lib in my Xamarin Forms App for iOS and Android. After countless tries with other libs, this one works. But there is a samll problem with...
When I generate a pdf and upload it to azure blob storage, the html string I'm passing in is somehow being turned into Wingdings when I generate [the PDF](https://carrierhqphoenixdiag.blob.core.windows.net/sfarrg/d918780b-27fb-4efa-b4b5-3150116f5c85). ```...
This has already been listed in the issues for empira/PDFsharp, but thought it might be worth listing here as well since this fork is also affected. Thank you for your...
Hi I'm facing a problem with jpg images: ``` .... XImage image = XImage.FromFile(logo); double x = (250 - image.PixelWidth * 72 / image.HorizontalResolution) / 2; gfx.DrawImage(image, x, 0); .......
I want to extract string from PDF. How to achive it with this library. PDFTextExtractor class from PdfSharp seems to be missing.
Has anyone found a solution to use this library with Blazor WebAssembly? The problem is that FontResolver does not find the platform and returns the error "FontResolver not implemented for...
While uploading the pdf document (Version 1.4) when we try to read the page count of the PDF file is throwing error from below line of code. int pageCount =...