CgEdResource

Inheritance: java.lang.Object, com.aspose.psd.fileformats.psd.layers.LayerResource, com.aspose.psd.fileformats.psd.layers.layerresources.AdjustmentLayerResource

public class CgEdResource extends AdjustmentLayerResource

Class CgEdResource. Content Generator Extra Data (Photoshop CS5)

Constructors

ConstructorDescription
CgEdResource()Initializes a new instance of the CgEdResource class.

Fields

FieldDescription
PsbHeaderVersion_internalizedThe PSB header version
PsbResourceSignatureThe PSB-specific resource signature.
PsdHeaderVersion_internalizedThe PSD header version
ResourceSignatureThe common resource signature.
TypeToolKeyThe type tool info key.
ventureLicense_internalizedThe venture license.

Methods

MethodDescription
checkAndSetIfResourceIsPsbSpecific_internalized(int key)Checks the and set if resource is PSB specific.
equals(Object arg0)
getAuto()Gets or sets a value indicating whether this CgEdResource is automatic.
getBrightness()Gets or sets the brightness.
getClass()
getContrast()Gets or sets the contrast.
getData()Gets or sets the data.
getHeader_internalized()Gets or sets the header.
getKey()Gets the layer resource key.
getLabColor()Gets or sets a value indicating whether [lab color] is used.
getLength()Gets the layer resource length in bytes.
getMeanValueForBrightnessAndContrast()Gets or sets the mean value for brightness and contrast.
getPrefixLength_internalized(int psdVersion)Gets the prefix length.
getPropertyValueByTypeStructure_internalized(String structureName)Gets the property value by type structure.
getPsdVersion()Gets the psd version.
getSignature()Gets the signature.
getUseLegacy()Gets or sets a value indicating whether [use legacy].
getVersion()Gets or sets the version.
hashCode()
isResourcePsbSpecificByKey_internalized(int key)Determines whether the resource is PSB specific.
isResourcePsbSpecific_internalized()Gets a value indicating whether this instance is resource PSB specific.
notify()
notifyAll()
save(StreamContainer streamContainer, int psdVersion)Saves the resource to the specified stream container.
saveCustomResourceHeader_internalized(StreamContainer streamContainer, int signature)Saves the custom resource header.
saveCustomResourceHeader_internalized(StreamContainer streamContainer, int signature, boolean isLengthLong)Saves the header signature, identifier and length.
setAuto(boolean value)Gets or sets a value indicating whether this CgEdResource is automatic.
setBrightness(int value)Gets or sets the brightness.
setContrast(int value)Gets or sets the contrast.
setHeader_internalized(PsdHeader value)Gets or sets the header.
setLabColor(boolean value)Gets or sets a value indicating whether [lab color] is used.
setMeanValueForBrightnessAndContrast(int value)Gets or sets the mean value for brightness and contrast.
setPropertyValueByTypeStructure_internalized(OSTypeStructure structure)Sets the property value by type structure.
setUseLegacy(boolean value)Gets or sets a value indicating whether [use legacy].
setVersion(int value)Gets or sets the version.
toString()Returns a String that represents this instance.
wait()
wait(long arg0)
wait(long arg0, int arg1)

CgEdResource()

public CgEdResource()

Initializes a new instance of the CgEdResource class. PSD format specification contains following description: 4 Descriptor Version( = 16) Variable Length Descriptor of extra data Suggestion: it may not be used in old versions of PS(Before CS5).

PsbHeaderVersion_internalized

public static final int PsbHeaderVersion_internalized

The PSB header version

PsbResourceSignature

public static final int PsbResourceSignature

The PSB-specific resource signature.

PsdHeaderVersion_internalized

public static final int PsdHeaderVersion_internalized

The PSD header version

ResourceSignature

public static final int ResourceSignature

The common resource signature.

TypeToolKey

public static final int TypeToolKey

The type tool info key.

ventureLicense_internalized

public Object ventureLicense_internalized

The venture license.

checkAndSetIfResourceIsPsbSpecific_internalized(int key)

public final void checkAndSetIfResourceIsPsbSpecific_internalized(int key)

Checks the and set if resource is PSB specific. Some resources are not recognized for now, but we have full list of PSB specific resources which changes their behaviour on save. So we need to check this in UnknownResource at least

Parameters:

ParameterTypeDescription
keyintThe key.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getAuto()

public final boolean getAuto()

Gets or sets a value indicating whether this CgEdResource is automatic.

Value: true if automatic; otherwise, false .

Returns: boolean

getBrightness()

public final int getBrightness()

Gets or sets the brightness.

Value: The brightness.

Returns: int

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getContrast()

public final int getContrast()

Gets or sets the contrast.

Value: The contrast.

Returns: int

getData()

public final byte[] getData()

Gets or sets the data.

Value: The data.

Returns: byte[]

getHeader_internalized()

public final PsdHeader getHeader_internalized()

Gets or sets the header.

Value: The header.

Returns: com.aspose.internal.fileformats.psd.sections.PsdHeader

getKey()

public int getKey()

Gets the layer resource key.

Returns: int

getLabColor()

public final boolean getLabColor()

Gets or sets a value indicating whether [lab color] is used.

Value: true if used [lab color]; otherwise, false .

Returns: boolean

getLength()

public int getLength()

Gets the layer resource length in bytes.

Returns: int

getMeanValueForBrightnessAndContrast()

public final int getMeanValueForBrightnessAndContrast()

Gets or sets the mean value for brightness and contrast.

Value: The mean value for brightness and contrast.

Returns: int

getPrefixLength_internalized(int psdVersion)

public final int getPrefixLength_internalized(int psdVersion)

Gets the prefix length. Default value is 12 for 8BIM resources. and 16 for 8B64

Parameters:

ParameterTypeDescription
psdVersionintThe PSD version.

Returns: int - The Prefix Length.

getPropertyValueByTypeStructure_internalized(String structureName)

public final Object getPropertyValueByTypeStructure_internalized(String structureName)

Gets the property value by type structure. Used only for UnitTests.

Parameters:

ParameterTypeDescription
structureNamejava.lang.StringName of the structure.

Returns: java.lang.Object - OSType structure for easy unit-testing

getPsdVersion()

public int getPsdVersion()

Gets the psd version.

Returns: int

getSignature()

public int getSignature()

Gets the signature.

Returns: int

getUseLegacy()

public final boolean getUseLegacy()

Gets or sets a value indicating whether [use legacy].

Value: true if [use legacy]; otherwise, false .

Returns: boolean

getVersion()

public final int getVersion()

Gets or sets the version.

Value: The version.

Returns: int

hashCode()

public native int hashCode()

Returns: int

isResourcePsbSpecificByKey_internalized(int key)

public static boolean isResourcePsbSpecificByKey_internalized(int key)

Determines whether the resource is PSB specific.

Parameters:

ParameterTypeDescription
keyintThe resource key.

Returns: boolean - true if the resource is PSB specific; otherwise, false .

isResourcePsbSpecific_internalized()

public final boolean isResourcePsbSpecific_internalized()

Gets a value indicating whether this instance is resource PSB specific.

Value: true if this instance is resource PSB specific; otherwise, false .

Returns: boolean

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

save(StreamContainer streamContainer, int psdVersion)

public void save(StreamContainer streamContainer, int psdVersion)

Saves the resource to the specified stream container.

Parameters:

ParameterTypeDescription
streamContainerStreamContainerThe stream container to save to.
psdVersionintThe PSD version.

saveCustomResourceHeader_internalized(StreamContainer streamContainer, int signature)

public final void saveCustomResourceHeader_internalized(StreamContainer streamContainer, int signature)

Saves the custom resource header.

Parameters:

ParameterTypeDescription
streamContainerStreamContainerThe stream container.
signatureintThe signature.

saveCustomResourceHeader_internalized(StreamContainer streamContainer, int signature, boolean isLengthLong)

public final void saveCustomResourceHeader_internalized(StreamContainer streamContainer, int signature, boolean isLengthLong)

Saves the header signature, identifier and length.

Parameters:

ParameterTypeDescription
streamContainerStreamContainerThe stream container.
signatureintThe signature.
isLengthLongbooleanif set to true length is long.

setAuto(boolean value)

public final void setAuto(boolean value)

Gets or sets a value indicating whether this CgEdResource is automatic.

Value: true if automatic; otherwise, false .

Parameters:

ParameterTypeDescription
valueboolean

setBrightness(int value)

public final void setBrightness(int value)

Gets or sets the brightness.

Value: The brightness.

Parameters:

ParameterTypeDescription
valueint

setContrast(int value)

public final void setContrast(int value)

Gets or sets the contrast.

Value: The contrast.

Parameters:

ParameterTypeDescription
valueint

setHeader_internalized(PsdHeader value)

public final void setHeader_internalized(PsdHeader value)

Gets or sets the header.

Value: The header.

Parameters:

ParameterTypeDescription
valuecom.aspose.internal.fileformats.psd.sections.PsdHeader

setLabColor(boolean value)

public final void setLabColor(boolean value)

Gets or sets a value indicating whether [lab color] is used.

Value: true if used [lab color]; otherwise, false .

Parameters:

ParameterTypeDescription
valueboolean

setMeanValueForBrightnessAndContrast(int value)

public final void setMeanValueForBrightnessAndContrast(int value)

Gets or sets the mean value for brightness and contrast.

Value: The mean value for brightness and contrast.

Parameters:

ParameterTypeDescription
valueint

setPropertyValueByTypeStructure_internalized(OSTypeStructure structure)

public final void setPropertyValueByTypeStructure_internalized(OSTypeStructure structure)

Sets the property value by type structure.

Parameters:

ParameterTypeDescription
structureOSTypeStructureThe structure.

setUseLegacy(boolean value)

public final void setUseLegacy(boolean value)

Gets or sets a value indicating whether [use legacy].

Value: true if [use legacy]; otherwise, false .

Parameters:

ParameterTypeDescription
valueboolean

setVersion(int value)

public final void setVersion(int value)

Gets or sets the version.

Value: The version.

Parameters:

ParameterTypeDescription
valueint

toString()

public String toString()

Returns a String that represents this instance.

Returns: java.lang.String - A String that represents this instance.

wait()

public final void wait()

wait(long arg0)

public final void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int