Files
PdfPig/src/UglyToad.PdfPig/Content/IPageFactory.cs
Eliot Jones e2246a88bb #482 add skip missing fonts option and pass parsing options to content stream processor
this doesn't fix the reported issue since the pdf itself is corrupted on page 8 however it will
allow recovery in some scenarios where text content isn't important.

also adds more informative error when stream unintentionally passed with non zero offset
2022-10-09 13:44:05 -04:00

13 lines
289 B
C#

namespace UglyToad.PdfPig.Content
{
using Tokens;
internal interface IPageFactory
{
Page Create(
int number,
DictionaryToken dictionary,
PageTreeMembers pageTreeMembers,
InternalParsingOptions parsingOptions);
}
}