| Package | Description |
|---|---|
| com.aspose.imaging |
The package is the core for nested packages and the most basic objects used for Aspose.Imaging processing.
|
| com.aspose.imaging.awt |
The package contains specific features for cooperating with java.awt.Graphic2D render.
|
| com.aspose.imaging.brushes |
The package provides helper classes and methods to work with different brush types.
|
| com.aspose.imaging.extensions |
The package contains extension methods.
|
| com.aspose.imaging.fileformats.apng |
The package handles Apng file format processing.
|
| com.aspose.imaging.fileformats.avif |
The package handling Avif file format processing.
|
| com.aspose.imaging.fileformats.bigtiff |
The package handling BigTiff file format processing.
|
| com.aspose.imaging.fileformats.bmp |
The package handles Bmp file format processing.
|
| com.aspose.imaging.fileformats.cdr |
The package handles Cdr file format processing.
|
| com.aspose.imaging.fileformats.cmx |
The package handles Tiff file format processing.
|
| com.aspose.imaging.fileformats.dicom |
The package handles Dicom file format processing
|
| com.aspose.imaging.fileformats.djvu |
The package contains djvu classes
|
| com.aspose.imaging.fileformats.dng |
The package contains DNG file format types
|
| com.aspose.imaging.fileformats.emf |
The package contains types [MS-EMF], [MS-EMFPLUS]
|
| com.aspose.imaging.fileformats.eps |
The package contains EPS format type
|
| com.aspose.imaging.fileformats.gif |
The package handles Gif file format processing.
|
| com.aspose.imaging.fileformats.gif.blocks |
The package contains Gif file format entities.
|
| com.aspose.imaging.fileformats.ico |
The package handling ICO file format processing.
|
| com.aspose.imaging.fileformats.jpeg |
The package handles Jpeg file format processing.
|
| com.aspose.imaging.fileformats.jpeg2000 |
The package handles Jpeg2000 file format processing.
|
| com.aspose.imaging.fileformats.opendocument |
The Open document graphic objects
|
| com.aspose.imaging.fileformats.png |
The package handles Png file format processing.
|
| com.aspose.imaging.fileformats.svg |
The package handles SVG file format processing.
|
| com.aspose.imaging.fileformats.tga |
The package handles Tga file format processing.
|
| com.aspose.imaging.fileformats.tiff |
The package handles Tiff file format processing.
|
| com.aspose.imaging.fileformats.webp |
The package handles WebP file format processing.
|
| com.aspose.imaging.fileformats.wmf |
The package handles WMF file format processing.
|
| com.aspose.imaging.imageoptions |
The package contains classes suitable for export, save or creation of different file formats.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RasterCachedImage
Represents a raster image supporting raster graphics operations.
|
class |
RasterCachedMultipageImage
The raster multipage image
|
class |
RasterImage
Represents a raster image supporting raster graphics operations.
|
class |
VectorImage
The vector image is the base class for all type of vector images.
|
class |
VectorMultipageImage
The Vector multipage image
|
| Modifier and Type | Method and Description |
|---|---|
static Image |
Image.create(Image[] images)
Creates a new image using the specified images as pages
|
static Image |
Image.create(Image[] images,
boolean disposeImages)
Creates a new image the specified images as pages.
|
static Image |
Image.create(ImageOptionsBase imageOptions,
int width,
int height)
Creates a new image using the specified create options.
|
static Image |
Image.create(ImageOptionsBase imageOptions,
int width,
int height,
int[] pixels)
Creates a
RasterImage instance from the provided pixel array. |
static Image |
Image.create(MultipageCreateOptions multipageCreateOptions)
Creates the specified multipage create options.
|
Image |
IImageCreator.create(StreamContainer streamContainer,
ImageOptionsBase imageOptions,
int width,
int height)
Creates a new image instance with
imageOptions. |
static Image |
Image.create(String[] files)
Creates the multipage image containing the specified files.
|
static Image |
Image.create(String[] files,
boolean throwExceptionOnLoadError)
Creates the multipage image containing the specified files.
|
Image |
Image.getContainer()
Gets the
Image container. |
abstract Image |
VectorMultipageImage.getDefaultPage()
Deprecated.
Please use Pages[n]
|
Image |
Graphics.getImage()
Gets the image.
|
Image |
EmbeddedImage.getImage()
Gets the image.
|
Image[] |
IMultipageImage.getPages()
Gets the pages.
|
static Image |
Image.load(InputStream stream)
Loads a new image from the specified stream.
|
static Image |
Image.load(InputStream stream,
LoadOptions loadOptions)
Loads a new image from the specified stream.
|
static Image |
Image.load(RandomAccessFile file)
Loads a new image from the specified stream.
|
static Image |
Image.load(RandomAccessFile file,
LoadOptions loadOptions)
Loads a new image from the specified stream.
|
Image |
IImageLoader.load(StreamContainer streamContainer,
LoadOptions loadOptions)
Opens a new image with
loadOptions. |
static Image |
Image.load(String filePath)
Loads a new image from the specified file path or URL.
|
static Image |
Image.load(String filePath,
LoadOptions loadOptions)
Loads a new image from the specified file path or URL.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
IImageExporterDescriptor.canExport(Image image,
ImageOptionsBase optionsBase)
Determines whether image exporter can export the specified image to the specified image format specified by save options.
|
static Image |
Image.create(Image[] images)
Creates a new image using the specified images as pages
|
static Image |
Image.create(Image[] images,
boolean disposeImages)
Creates a new image the specified images as pages.
|
static IImageExporter |
ImageExportersRegistry.createFirstSupportedExporter(Image image,
ImageOptionsBase options)
Creates the first found exporter suitable for the specified save options and image.
|
void |
Graphics.drawImage(Image sourceImage,
float x,
float y)
Draws the specified
Image, using its original physical size, at the specified location. |
void |
Graphics.drawImage(Image sourceImage,
float x,
float y,
float width,
float height)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
int x,
int y)
Draws the specified image, using its original physical size, at the location specified by a coordinate pair.
|
void |
Graphics.drawImage(Image sourceImage,
int x,
int y,
int width,
int height)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Point point)
Draws the specified
Image, using its original physical size, at the specified location. |
void |
Graphics.drawImage(Image image,
Point[] destPoints)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
Point[] destPoints,
Rectangle srcRect)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
Point[] destPoints,
Rectangle srcRect,
int srcUnit)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
Point[] destPoints,
Rectangle srcRect,
int srcUnit,
ImageAttributes imageAttributes)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
PointF point)
Draws the specified
Image, using its original physical size, at the specified location. |
void |
Graphics.drawImage(Image image,
PointF[] destPoints)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
PointF[] destPoints,
RectangleF srcRect)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
PointF[] destPoints,
RectangleF srcRect,
int srcUnit)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
PointF[] destPoints,
RectangleF srcRect,
int srcUnit,
ImageAttributes imageAttributes)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Rectangle rect)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rect)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rectDestination,
int graphicsUnit)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rectDestination,
int graphicsUnit,
ImageAttributes imageAttributes)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rectSource,
RectangleF rectDestination,
int graphicsUnit)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rectSource,
RectangleF rectDestination,
int graphicsUnit,
ImageAttributes imageAttributes)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Rectangle rectDestination,
int graphicsUnit)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Rectangle rectDestination,
int graphicsUnit,
ImageAttributes imageAttributes)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Rectangle rectSource,
Rectangle rectDestination,
int graphicsUnit)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Rectangle rectSource,
Rectangle rectDestination,
int graphicsUnit,
ImageAttributes imageAttributes)
Draws the specified
Image at the specified location and with the specified size. |
void |
Graphics.drawImageUnscaled(Image sourceImage,
int x,
int y)
Draws the specified image using its original physical size at the location specified by a coordinate pair.
|
void |
Graphics.drawImageUnscaled(Image sourceImage,
int x,
int y,
int width,
int height)
Draws a specified image using its original physical size at a specified location.
|
void |
Graphics.drawImageUnscaled(Image sourceImage,
Point point)
Draws a specified image using its original physical size at a specified location.
|
void |
Graphics.drawImageUnscaled(Image sourceImage,
Rectangle rect)
Draws a specified image using its original physical size at a specified location.
|
void |
Graphics.drawImageUnscaledAndClipped(Image sourceImage,
Rectangle rect)
Draws the specified image without scaling and clips it, if necessary, to fit in the specified rectangle.
|
void |
IImageExporter.export(Image image,
OutputStream stream,
ImageOptionsBase optionsBase)
Exports the specified image data into specified data format.
|
void |
IImageExporter.export(Image image,
OutputStream stream,
ImageOptionsBase optionsBase,
Rectangle boundsRectangle)
Exports the specified image data into specified data format.
|
static IImageExporterDescriptor |
ImageExportersRegistry.getFirstSupportedDescriptor(Image image,
ImageOptionsBase options)
Gets the fist found supported descriptor suitable for the specified save options and image.
|
void |
PageExportingAction.invoke(int pageIndex,
Image page)
Delegate for firing before page is exported
|
| Constructor and Description |
|---|
Graphics(Image sourceImage)
Initializes a new instance of the
Graphics class. |
| Constructor and Description |
|---|
GraphicsRenderer(Image image)
Creates a new render.
|
GraphicsRenderer(Image image,
Color backgroundColor,
int smoothingMode,
int textRendering)
Creates a new render.
|
GraphicsRenderer(Image image,
ImageOptionsBase exportOptions)
Creates a new render.
|
| Modifier and Type | Method and Description |
|---|---|
Image |
TextureBrush.getImage()
Gets the
com.aspose.imaging.Image object associated with this com.aspose.imaging.brushes.TextureBrush object. |
| Constructor and Description |
|---|
TextureBrush(Image image)
Initializes a new instance of the
Aspose.Imaging.Brushes.TextureBrush class that uses the specified image. |
TextureBrush(Image image,
int wrapMode)
Initializes a new instance of the
Aspose.Imaging.Brushes.TextureBrush class that uses the specified image and wrap mode. |
TextureBrush(Image image,
int wrapMode,
Rectangle destinationRectangle)
Initializes a new instance of the
TextureBrush class that uses the specified image, wrap mode, and bounding rectangle. |
TextureBrush(Image image,
int wrapMode,
RectangleF destinationRectangle)
Initializes a new instance of the
Aspose.Imaging.Brushes.TextureBrush class that uses the specified image, wrap mode, and bounding rectangle. |
TextureBrush(Image image,
Rectangle destinationRectangle)
Initializes a new instance of the
TextureBrush class that uses the specified image and bounding rectangle. |
TextureBrush(Image image,
RectangleF destinationRectangle)
Initializes a new instance of the
TextureBrush class that uses the specified image and bounding rectangle. |
TextureBrush(Image image,
RectangleF destinationRectangle,
ImageAttributes imageAttributes)
Initializes a new instance of the
Aspose.Imaging.Brushes.TextureBrush class that uses the specified image, bounding rectangle, and image attributes. |
TextureBrush(Image image,
Rectangle destinationRectangle,
ImageAttributes imageAttributes)
Initializes a new instance of the
TextureBrush class that uses the specified image, bounding rectangle, and image attributes. |
| Modifier and Type | Method and Description |
|---|---|
static BufferedImage |
ImageExtensions.toJava(Image image)
Converts the
Image to the BufferedImage with TYPE_INT_ARGB. |
static BufferedImage |
ImageExtensions.toJava(Image image,
int bufferedImageType)
Converts the
Image to the BufferedImage with bufferedImageType. |
static BufferedImage |
ImageExtensions.toJava(Image image,
Rectangle subImageRect)
Takes the subimage from
Image and converts to the BufferedImage with BufferedImage.TYPE_INT_ARGB. |
static BufferedImage |
ImageExtensions.toJava(Image image,
Rectangle subImageRect,
BufferedImage dstImage)
Takes the subimage from
Image and converts to the BufferedImage with bufferedImageType. |
static BufferedImage |
ImageExtensions.toJava(Image image,
Rectangle subImageRect,
int bufferedImageType)
Takes the subimage from
Image and converts to the BufferedImage with bufferedImageType. |
| Modifier and Type | Class and Description |
|---|---|
class |
ApngFrame
Craft animated PNG (APNG) image frames from single-page raster images with our API.
|
class |
ApngImage
The API for Animated PNG (Animated Portable Network Graphics) image file
format is a versatile solution for developers looking to integrate
animated content into their applications.
|
| Modifier and Type | Method and Description |
|---|---|
Image[] |
ApngImage.getPages()
Effortlessly access the pages of your image with this convenient property.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AvifImage
The Avif image.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BigTiffImage
With the
BigTiffImage class you can effortlessly manipulate
BigTiff image format files. |
| Modifier and Type | Class and Description |
|---|---|
class |
BmpImage
You can effortlessly handle Bitmap (BMP) and Device Independent Bitmap
(DIB) files, facilitating efficient manipulation and processing of raster
images.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CdrImage
The API for CorelDRAW CDR vector image format support is an essential toolkit
for developers working with vector graphics.
|
class |
CdrImagePage
The Cdr image page
|
| Modifier and Type | Method and Description |
|---|---|
Image |
CdrImage.getDefaultPage()
Deprecated.
Please use getPages()[index]
|
Image[] |
CdrImage.getPages()
Retrieve the pages of the image seamlessly with this intuitive property.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CmxImage
The API for Corel Metafile Exchange (CMX) vector image format with metadata
descriptions support is a comprehensive solution for developers working
with CMX files.
|
class |
CmxImagePage
The image of CMX page
|
| Modifier and Type | Method and Description |
|---|---|
Image |
CmxImage.getDefaultPage()
Deprecated.
Please use getPages()[index]
|
Image[] |
CmxImage.getPages()
Retrieve the pages of the image seamlessly with this intuitive property.
|
| Constructor and Description |
|---|
CmxImagePage(CmxPage cmxPage,
Image container)
Initializes a new instance of the
CmxImagePage class. |
| Modifier and Type | Class and Description |
|---|---|
class |
DicomImage
This Class implements Digital Imaging and Communications in Medicine
(DICOM) raster image format support and offers a comprehensive solution for
processing DICOM images with precision and flexibility.
|
class |
DicomPage
It is class for work with DICOM files of the type multi frame
|
| Modifier and Type | Method and Description |
|---|---|
Image[] |
DicomImage.getPages()
Access the pages of the image with this intuitive property.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DjvuImage
DjVu document class supports graphics file format and facilitates seamless
management of scanned documents and books, integrating text, drawings, images,
and photos into a single format.
|
class |
DjvuPage
Djvu page class
|
class |
DjvuRaster
Class for representing Djvu raster image where located result of some operation
|
| Modifier and Type | Method and Description |
|---|---|
Image[] |
DjvuImage.getPages()
Access the individual pages of your DjVu image collection with this property.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DngImage
The API for processing DNG (Digital Negative) image file format used for digital
photography needs by providing comprehensive support for raw files and metadata.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EmfImage
The API for Enhanced Metafile Format (EMF) vector image format support is
a comprehensive tool for processing graphical images in a device-independent
manner while preserving their original properties.
|
class |
MetaImage
Base class for Meta object classes
|
| Modifier and Type | Class and Description |
|---|---|
class |
EpsImage
The API for Encapsulated PostScript (EPS) image file format support offers
robust capabilities for manipulating compositions comprising text, graphics,
and images.
|
| Modifier and Type | Method and Description |
|---|---|
Image |
EpsImage.getPreviewImage()
Retrieves the existing preview image in the specified
format or
returns if none is found. |
Image |
EpsImage.getPreviewImage(long format)
Retrieves the existing preview image in the specified
format or
returns if none is found. |
Image[] |
EpsImage.getPreviewImages()
Retrieve the preview images associated with your file.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable<Image> |
EpsImage.getPreviewImagesIter()
Accesses the preview images linked to the
EpsImage instance, allowing
seamless retrieval for inspection or utilization in applications. |
| Modifier and Type | Class and Description |
|---|---|
class |
GifImage
The API for Graphical Interchange Format (GIF) image file provides
developers with versatile tools for processing compressed raster images and
animated GIFs.
|
| Modifier and Type | Method and Description |
|---|---|
Image[] |
GifImage.getPages()
Gain access to the pages within the image through this convenient property,
allowing seamless navigation and manipulation of individual pages as needed.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GifFrameBlock
Gif frame block.
|
| Modifier and Type | Class and Description |
|---|---|
class |
IcoImage
Effortlessly manipulate ICO image files with our API, supporting various file
formats and frame types including PNG and BMP.
|
| Modifier and Type | Method and Description |
|---|---|
Image[] |
IcoImage.getPages()
Retrieve comprehensive information about the document's pages effortlessly through
this property.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IcoImage.addPage(Image page)
Enrich your ICO image effortlessly by inserting an image page entry using the default
settings from
IcoOptions. |
void |
IcoImage.addPage(Image page,
IcoOptions icoOptions)
Diversify your ICO image effortlessly by integrating an image entry tailored to
your needs with the specified
IcoOptions. |
| Constructor and Description |
|---|
IcoImage(Image image,
IcoOptions icoOptions)
Crafted for simplicity and efficiency, the
IcoImage class empowers
you to create ICO images with ease. |
| Modifier and Type | Class and Description |
|---|---|
class |
JpegImage
Efficiently manipulate JPEG raster images with our API, offering support
for various color profiles such as RGB and CMYK, customizable bits per pixel
resolution, and processing of EXIF, JFIF, and XMP metadata containers.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Jpeg2000Image
Efficiently manipulate JPEG2000 (JP2) image files with our API, supporting
a range of bits per pixel depths and seamless processing of XMP metadata
containing essential image information.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OdgImage
Manipulate OpenDocument Graphic (ODG) vector image file format with our API, widely
used by OpenOffice and LibreOffice Draw applications for storing drawing elements in
a vector format.
|
class |
OdImage
The open document
|
class |
OtgImage
Process OpenDocument Template (OTG) drawing image files with our API, leveraging
the OpenDocument XML format with Graphics Content for seamless manipulation.
|
| Modifier and Type | Method and Description |
|---|---|
Image |
OdImage.getDefaultPage()
Deprecated.
Please use getPages()[index]
|
Image[] |
OtgImage.getPages()
Retrieves the collection of pages associated with the image, enabling software
developers to access and manipulate each individual page efficiently.
|
Image[] |
OdgImage.getPages()
Retrieving the collection of pages, this property empowers to access the entirety
of pages associated with an image.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PngImage
Manipulate Portable Network Graphics (PNG) raster images with our versatile API,
featuring support for compression levels and various color depths including
Grayscale, Indexed Color, TrueColor, and alpha channels.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SvgImage
Manipulate Scalar Vector Graphics (SVG) image files with our API, utilizing
the power of XML-based text format for seamless customization and scalability.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TgaImage
Manipulate TGA raster image files with our API, tailored for the TARGA
(Truevision Advanced Raster Adapter) format, enabling seamless loading and
customization.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TiffFrame
The tiff frame.
|
class |
TiffImage
Process Tagged Image File Format (TIFF) raster images with our API, offering
comprehensive support for various resolutions and advanced editing capabilities
like EXIF data manipulation and alpha channels.
|
| Modifier and Type | Method and Description |
|---|---|
Image[] |
TiffImage.getPages()
Access the pages of the document seamlessly, enabling dynamic navigation and
manipulation within the content structure.
|
| Modifier and Type | Class and Description |
|---|---|
class |
WebPFrameBlock
Represents the webp blocks openers registry.
|
class |
WebPImage
Manipulate WebP raster images with our API, using its modern features for both
lossless and lossy compression, ensuring optimal image quality with reduced file sizes.
|
| Modifier and Type | Method and Description |
|---|---|
Image[] |
WebPImage.getPages()
Access the WebP blocks within the image, allowing detailed examination or
manipulation of the underlying block structure.
|
| Modifier and Type | Class and Description |
|---|---|
class |
WmfImage
Manipulate Microsoft Windows Metafile (WMF) images with our API, seamlessly
handling both vector and bitmap data stored within variable-length records.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AfterPageExportAction.invoke(int pageNumber,
Image image)
After page export action
|
void |
BeforePageExportAction.invoke(int pageNumber,
Image[] image)
Before page export action
|
Copyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.