Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.ydp.jai.ImageDecodeParam

Uses of ImageDecodeParam in org.ydp.jai
 

Subinterfaces of ImageDecodeParam in org.ydp.jai
 interface ImageEncodeParam
          An empty (marker) interface to be implemented by all image encoder parameter classes.
 

Classes in org.ydp.jai that implement ImageDecodeParam
 class PNGDecodeParam
          An instance of ImageDecodeParam for decoding images in the PNG format.
 class PNGEncodeParam
          An instance of ImageEncodeParam for encoding images in the PNG format.
static class PNGEncodeParam.Gray
           
static class PNGEncodeParam.Palette
           
static class PNGEncodeParam.RGB
           
 

Fields in org.ydp.jai declared as ImageDecodeParam
protected  ImageDecodeParam ImageDecoderImpl.param
          The ImageDecodeParam object associated with this ImageEncoder.
 

Methods in org.ydp.jai that return ImageDecodeParam
 ImageDecodeParam ImageDecoderImpl.getParam()
          Returns the current parameters as an instance of the ImageDecodeParam interface.
 ImageDecodeParam ImageDecoder.getParam()
          Returns the current parameters as an instance of the ImageDecodeParam interface.
 

Methods in org.ydp.jai with parameters of type ImageDecodeParam
protected  ImageDecoder PNGCodec.createImageDecoder(java.io.InputStream src, ImageDecodeParam param)
           
protected  ImageDecoder PNGCodec.createImageDecoder(java.io.File src, ImageDecodeParam param)
           
protected  ImageDecoder PNGCodec.createImageDecoder(SeekableStream src, ImageDecodeParam param)
           
 void ImageDecoderImpl.setParam(ImageDecodeParam param)
          Sets the current parameters to an instance of the ImageDecodeParam interface.
 void ImageDecoder.setParam(ImageDecodeParam param)
          Sets the current parameters to an instance of the ImageDecodeParam interface.
static ImageDecoder ImageCodec.createImageDecoder(java.lang.String name, java.io.InputStream src, ImageDecodeParam param)
          Returns an ImageDecoder object suitable for decoding from the supplied InputStream, using the supplied ImageDecodeParam object.
static ImageDecoder ImageCodec.createImageDecoder(java.lang.String name, java.io.File src, ImageDecodeParam param)
          Returns an ImageDecoder object suitable for decoding from the supplied File, using the supplied ImageDecodeParam object.
static ImageDecoder ImageCodec.createImageDecoder(java.lang.String name, SeekableStream src, ImageDecodeParam param)
          Returns an ImageDecoder object suitable for decoding from the supplied SeekableStream, using the supplied ImageDecodeParam object.
protected  ImageDecoder ImageCodec.createImageDecoder(java.io.InputStream src, ImageDecodeParam param)
          Returns an implementation of the ImageDecoder interface appropriate for that codec.
protected  ImageDecoder ImageCodec.createImageDecoder(java.io.File src, ImageDecodeParam param)
          Returns an implementation of the ImageDecoder interface appropriate for that codec.
protected abstract  ImageDecoder ImageCodec.createImageDecoder(SeekableStream src, ImageDecodeParam param)
          In a concrete subclass of ImageCodec, returns an implementation of the ImageDecoder interface appropriate for that codec.
 

Constructors in org.ydp.jai with parameters of type ImageDecodeParam
ImageDecoderImpl(SeekableStream input, ImageDecodeParam param)
          Constructs an ImageDecoderImpl with a given SeekableStream and ImageDecodeParam instance.
ImageDecoderImpl(java.io.InputStream input, ImageDecodeParam param)
          Constructs an ImageDecoderImpl with a given InputStream and ImageDecodeParam instance.