Rendering of Rotated Text Layers

Rendering of Rotated Text Layers

Aspose.PSD provides the feature of rendering of rotated Text layers. In the example below, an existing PSD file is loaded by passing the file path to the Image class static Load method. Now call the Save method of the PsdImage instance.

The following code snippet shows you how to render rotated Text layers.

Rotate Vector Mask and Text Layers

Aspose.PSD provides the feature to rotate Vector Mask and Text layers. Aspose.PSD has exposed the RotateFlip method to rotate Vector Mask and Text layers. The steps to rotate the layers are as simple as below:

  • Load a PSD file as an image using the factory method Load exposed by Image class.
  • Set required RotateFlipType.
  • Call RotateFlip method
  • Save the results.

The following code snippet shows you how to rotate Vector Mask and Text layers.