com.spire.presentation.drawing
Interface IImageData


public interface IImageData


Method Summary
 java.lang.String getContentType()
          Gets a MIME type of an image, encoded in .
 byte[] getData()
          Gets the copy of an image's data.
 int getHeight()
          Gets a height of an image.
 java.awt.image.BufferedImage getImage()
          Gets the copy of an image.
 int getWidth()
          Gets a width of an image.
 int getX()
          Gets a X-offset of an image.
 int getY()
          Gets a Y-offset of an image.
 int hashCode()
          Gets the hash code of an image.
 

Method Detail

hashCode

int hashCode()
Gets the hash code of an image.

Overrides:
hashCode in class java.lang.Object
Returns:
Hash code.

getContentType

java.lang.String getContentType()
Gets a MIME type of an image, encoded in . Read-only .

Returns:

getData

byte[] getData()
Gets the copy of an image's data. Read-only [].

Returns:

getImage

java.awt.image.BufferedImage getImage()
Gets the copy of an image. Read-only .

Returns:
Throws:
java.lang.Exception

getWidth

int getWidth()
Gets a width of an image. Read-only .

Returns:
Throws:
java.lang.Exception

getHeight

int getHeight()
Gets a height of an image. Read-only .

Returns:
Throws:
java.lang.Exception

getX

int getX()
Gets a X-offset of an image. Read-only .

Returns:
Throws:
java.lang.Exception

getY

int getY()
Gets a Y-offset of an image. Read-only .

Returns:
Throws:
java.lang.Exception