This documentation is for the old version. Go to the latest Graphics Mill docs

AdvancedPsdFrame Class

Represents PSD raster layer.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill.Codecs.AdvancedPsd (in Aurigma.GraphicsMill.Codecs.AdvancedPsd.dll)

Syntax

Visual Basic
Public Class AdvancedPsdFrame _
	Inherits Frame
C#
public class AdvancedPsdFrame : Frame

Remarks

Raster layers are base kind of PSD layers. Even text layers can be represented as raster ones. PSD file always keeps the rasterized version of such layer and the information like text string, font settings, etc. are kept as a metadata of the layer.

To be able to distinguish raster layers from text layers, use the Type property. If it equals to Text, you should cast this layer to AdvancedPsdTextFrame.

PSD file can store such layers which cannot be recognized by Advanced PSD add-on. For example, it cannot handle adjustment layers, vector masks, etc. In this case the Type property will equal to Unknown. It makes sense to verify the type of the layer before you try to extract anything from it to avoid unknown layers.

Inheritance Hierarchy

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.

Object Model




See Also

Reference