
Watermarks are usually used to show ownership or the nature of the document. You can add/insert or remove watermark in Word Documents ([DOC][1]) programmatically using C++. For instance, a word document contains classified information and you want to add a watermark in the file then these requirements can be met efficiently with [Aspose.Words for C++][2] API.
- Insert or Remove Watermark in Word Files in C++ – API Installation
- Add or Insert Text Watermark in Word Document (DOC/DOCX) using C++
- Add or Insert Image Watermark in Word Document (DOC/DOCX) using C++
- Delete or Remove Watermark from Word Document (DOC/DOCX) using C++
Insert or Remove Watermark in Word Files – API Installation
For working with watermarks in word documents, you need to configure Aspose.Words for C++ API by downloading it from the [official site][3], or via the following [NuGet][4] command:
Install-Package Aspose.Words.Cpp -Version 20.10.0
After installing it, you will be able to edit and manipulate Microsoft Word Document formats including DOC, DOCX, and other [supported file formats][5].
Add or Insert Text Watermark in Word Document (DOC/DOCX) using C++
You can add or insert watermark text in word documents using C++. Moreover, you can control the formatting of text like font style, size, color, and transparency. You need to follow the steps below for inserting watermark text in Word documents (DOC/DOCX).
- Load input document
- Initialize TextWatermarkOptions object
- Set Font Style, Size, and Color
- Set Text as Watermark
- Save the output word document
The code snippet below shows how to add or insert text watermark in word documents using C++:
Add or Insert Image Watermark in Word Document (DOC/DOCX) using C++
You can add or insert image watermark in word documents (DOC/DOCX) by your C++ applications. The picture may contain some text or logo with some transparency value. You need to follow the following steps to add an image watermark in a word document:
- Load input word document
- Initialize an object of ImageWatermarkOptions class
- Load watermark image
- Save the output word file
The following code is based on these steps which shows how to add or insert image watermark in word documents using C++:
Delete or Remove Watermark from Word Document (DOC/DOCX) using C++
You might need to update a watermark in a word document. In many such related scenarios, you might want to remove or delete a watermark from word document (DOC/DOCX). The API gives you the control to decide if you want to delete a text watermark or image watermark because single word document can contain more than one kind of watermark. Here we will be removing text watermark in a DOCX file with the following steps:
- Load input word document
- Access watermark of Text type
- Remove Text watermark in the document
- Save output word document
The code below shows how to delete or remove watermark from DOC/DOCX word document using C++:
Conclusion
We have learned how to add or insert watermark in word documents (DOC/DOCX) programmatically using the C++ language. You can insert text or image watermark as per your requirements. Moreover, you can also remove or delete a watermark from a word document. Both image and text watermarks can be removed using C++. Furthermore, you can explore the API further by referring to [Product Documentation][6], [API References][7], [Examples Project][8], or you can reach us anytime at [Free Support Forum][9] for any query.
See Also
Convert Word (DOC/DOCX) to HTML MHTML Programmatically using C++
[1]: https://docs.fileformat.com/word-processing/doc/)/[DOCX](https://docs.fileformat.com/word-processing/docx/ [2]: https://products.aspose.com/words/cpp [3]: https://releases.aspose.com/ [4]: https://www.nuget.org/packages/Aspose.Words.Cpp/ [5]: https://docs.aspose.com/words/cpp/supported-document-formats/ [6]: https://docs.aspose.com/words/cpp/ [7]: https://apireference.aspose.com/words/cpp [8]: https://github.com/aspose-words/Aspose.Words-for-C [9]: https://forum.aspose.com/c/words