Modifier and Type | Class and Description |
---|---|
class |
com.aspose.imaging.RasterCachedImage |
class |
RasterImage
Represents a raster image supporting raster graphics operations.
|
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(com.aspose.imaging.StreamContainer streamContainer,
ImageOptionsBase imageOptions,
int width,
int height) |
Image |
Image.getContainer()
Gets the
Image container. |
Image |
Graphics.getImage()
Gets the image.
|
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.
|
Image |
IImageLoader.load(com.aspose.imaging.StreamContainer streamContainer,
LoadOptions 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.
|
static Image |
Image.loadInternal_internalized(com.aspose.ms.System.IO.Stream stream) |
static Image |
Image.loadInternal_internalized(com.aspose.ms.System.IO.Stream stream,
LoadOptions loadOptions) |
Modifier and Type | Method and Description |
---|---|
boolean |
IImageExporterDescriptor.canExport(Image image,
ImageOptionsBase optionsBase) |
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 |
Image.setContainer_internalized(Image container)
Sets the
Image container. |
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
Aspose.Imaging.Image object associated with this 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 Image |
ImageExtensions.fromJava(BufferedImage image)
Converts the
BufferedImage to the PngImage . |
Modifier and Type | Method and Description |
---|---|
static com.aspose.ms.System.Drawing.Image |
ImageExtensions.toGdiImage(Image image)
Deprecated.
|
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.
|
Modifier and Type | Class and Description |
---|---|
class |
CadImage
Cad image class
|
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 | 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 | Class and Description |
---|---|
class |
EmfImage
Emf file format image.
|
class |
MetaImage
Base class for Meta object classes
|
Modifier and Type | Class and Description |
---|---|
class |
GifImage
A gif image.
|
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 |
EmfMetafileImage
Represents EMF metafile image.
|
class |
MetafileImage
Base class for both EMF and WMF metafile types.
|
class |
WmfMetafileImage
Represents WMF metafile image.
|
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 | Class and Description |
---|---|
class |
Layer
The psd layer.
|
class |
TextLayer
The text layer class
|
Modifier and Type | Class and Description |
---|---|
class |
TiffFrame
The tiff frame.
|
class |
TiffImage
The tiff image.
|
Modifier and Type | Class and Description |
---|---|
class |
WebPFrameBlock
Represents the webp blocks openers registry.
|
class |
WebPImage
A webp image.
|
Copyright (c) 2008-2016 Aspose Pty Ltd. All Rights Reserved.