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.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.bmp |
The package handles Bmp file format processing.
|
com.aspose.imaging.fileformats.cdr |
The namespace handles Cdr file format processing.
|
com.aspose.imaging.fileformats.cmx |
The namespace 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 namespace 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.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.psd |
The package handles Psd file format processing.
|
com.aspose.imaging.fileformats.psd.layers |
The package contains PSD file format layers.
|
com.aspose.imaging.fileformats.psd.layers.adjustmentlayers | |
com.aspose.imaging.fileformats.psd.layers.filllayers |
The namespace contains Fill Layers
|
com.aspose.imaging.fileformats.svg |
The package handles SVG 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.masking.result |
The namespace handles ImageMasking.Result processing.
|
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(ImageOptionsBase imageOptions,
int width,
int height)
Creates a new image using the specified create options.
|
Image |
IImageCreator.create(StreamContainer streamContainer,
ImageOptionsBase imageOptions,
int width,
int height)
Creates a new image instance with
imageOptions . |
Image |
Image.getContainer()
Gets the
Image container. |
abstract Image |
VectorMultipageImage.getDefaultPage()
Gets the default page.
|
abstract Image |
RasterCachedMultipageImage.getDefaultPage()
Gets the default page.
|
Image |
IMultipageImage.getDefaultPage()
Gets the default page.
|
Image |
Graphics.getImage()
Gets the image.
|
abstract Image[] |
VectorMultipageImage.getPages()
Gets the pages.
|
abstract Image[] |
RasterCachedMultipageImage.getPages()
Gets the pages.
|
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.
|
static Image |
Image.load(String filePath,
LoadOptions loadOptions)
Loads a new image from the specified file.
|
Modifier and Type | Method and Description |
---|---|
com.aspose.ms.System.IAsyncResult |
PageExportingAction.beginInvoke(int pageIndex,
Image page,
com.aspose.ms.System.AsyncCallback callback,
Object state) |
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 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.
|
abstract 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. |
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
Aspose.Imaging.Brushes.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
Aspose.Imaging.Brushes.TextureBrush class that uses the specified image and bounding rectangle. |
TextureBrush(Image image,
RectangleF destinationRectangle)
Initializes a new instance of the
Aspose.Imaging.Brushes.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
Aspose.Imaging.Brushes.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 . |
static BufferedImage |
ImageExtensions.toJava(Image image,
Rectangle subImageRect)
Takes the subimage from
Image and converts to the BufferedImage . |
Modifier and Type | Class and Description |
---|---|
class |
BmpImage
A bmp image (supports BMP, DIB formats).
|
Modifier and Type | Class and Description |
---|---|
class |
CdrImage
The Cdr image.
|
class |
CdrImagePage
The Cdr image page
|
Modifier and Type | Method and Description |
---|---|
Image |
CdrImage.getDefaultPage()
Gets the default page.
|
Image[] |
CdrImage.getPages()
Gets the pages.
|
Modifier and Type | Class and Description |
---|---|
class |
CmxImage
The CMX image.
|
class |
CmxImagePage
The image of CMX page
|
Modifier and Type | Method and Description |
---|---|
Image |
CmxImage.getDefaultPage()
Gets the default page.
|
Image[] |
CmxImage.getPages()
Gets the pages.
|
Modifier and Type | Class and Description |
---|---|
class |
DicomImage
It is class of the implementation working with image from DICOM file
|
class |
DicomPage
It is class for work with DICOM files of the type multi frame
|
Modifier and Type | Method and Description |
---|---|
Image |
DicomImage.getDefaultPage()
Gets the default page.
|
Image[] |
DicomImage.getPages()
Gets the pages.
|
Modifier and Type | Class and Description |
---|---|
class |
DjvuImage
DjvuDocument class
|
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.getDefaultPage()
Gets the default page.
|
Image[] |
DjvuImage.getPages()
Gets the pages.
|
Modifier and Type | Class and Description |
---|---|
class |
DngImage
Dng image representation class
|
Modifier and Type | Class and Description |
---|---|
class |
EmfImage
EMF file format image.
|
class |
MetaImage
Base class for Meta object classes
|
Modifier and Type | Class and Description |
---|---|
class |
EpsBinaryImage
Class for Encapsulated PostScript format with binary header
|
class |
EpsImage
Base class for EPS format
|
class |
EpsInterchangeImage
Class for Encapsulated PostScript Interchange format
|
Modifier and Type | Class and Description |
---|---|
class |
GifImage
A gif image.
|
Modifier and Type | Method and Description |
---|---|
Image |
GifImage.getDefaultPage()
Gets the default page.
|
Image[] |
GifImage.getPages()
Gets the pages.
|
Modifier and Type | Class and Description |
---|---|
class |
GifFrameBlock
Gif frame block.
|
Modifier and Type | Class and Description |
---|---|
class |
JpegImage
A jpeg image.
|
Modifier and Type | Class and Description |
---|---|
class |
Jpeg2000Image
Jpeg2000 library main class
|
Modifier and Type | Class and Description |
---|---|
class |
OdgImage
The Open Document Graphic
|
class |
OdImage
The open document
|
class |
OtgImage
The Otg image
|
Modifier and Type | Method and Description |
---|---|
Image |
OdImage.getDefaultPage()
Gets the default page.
|
Image[] |
OtgImage.getPages()
Gets the pages.
|
Image[] |
OdgImage.getPages()
Gets the pages.
|
Modifier and Type | Class and Description |
---|---|
class |
PngImage
The new png image.
|
Modifier and Type | Class and Description |
---|---|
class |
PsdImage
A PSD image.
|
Modifier and Type | Method and Description |
---|---|
Image |
PsdImage.getDefaultPage()
Gets the default page.
|
Image[] |
PsdImage.getPages()
Gets the pages.
|
Modifier and Type | Class and Description |
---|---|
class |
Layer
The psd layer.
|
class |
LayerGroup
Group layer class
|
class |
TextLayer
The text layer class
|
Modifier and Type | Class and Description |
---|---|
class |
AdjustmentLayer
Adjustment layer.
|
class |
BrightnessContrastLayer
Brightness/contrast layer.
|
class |
ChannelMixerLayer
Channel Mixer Adjustment layer.
|
class |
CmykChannelMixerLayer
Cmyk Channel Mixer Adjustment layer.
|
class |
CurvesLayer
Curves Adjustment Layer
|
class |
ExposureLayer
Exposure Adjustment layer.
|
class |
HueSaturationLayer
HueSaturation adjustment layer.
|
class |
LevelsLayer
Levels Adjustment Layer
|
class |
PhotoFilterLayer
PhotoFilter adjustment layer.
|
class |
RgbChannelMixerLayer
Rgb Channel Mixer Adjustment layer.
|
Modifier and Type | Class and Description |
---|---|
class |
FillLayer
Fill layer.
|
Modifier and Type | Class and Description |
---|---|
class |
SvgImage
Represents SVG image class.
|
Modifier and Type | Class and Description |
---|---|
class |
TiffFrame
The tiff frame.
|
class |
TiffImage
The tiff image.
|
Modifier and Type | Method and Description |
---|---|
Image |
TiffImage.getDefaultPage()
Gets the default page.
|
Image[] |
TiffImage.getPages()
Gets the pages.
|
Modifier and Type | Class and Description |
---|---|
class |
WebPFrameBlock
Represents the webp blocks openers registry.
|
class |
WebPImage
A webp image.
|
Modifier and Type | Method and Description |
---|---|
Image |
WebPImage.getDefaultPage()
Gets the default page.
|
Image[] |
WebPImage.getPages() |
Modifier and Type | Class and Description |
---|---|
class |
WmfImage
The Wmf Image
|
Modifier and Type | Method and Description |
---|---|
abstract Image |
MaskingResult.getImage()
Provides result image.
|