FXidResource.FXidResource
Contents
[
Hide
]FXidResource constructor
Initializes a new instance of the FXidResource
class.
public FXidResource(int key, int version, FilterEffectMaskData[] filterEffectMasks)
Parameter | Type | Description |
---|---|---|
key | Int32 | The resource key. |
version | Int32 | The version. |
filterEffectMasks | FilterEffectMaskData[] | The filter effect masks. |
Examples
This example demonstrates how to get and set properties of the FXidResource resource.
[C#]
string inputFilePath = "psdnet414_3.psd";
string output = "out_psdnet414_3.psd";
int resLength = 1144;
int maskLength = 369;
void AssertAreEqual(object expected, object actual, string message = null)
{
if (!object.Equals(expected, actual))
{
throw new FormatException(message ?? "Objects are not equal.");
}
}
using (var psdImage = (PsdImage)Image.Load(inputFilePath))
{
FXidResource fXidResource = (FXidResource)psdImage.GlobalLayerResources[3];
AssertAreEqual(resLength, fXidResource.Length);
foreach (var maskData in fXidResource.FilterEffectMasks)
{
AssertAreEqual(maskLength, maskData.Length);
}
psdImage.Save(output);
}
// check after saving
using (var psdImage = (PsdImage)Image.Load(output))
{
FXidResource fXidResource = (FXidResource)psdImage.GlobalLayerResources[3];
AssertAreEqual(resLength, fXidResource.Length);
foreach (var maskData in fXidResource.FilterEffectMasks)
{
AssertAreEqual(maskLength, maskData.Length);
}
}
See Also
- class FilterEffectMaskData
- class FXidResource
- namespace Aspose.PSD.FileFormats.Psd.Layers.LayerResources
- assembly Aspose.PSD