←Select platform

MaskImage Property

Summary

The transparency mask channel of the saved PSD layer.

Syntax

C#
VB
WinRT C#
C++
public RasterImage MaskImage { get; set; } 
Public Property MaskImage As Leadtools.RasterImage 
public Leadtools.RasterImage MaskImage {get; set;} 
 <br/>get_MaskImage();<br/>set_MaskImage(value);<br/>Object.defineProperty('MaskImage');  
public: 
property Leadtools.RasterImage^ MaskImage { 
   Leadtools.RasterImage^ get(); 
   void set (    Leadtools.RasterImage^ ); 
} 

Property Value

A RasterImage object that specifies the transparency mask channel of the saved PSD layer.

Remarks

This is an 8-bit grayscale image. The value of each pixel indicates the amount of transparency the data of the original image has at this point. For example, if the value is 0xFF at a certain point, the pixel value of the layer image at that point is not transparent at all. If the value was 0x00, the pixel value of the layer image at that point is fully transparent. If the value is between these two, it indicates the degree of transparency the pixel value of the layer image has at that point.

When loading, if you set the LoadMaskImage property to true, then this property will hold an RasterImage object that represents the transparency mask channel found in the PSD file.

If the mask image does not need to be loaded, pass false to LoadMaskImage. The value of MaskImage will not be used. Passing false to LoadMaskImage saves the transparency mask as full white image, which represents full visibility of the layer.

When saving, if this is a valid image, then it should be of the same width and height as the corresponding layer image. It should also be an 8-bit grayscale image.

For more information, refer to FILE FORMATS SPECIFICATION from Adobe.

Example

For an example, refer to RasterCodecs.LoadPsdLayer and RasterCodecs.SavePsdWithLayers.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Codecs Assembly