javax.imageio.spi
Class ImageTranscoderSpi
- 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) forImageTranscoder
s. For more information on service provider classes, see the class comment for theIIORegistry
class.- See Also:
-
IIORegistry
,ImageTranscoder
-
-
Field Summary
-
Fields inherited from class javax.imageio.spi.IIOServiceProvider
vendorName, version
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
ImageTranscoderSpi()
Constructs a blankImageTranscoderSpi
.ImageTranscoderSpi(String vendorName, String version)
Constructs anImageTranscoderSpi
with a given set of values.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and 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 inherited from class javax.imageio.spi.IIOServiceProvider
getDescription, getVendorName, getVersion, onDeregistration, onRegistration
-
-
-
-
Constructor Detail
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.
-
Method Detail
getReaderServiceProviderName
public abstract String 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
public abstract String 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
public abstract ImageTranscoder createTranscoderInstance()
Returns an instance of theImageTranscoder
implementation associated with this service provider.- Returns:
-
an
ImageTranscoder
instance.
-
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.