Interface PictureData

    • Method Detail

      • getContentType

        java.lang.String getContentType()
        Returns content type (mime type) of this picture.
        Returns:
        content type of this picture.
      • getData

        byte[] getData()
        Returns the binary data of this Picture
        Returns:
        picture data
      • setData

        void setData​(byte[] data)
              throws java.io.IOException
        Sets the binary picture data
        Parameters:
        data - picture data
        Throws:
        java.io.IOException
      • getChecksum

        byte[] getChecksum()
        Gets the checksum - the checksum can be of various length - mostly it's 8 (XSLF) or 16 (HSLF) bytes long.
        Returns:
        the checksum
      • getImageDimension

        java.awt.Dimension getImageDimension()
        Return the original image dimensions in points (for formats supported by BufferedImage). Will return a Dimension with a default width of 200x200 if the format unsupported.
      • getImageDimensionInPixels

        java.awt.Dimension getImageDimensionInPixels()
        Return the original image dimensions in pixels
        See Also:
        getImageDimension()