mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
18 lines
518 B
C#
18 lines
518 B
C#
namespace UglyToad.Pdf.Content
|
|
{
|
|
using System.Collections.Generic;
|
|
using Graphics.Operations;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This should contain a replayable stack of drawing instructions for page content
|
|
/// from a content stream in addition to lazily evaluated state such as text on the page or images.
|
|
/// </remarks>
|
|
public class PageContent
|
|
{
|
|
internal IReadOnlyList<IGraphicsStateOperation> GraphicsStateOperations { get; set; }
|
|
}
|
|
}
|