Please give a brief summary of your issue:
PDFTron is throwing a System.AccessViolationException: Attempted to read or write protected memory.
Please describe your issue and provide steps to reproduce it:
We are attempting to use PdfTron to convert documents to Text based PDFs. It seems like conversions are working, however we are seeing the following exception:
Fatal error. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other m
emory is corrupt.
Repeat 2 times:
at pdftron.PDFNetPINVOKE.TRN_FontDestroy(IntPtr)
at pdftron.PDF.Font.Destroy()
at pdftron.PDF.Font.Dispose(Boolean)
at pdftron.PDF.Font.Finalize()
Apologies, I must’ve missed your response here. There isn’t one specific file that causes this issue repeatedly; it is a culmination of many.
We’ve taken some PerfView logs of the processes that lead to this exception:
.NET Version: 8.0.11 Description: The process was terminated due to an unhandled exception. Exception Info: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Stack Trace:
at pdftron.PDFNetPINVOKE.TRN_FontDestroy(IntPtr)
at pdftron.PDFNetPINVOKE.TRN_FontDestroy(IntPtr)
at pdftron.PDF.Font.Finalize()
One of the PDFNet objects implements a finalizer, which is the equivalent of a destructor. When objects with a finalizer need to be cleaned up by the GC, they first go to the special finalization queue to run their finalize methods. It seems like PDFNet is creating a lot of these Font objects that are very expensive to clean up.
In our code, we only reference this object one time:
Dim spaceWdth As Double = New pdftron.PDF.Font(style.GetFont()).GetWidth(32)
So there must be something in the PDFNetC.dll under the covers that we’re missing.