delete old code and start an approach for parsing fonts and page content streams

This commit is contained in:
Eliot Jones
2017-11-22 18:41:34 +00:00
parent 4b91300466
commit b0e53efbfe
96 changed files with 2307 additions and 1904 deletions

View File

@@ -0,0 +1,11 @@
namespace UglyToad.Pdf.Parser
{
using Content;
using Graphics;
using IO;
internal interface IPageContentParser
{
PageContent Parse(IGraphicsStateOperationFactory operationFactory, IInputBytes inputBytes);
}
}