In this article, you will learn how to find layers and update the layer’s text or image within Photoshop’s PSD files dynamically using C# .NET.

PSD is the default format used by Adobe Photoshop for saving its documents in a multilayered structure where each layer contains the text, images, graphical objects, and other supported elements. There could be the case when you have a PSD template and you need to create several resultant images by populating the text and image layers within the template. An example of such a scenario is creating employee cards within an organization. In order to automate this process, I’ll show you how to:

C# Library to Find and Update PSD Layers

Aspose.PSD for .NET allows creating and modifying PSD files without installing Adobe Photoshop or Illustrator. The API can be handy in the scenario where you need to update PSD layers dynamically using C# or VB.NET. You can install the API using NuGet Package Manager or download and reference its DLLs manually.

Find and Update Text Layers in PSD Files using C#

Aspose.PSD for .NET allows you to find the desired layer in PSD files using the layer’s name. Once you find the layer, you can update its content. The following are the steps to find and update a text layer in a PSD file.

The following code sample shows how to find and update the text layer in the PSD file using C#.

Below is the screenshot of the input PSD file we have used in this example:

Find layer in PSD using C#

The following is the resultant PSD file having updated text layer:

Update text layer in PSD using C#

Find and Update Image Layers in PSD Files using C#

In order to deal with graphical objects such as images, Aspose.PSD for .NET exposes Graphics class. This class is used to clear or draw the graphics within the PSD layers. The following are the steps to find a PSD layer and update its image.

The following code sample shows how to find and update image layers in the PSD file using C#.

The following is the screenshot of the PSD file after updating the image layer using the above-mentioned code:

Update image layer in PSD using C#

Conclusion

In this article, we have seen how to find and update the layers in a Photoshop file (PSD) using C#. The step by step guide and code samples demonstrate how to find layers and update their text or image in the Photoshop PSD files. You can explore more about Aspose.PSD for .NET using documentation.

See Also