GroupDocsGists
10/19/2017 - 11:11 AM

SaveDocument.cs

// For complete examples and data files, please go to https://github.com/groupdocs-watermark/GroupDocs.Watermark-for-.NET
using (Stream stream = new MemoryStream())
{
    using (Document doc = Document.Load(@"C:\test.doc"))
    {
        // watermarking goes here
        // ...

        // Saves the document to the underlying source (stream or file)
        doc.Save();

        // Saves the document to the specified location
        doc.Save(@"C:\result.doc");

        // Saves the document to the specified stream
        doc.Save(stream);
    }
}