mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-12-22 03:57:22 +08:00
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
13 lines
289 B
C#
13 lines
289 B
C#
namespace UglyToad.PdfPig.Content
|
|
{
|
|
using Tokens;
|
|
|
|
internal interface IPageFactory
|
|
{
|
|
Page Create(
|
|
int number,
|
|
DictionaryToken dictionary,
|
|
PageTreeMembers pageTreeMembers,
|
|
InternalParsingOptions parsingOptions);
|
|
}
|
|
} |