Load document from stream

On this page

The following code snippet shows how to load a document from a stream:

using (documentStream = File.OpenRead("input.pdf"))
using (Annotator annotator = new Annotator(documentStream))
{
     	AreaAnnotation area = new AreaAnnotation()
       {
       	Box = new Rectangle(100, 100, 100, 100),
       	BackgroundColor = 65535,
       };
       annotator.Add(area);
       annotator.Save("result.pdf", new SaveOptions());
}

On this page