Uses of Interface
org.apache.xmlgraphics.image.loader.spi.ImageLoaderFactory
-
Packages that use ImageLoaderFactory Package Description org.apache.xmlgraphics.image.loader.impl Contains implementations of image loaders and converters.org.apache.xmlgraphics.image.loader.impl.imageio Contains an implementation of an image loader which uses ImageIO.org.apache.xmlgraphics.image.loader.spi Defines service provider interfaces for the image infrastructure. -
-
Uses of ImageLoaderFactory in org.apache.xmlgraphics.image.loader.impl
Classes in org.apache.xmlgraphics.image.loader.impl that implement ImageLoaderFactory Modifier and Type Class Description class
AbstractImageLoaderFactory
Abstract base class for ImageLoaderFactory implementations.class
ImageLoaderFactoryEPS
Factory class for the ImageLoader for EPS (Encapsulated PostScript) images.class
ImageLoaderFactoryInternalTIFF
Factory class for the ImageLoader for TIFF (based on Commons' internal TIFF codec).class
ImageLoaderFactoryPNG
class
ImageLoaderFactoryRaw
Factory class for the ImageLoader for raw/undecoded images.class
ImageLoaderFactoryRawCCITTFax
Factory class for the ImageLoader for raw/undecoded CCITT encoded images. -
Uses of ImageLoaderFactory in org.apache.xmlgraphics.image.loader.impl.imageio
Classes in org.apache.xmlgraphics.image.loader.impl.imageio that implement ImageLoaderFactory Modifier and Type Class Description class
ImageLoaderFactoryImageIO
Factory class for the ImageLoader based on ImageIO. -
Uses of ImageLoaderFactory in org.apache.xmlgraphics.image.loader.spi
Methods in org.apache.xmlgraphics.image.loader.spi that return ImageLoaderFactory Modifier and Type Method Description ImageLoaderFactory[]
ImageImplRegistry. getImageLoaderFactories(java.lang.String mime)
Returns an array of ImageLoaderFactory instances which support the given MIME type.ImageLoaderFactory[]
ImageImplRegistry. getImageLoaderFactories(ImageInfo imageInfo, ImageFlavor flavor)
Returns an array ofImageLoaderFactory
instances that support the MIME type indicated by anImageInfo
object and can generate the given image flavor.ImageLoaderFactory
ImageImplRegistry. getImageLoaderFactory(ImageInfo imageInfo, ImageFlavor flavor)
Returns the best ImageLoaderFactory supporting theImageInfo
and image flavor.Methods in org.apache.xmlgraphics.image.loader.spi with parameters of type ImageLoaderFactory Modifier and Type Method Description void
ImageImplRegistry. registerLoaderFactory(ImageLoaderFactory loaderFactory)
Registers a new ImageLoaderFactory.
-