Modifier and Type | Class and Description |
---|---|
class |
RasterCachedImage
Represents a raster image supporting raster graphics operations.
|
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.
|
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. |
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(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 |
---|---|
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 (Graphics.getImage() ), 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 (Graphics.getImage() ) 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 (Graphics.getImage() ) at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Point point)
Draws the specified
Image (Graphics.getImage() ), 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 (Graphics.getImage() ), 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 (Graphics.getImage() ) at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rect)
Draws the specified
Image (Graphics.getImage() ) at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rectDestination,
int graphicsUnit)
Draws the specified
Image (Graphics.getImage() ) at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rectDestination,
int graphicsUnit,
ImageAttributes imageAttributes)
Draws the specified
Image (Graphics.getImage() ) at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
RectangleF rectSource,
RectangleF rectDestination,
int graphicsUnit)
Draws the specified
Image (Graphics.getImage() ) 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 (Graphics.getImage() ) at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Rectangle rectDestination,
int graphicsUnit)
Draws the specified
Image (Graphics.getImage() ) at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Rectangle rectDestination,
int graphicsUnit,
ImageAttributes imageAttributes)
Draws the specified
Image (Graphics.getImage() ) at the specified location and with the specified size. |
void |
Graphics.drawImage(Image sourceImage,
Rectangle rectSource,
Rectangle rectDestination,
int graphicsUnit)
Draws the specified
Image (Graphics.getImage() ) 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 (Graphics.getImage() ) 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.
|
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
Image object associated with this TextureBrush object. |
Constructor and Description |
---|
TextureBrush(Image image)
Initializes a new instance of the
TextureBrush class that uses the specified image. |
TextureBrush(Image image,
int wrapMode)
Initializes a new instance of the
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
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
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 Image |
ImageExtensions.toGdiImage(Image image)
Deprecated.
Please do not use this method as you may get OutOfMemoryException if image is too large for GDI to fit.
|
Modifier and Type | Class and Description |
---|---|
class |
AiImage
The Adobe Illustrator (AI) Image
|
Modifier and Type | Class and Description |
---|---|
class |
PsdImage
A PSD image.
|
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 |
BlackWhiteAdjustmentLayer
The Black and White adjustment layer class.
|
class |
BrightnessContrastLayer
Brightness/contrast layer.
|
class |
ChannelMixerLayer
Channel Mixer Adjustment layer.
|
class |
CmykChannelMixerLayer
Cmyk Channel Mixer Adjustment layer.
|
class |
ColorBalanceAdjustmentLayer
The color balance adjustment layer class.
|
class |
CurvesLayer
Curves Adjustment Layer
|
class |
ExposureLayer
Exposure Adjustment layer.
|
class |
HueSaturationLayer
HueSaturation adjustment layer.
|
class |
InvertAdjustmentLayer
The invert adjustment layer class.
|
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.
|
Copyright (c) 2008-2019 Aspose Pty Ltd. All Rights Reserved.