java.lang.Object
javax.imageio.spi.IIOServiceProvider
javax.imageio.spi.ImageTranscoderSpi
- All Implemented Interfaces:
- RegisterableService
The service provider interface (SPI) for 
ImageTranscoders.
 For more information on service provider classes, see the class comment
 for the IIORegistry class.- See Also:
- 
Field SummaryFields declared in class javax.imageio.spi.IIOServiceProvidervendorName, version
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedConstructs a blankImageTranscoderSpi.ImageTranscoderSpi(String vendorName, String version) Constructs anImageTranscoderSpiwith a given set of values.
- 
Method SummaryModifier and TypeMethodDescriptionabstract ImageTranscoderReturns an instance of theImageTranscoderimplementation associated with this service provider.abstract StringReturns the fully qualified class name of anImageReaderSpiclass that generatesIIOMetadataobjects that may be used as input to this transcoder.abstract StringReturns 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
- 
Constructor Details- 
ImageTranscoderSpiprotected ImageTranscoderSpi()Constructs a blankImageTranscoderSpi. It is up to the subclass to initialize instance variables and/or override method implementations in order to provide working versions of all methods.
- 
ImageTranscoderSpiConstructs anImageTranscoderSpiwith a given set of values.- Parameters:
- vendorName- the vendor name.
- version- a version identifier.
 
 
- 
- 
Method Details- 
getReaderServiceProviderNameReturns 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:
 
- 
getWriterServiceProviderNameReturns 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:
 
- 
createTranscoderInstanceReturns an instance of theImageTranscoderimplementation associated with this service provider.- Returns:
- an ImageTranscoderinstance.
 
 
-