Learn How To Create Text Watermark

In this tutorial, you'll learn how to create a text watermark using the Aspose.PSD library and add it to a PSD file. Watermarks are an essential element for protecting your images from unauthorized use or copying, and adding them to your PSD files is an easy way to ensure your work stays safe. With our step-by-step guide, you'll be able to create a custom text watermark and apply it to your PSD files in just a few easy steps.

We'll start by creating a simple text watermark using the Aspose.PSD library, and then we'll add it to a PSD file. You'll learn how to adjust the font, size, and color of the watermark, as well as how to position it in the image.


Please check the following code to find how to add the watermark to your PSD image. You can copy code to your IDE and run it.
Load PSD file and add new layer to draw a watermark on.
Copy
string src = "src.psd"; string result = "watermarked.png"; string watermarkText = "MyWatermark"; // Load a PSD file as an image and cast it into PsdImage using (PsdImage psdImage = (PsdImage)Image.Load(src)) { Layer layer = psdImage.AddRegularLayer(); // Export the image into PNG file format. psdImage.Save(result, new PngOptions()); }
1/6