EmfEpsData

Inheritance: java.lang.Object, com.aspose.imaging.fileformats.emf.MetaObject, com.aspose.imaging.fileformats.emf.emf.objects.EmfObject

public final class EmfEpsData extends EmfObject

The EpsData object is a container for EPS data

Constructors

ConstructorDescription
EmfEpsData()

Methods

MethodDescription
getSizeData()Gets or sets a 32-bit unsigned integer that specifies the total size of this object, in bytes
setSizeData(int value)Gets or sets a 32-bit unsigned integer that specifies the total size of this object, in bytes
getVersion()Gets or sets a 32-bit unsigned integer that specifies the PostScript language level.
setVersion(int value)Gets or sets a 32-bit unsigned integer that specifies the PostScript language level.
getPoints()Gets or sets an array of three Point28_4 objects (section 2.2.23) that defines the coordinates of the output parallelogram using 28.4 bit FIX notation
setPoints(EmfPoint28To4[] value)Gets or sets an array of three Point28_4 objects (section 2.2.23) that defines the coordinates of the output parallelogram using 28.4 bit FIX notation
getPostScriptData()Gets or sets an array of bytes of PostScript data.
setPostScriptData(byte[] value)Gets or sets an array of bytes of PostScript data.

EmfEpsData()

public EmfEpsData()

getSizeData()

public int getSizeData()

Gets or sets a 32-bit unsigned integer that specifies the total size of this object, in bytes

Returns: int

setSizeData(int value)

public void setSizeData(int value)

Gets or sets a 32-bit unsigned integer that specifies the total size of this object, in bytes

Parameters:

ParameterTypeDescription
valueint

getVersion()

public int getVersion()

Gets or sets a 32-bit unsigned integer that specifies the PostScript language level. This value MUST be 0x00000001

Returns: int

setVersion(int value)

public void setVersion(int value)

Gets or sets a 32-bit unsigned integer that specifies the PostScript language level. This value MUST be 0x00000001

Parameters:

ParameterTypeDescription
valueint

getPoints()

public EmfPoint28To4[] getPoints()

Gets or sets an array of three Point28_4 objects (section 2.2.23) that defines the coordinates of the output parallelogram using 28.4 bit FIX notation

The upper-left corner of the parallelogram is the first point in this array, the upper-right corner is the second point, and the lower-left corner is the third point. The lower-right corner of the parallelogram is computed from the first three points (A, B, and C) by treating them as vectors.

Returns: com.aspose.imaging.fileformats.emf.emf.objects.EmfPoint28To4[]

setPoints(EmfPoint28To4[] value)

public void setPoints(EmfPoint28To4[] value)

Gets or sets an array of three Point28_4 objects (section 2.2.23) that defines the coordinates of the output parallelogram using 28.4 bit FIX notation

The upper-left corner of the parallelogram is the first point in this array, the upper-right corner is the second point, and the lower-left corner is the third point. The lower-right corner of the parallelogram is computed from the first three points (A, B, and C) by treating them as vectors.

Parameters:

ParameterTypeDescription
valueEmfPoint28To4[]

getPostScriptData()

public byte[] getPostScriptData()

Gets or sets an array of bytes of PostScript data. The length of this array can be computed from the SizeData field. This data MAY be used to render an image.

Returns: byte[]

setPostScriptData(byte[] value)

public void setPostScriptData(byte[] value)

Gets or sets an array of bytes of PostScript data. The length of this array can be computed from the SizeData field. This data MAY be used to render an image.

Parameters:

ParameterTypeDescription
valuebyte[]