Uses of Class
org.apache.xmlgraphics.image.loader.ImageInfo
Packages that use ImageInfo
Package
Description
Contains image loading and conversion infrastructure for various image
sources and an image cache.
Contains image caching infrastructure.
Contains implementations of image loaders and converters.
Contains an implementation of an image loader which uses ImageIO.
Provides an image loading and processing pipeline.
Defines service provider interfaces for the image infrastructure.
-
Uses of ImageInfo in org.apache.xmlgraphics.image.loader
Methods in org.apache.xmlgraphics.image.loader that return ImageInfoModifier and TypeMethodDescriptionImageManager.getImageInfo
(String uri, ImageSessionContext session) Returns an ImageInfo object containing its intrinsic size for a given URI.Image.getInfo()
Returns an object with basic information (URI, MIME type, intrinsic size) about the image.ImageManager.preloadImage
(String uri, Source src) Preloads an image, i.e.ImageManager.preloadImage
(String uri, ImageSessionContext session) Preloads an image, i.e.Methods in org.apache.xmlgraphics.image.loader with parameters of type ImageInfoModifier and TypeMethodDescriptionImageManager.getImage
(ImageInfo info, ImageFlavor[] flavors, Map hints, ImageSessionContext session) Loads an image.ImageManager.getImage
(ImageInfo info, ImageFlavor[] flavors, ImageSessionContext session) Loads an image with no hints.ImageManager.getImage
(ImageInfo info, ImageFlavor flavor, Map hints, ImageSessionContext session) Loads an image.ImageManager.getImage
(ImageInfo info, ImageFlavor flavor, ImageSessionContext session) Loads an image with no hints. -
Uses of ImageInfo in org.apache.xmlgraphics.image.loader.cache
Methods in org.apache.xmlgraphics.image.loader.cache that return ImageInfoModifier and TypeMethodDescriptionprotected ImageInfo
ImageCache.getImageInfo
(String uri) Returns an ImageInfo instance from the cache or null if none is found.ImageCache.needImageInfo
(String uri, ImageSessionContext session, ImageManager manager) Returns an ImageInfo instance for a given URI.Methods in org.apache.xmlgraphics.image.loader.cache with parameters of type ImageInfoModifier and TypeMethodDescriptionImageCache.getImage
(ImageInfo info, ImageFlavor flavor) Returns an image from the cache or null if it wasn't found.protected void
ImageCache.putImageInfo
(ImageInfo info) Registers an ImageInfo instance with the cache. -
Uses of ImageInfo in org.apache.xmlgraphics.image.loader.impl
Methods in org.apache.xmlgraphics.image.loader.impl that return ImageInfoModifier and TypeMethodDescriptionAbstractImage.getInfo()
Returns an object with basic information (URI, MIME type, intrinsic size) about the image.PreloaderBMP.preloadImage
(String uri, Source src, ImageContext context) "Preloads" an image, i.e.PreloaderEMF.preloadImage
(String uri, Source src, ImageContext context) "Preloads" an image, i.e.PreloaderEPS.preloadImage
(String uri, Source src, ImageContext context) "Preloads" an image, i.e.PreloaderGIF.preloadImage
(String uri, Source src, ImageContext context) "Preloads" an image, i.e.PreloaderJPEG.preloadImage
(String uri, Source src, ImageContext context) "Preloads" an image, i.e.PreloaderRawPNG.preloadImage
(String uri, Source src, ImageContext context) PreloaderTIFF.preloadImage
(String uri, Source src, ImageContext context) "Preloads" an image, i.e.Methods in org.apache.xmlgraphics.image.loader.impl with parameters of type ImageInfoModifier and TypeMethodDescriptionboolean
AbstractImageLoaderFactory.isSupported
(ImageInfo imageInfo) Indicates whether the given image (represented by anImageInfo
object) is supported by the loader.boolean
ImageLoaderFactoryRaw.isSupported
(ImageInfo imageInfo) boolean
ImageLoaderFactoryRawCCITTFax.isSupported
(ImageInfo imageInfo) Indicates whether the given image (represented by anImageInfo
object) is supported by the loader.AbstractImageLoader.loadImage
(ImageInfo info, ImageSessionContext session) Loads and returns an image.CompositeImageLoader.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.ImageLoaderEPS.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.ImageLoaderInternalTIFF.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.ImageLoaderPNG.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.ImageLoaderRaw.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.ImageLoaderRawCCITTFax.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.ImageLoaderRawJPEG.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.ImageLoaderRawPNG.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.Constructors in org.apache.xmlgraphics.image.loader.impl with parameters of type ImageInfoModifierConstructorDescriptionAbstractImage
(ImageInfo info) Main constructorImageBuffered
(ImageInfo info, BufferedImage buffered, Color transparentColor) Main constructor.ImageGraphics2D
(ImageInfo info, Graphics2DImagePainter painter) Main constructor.ImageRawCCITTFax
(ImageInfo info, InputStream in, int compression) Main constructor.ImageRawEPS
(ImageInfo info, InputStream in) Main constructor.ImageRawEPS
(ImageInfo info, ImageRawStream.InputStreamFactory streamFactory) Main constructor.ImageRawJPEG
(ImageInfo info, InputStream in, int sofType, ColorSpace colorSpace, ICC_Profile iccProfile, boolean invertImage) Main constructor.ImageRawPNG
(ImageInfo info, InputStream in, ColorModel colorModel, int bitDepth, ICC_Profile iccProfile) Main constructor.ImageRawStream
(ImageInfo info, ImageFlavor flavor, InputStream in) Constructor for a simple InputStream as parameter.ImageRawStream
(ImageInfo info, ImageFlavor flavor, ImageRawStream.InputStreamFactory streamFactory) Main constructor.ImageRendered
(ImageInfo info, RenderedImage red, Color transparentColor) Main constructor.ImageXMLDOM
(ImageInfo info, Document doc, String rootNamespace) Main constructor.ImageXMLDOM
(ImageInfo info, Document doc, XMLNamespaceEnabledImageFlavor flavor) Main constructor. -
Uses of ImageInfo in org.apache.xmlgraphics.image.loader.impl.imageio
Methods in org.apache.xmlgraphics.image.loader.impl.imageio that return ImageInfoModifier and TypeMethodDescriptionPreloaderImageIO.preloadImage
(String uri, Source src, ImageContext context) "Preloads" an image, i.e.Methods in org.apache.xmlgraphics.image.loader.impl.imageio with parameters of type ImageInfoModifier and TypeMethodDescriptionImageLoaderImageIO.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image. -
Uses of ImageInfo in org.apache.xmlgraphics.image.loader.pipeline
Methods in org.apache.xmlgraphics.image.loader.pipeline with parameters of type ImageInfoModifier and TypeMethodDescriptionPipelineFactory.determineCandidatePipelines
(ImageInfo imageInfo, ImageFlavor targetFlavor) Determines all possible pipelines for the given image that can produce the requested target flavor.PipelineFactory.determineCandidatePipelines
(ImageInfo imageInfo, ImageFlavor[] flavors) Finds and returns an array ofImageProviderPipeline
instances which can handle the given MIME type and return one of the givenImageFlavor
s.ImageProviderPipeline.execute
(ImageInfo info, Map hints, ImageSessionContext context) Executes the image converter pipeline.ImageProviderPipeline.execute
(ImageInfo info, Image originalImage, Map hints, ImageSessionContext context) Executes the image converter pipeline.PipelineFactory.newImageConverterPipeline
(ImageInfo imageInfo, ImageFlavor targetFlavor) Creates and returns anImageProviderPipeline
that allows to load an image of the given MIME type and present it in the requested image flavor. -
Uses of ImageInfo in org.apache.xmlgraphics.image.loader.spi
Methods in org.apache.xmlgraphics.image.loader.spi that return ImageInfoModifier and TypeMethodDescriptionImagePreloader.preloadImage
(String originalURI, Source src, ImageContext context) "Preloads" an image, i.e.Methods in org.apache.xmlgraphics.image.loader.spi with parameters of type ImageInfoModifier and TypeMethodDescriptionImageImplRegistry.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.ImageImplRegistry.getImageLoaderFactory
(ImageInfo imageInfo, ImageFlavor flavor) Returns the best ImageLoaderFactory supporting theImageInfo
and image flavor.boolean
ImageLoaderFactory.isSupported
(ImageInfo imageInfo) Indicates whether the given image (represented by anImageInfo
object) is supported by the loader.ImageLoader.loadImage
(ImageInfo info, Map hints, ImageSessionContext session) Loads and returns an image.ImageLoader.loadImage
(ImageInfo info, ImageSessionContext session) Loads and returns an image.