On this page
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) for ImageTranscoders. For more information on service provider classes, see the class comment for the IIORegistry class.
- See Also:
IIORegistry,ImageTranscoder
Fields
Fields declared in class javax.imageio.spi.IIOServiceProvider
vendorName, version
Constructors
| Modifier | Constructor | Description |
|---|---|---|
protected |
ImageTranscoderSpi() |
Constructs a blank |
ImageTranscoderSpi(String vendorName, String version) |
Constructs an |
Methods
| Modifier and Type | Method | Description |
|---|---|---|
abstract ImageTranscoder |
createTranscoderInstance() |
Returns an instance of the |
abstract String |
getReaderServiceProviderName() |
Returns the fully qualified class name of an |
abstract String |
getWriterServiceProviderName() |
Returns the fully qualified class name of an |
Methods declared in class javax.imageio.spi.IIOServiceProvider
getDescription, getVendorName, getVersion, onDeregistration, onRegistration
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructors
ImageTranscoderSpi
protected ImageTranscoderSpi()
Constructs a blank ImageTranscoderSpi. 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
public ImageTranscoderSpi(String vendorName,
String version)
Constructs an ImageTranscoderSpi with a given set of values.
- Parameters:
vendorName- the vendor name.version- a version identifier.
Methods
getReaderServiceProviderName
public abstract String getReaderServiceProviderName()
Returns the fully qualified class name of an ImageReaderSpi class that generates IIOMetadata objects that may be used as input to this transcoder.
- Returns:
-
a
Stringcontaining the fully-qualified class name of theImageReaderSpiimplementation class. - See Also:
-
ImageReaderSpi
getWriterServiceProviderName
public abstract String getWriterServiceProviderName()
Returns the fully qualified class name of an ImageWriterSpi class that generates IIOMetadata objects that may be used as input to this transcoder.
- Returns:
-
a
Stringcontaining the fully-qualified class name of theImageWriterSpiimplementation class. - See Also:
-
ImageWriterSpi
createTranscoderInstance
public abstract ImageTranscoder createTranscoderInstance()
Returns an instance of the ImageTranscoder implementation associated with this service provider.
- Returns:
-
an
ImageTranscoderinstance.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/imageio/spi/ImageTranscoderSpi.html