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) for
ImageTranscoder
s.
For more information on service provider classes, see the class comment
for the IIORegistry
class.- See Also:
IIORegistry
,ImageTranscoder
-
Field Summary
-
Constructor Summary
Constructors Modifier Constructor Description protected
ImageTranscoderSpi()
Constructs a blankImageTranscoderSpi
.ImageTranscoderSpi(String vendorName, String version)
Constructs anImageTranscoderSpi
with a given set of values. -
Method Summary
Modifier and Type Method Description abstract ImageTranscoder
createTranscoderInstance()
Returns an instance of theImageTranscoder
implementation associated with this service provider.abstract String
getReaderServiceProviderName()
Returns the fully qualified class name of anImageReaderSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.abstract String
getWriterServiceProviderName()
Returns the fully qualified class name of anImageWriterSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.Methods declared in class javax.imageio.spi.IIOServiceProvider
getDescription, getVendorName, getVersion, onDeregistration, onRegistration
-
Constructor Details
-
ImageTranscoderSpi
protected 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. -
ImageTranscoderSpi
Constructs anImageTranscoderSpi
with a given set of values.- Parameters:
vendorName
- the vendor name.version
- a version identifier.
-
-
Method Details
-
getReaderServiceProviderName
Returns the fully qualified class name of anImageReaderSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.- Returns:
- a
String
containing the fully-qualified class name of theImageReaderSpi
implementation class. - See Also:
ImageReaderSpi
-
getWriterServiceProviderName
Returns the fully qualified class name of anImageWriterSpi
class that generatesIIOMetadata
objects that may be used as input to this transcoder.- Returns:
- a
String
containing the fully-qualified class name of theImageWriterSpi
implementation class. - See Also:
ImageWriterSpi
-
createTranscoderInstance
Returns an instance of theImageTranscoder
implementation associated with this service provider.- Returns:
- an
ImageTranscoder
instance.
-