Interface RMImageData.ImageReader

All Known Implementing Classes:
RMImageReader, RMPDFImageReader
Enclosing class:
RMImageData

public static interface RMImageData.ImageReader
An interface for classes that can handle image reading for RMImageData.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Reads basic image info (width, height, etc.) without parsing the whole image file, if possible.
    void
    Reads the image bytes decoded.
    readImage(RMImageData anImageData)
    Reads the image file as a buffered image.
  • Method Details

    • readBasicInfo

      void readBasicInfo(RMImageData anImageData)
      Reads basic image info (width, height, etc.) without parsing the whole image file, if possible.
    • readImage

      BufferedImage readImage(RMImageData anImageData)
      Reads the image file as a buffered image.
    • readBytesDecoded

      void readBytesDecoded()
      Reads the image bytes decoded.