- java.lang.Object
- 
- javax.imageio.spi.IIOServiceProvider
- 
- javax.imageio.spi.ImageTranscoderSpi
 
 
- 
- All Implemented Interfaces:
- RegisterableService
 
 public abstract class ImageTranscoderSpi extends IIOServiceProvider The service provider interface (SPI) forImageTranscoders. For more information on service provider classes, see the class comment for theIIORegistryclass.- See Also:
- IIORegistry,- ImageTranscoder
 
- 
- 
Field Summary- 
Fields declared in class javax.imageio.spi.IIOServiceProvidervendorName, version
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedImageTranscoderSpi()Constructs a blankImageTranscoderSpi.ImageTranscoderSpi(String vendorName, String version)Constructs anImageTranscoderSpiwith a given set of values.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract ImageTranscodercreateTranscoderInstance()Returns an instance of theImageTranscoderimplementation associated with this service provider.abstract StringgetReaderServiceProviderName()Returns the fully qualified class name of anImageReaderSpiclass that generatesIIOMetadataobjects that may be used as input to this transcoder.abstract StringgetWriterServiceProviderName()Returns the fully qualified class name of anImageWriterSpiclass that generatesIIOMetadataobjects that may be used as input to this transcoder.- 
Methods declared in class javax.imageio.spi.IIOServiceProvidergetDescription, getVendorName, getVersion, onDeregistration, onRegistration
 
- 
 
- 
- 
- 
Method Detail- 
getReaderServiceProviderNamepublic abstract String getReaderServiceProviderName() Returns the fully qualified class name of anImageReaderSpiclass that generatesIIOMetadataobjects that may be used as input to this transcoder.- Returns:
- a Stringcontaining the fully-qualified class name of theImageReaderSpiimplementation class.
- See Also:
- ImageReaderSpi
 
 - 
getWriterServiceProviderNamepublic abstract String getWriterServiceProviderName() Returns the fully qualified class name of anImageWriterSpiclass that generatesIIOMetadataobjects that may be used as input to this transcoder.- Returns:
- a Stringcontaining the fully-qualified class name of theImageWriterSpiimplementation class.
- See Also:
- ImageWriterSpi
 
 - 
createTranscoderInstancepublic abstract ImageTranscoder createTranscoderInstance() Returns an instance of theImageTranscoderimplementation associated with this service provider.- Returns:
- an ImageTranscoderinstance.
 
 
- 
 
-