Package | Description |
---|---|
com.aspose.imaging | |
com.aspose.imaging.brushes | |
com.aspose.imaging.extensions |
Modifier and Type | Method and Description |
---|---|
static Point |
Point.add(Point point,
Size size)
Adds the specified
Aspose.Imaging.Size to the specified Aspose.Imaging.Point . |
static Point |
Point.ceiling(PointF point)
Converts the specified
Aspose.Imaging.PointF to a Aspose.Imaging.Point by rounding the values of the Aspose.Imaging.PointF to the next higher integer values. |
Point |
Point.Clone() |
static Point |
Point.getEmpty()
Gets a new instance of the
Aspose.Imaging.Point structure that has Aspose.Imaging.Point.X and Aspose.Imaging.Point.Y values set to zero. |
Point |
Rectangle.getLocation()
Gets or sets the coordinates of the upper-left corner of this
Aspose.Imaging.Rectangle structure. |
static Point |
Point.op_Addition(Point point,
Size size)
Translates a
Aspose.Imaging.Point by a given Aspose.Imaging.Size . |
static Point |
Point.op_Subtraction(Point point,
Size size)
Translates a
Aspose.Imaging.Point by the negative of a given Aspose.Imaging.Size . |
static Point |
Point.round(PointF point)
Converts the specified
Aspose.Imaging.PointF to a Aspose.Imaging.Point object by rounding the Aspose.Imaging.Point values to the nearest integer. |
static Point |
Point.subtract(Point point,
Size size)
Returns the result of subtracting specified
Aspose.Imaging.Size from the specified Aspose.Imaging.Point . |
static Point |
Size.to_Point(Size size)
Converts the specified
Aspose.Imaging.Size to a Aspose.Imaging.Point . |
static Point |
Point.truncate(PointF point)
Converts the specified
Aspose.Imaging.PointF to a Aspose.Imaging.Point by truncating the values of the Aspose.Imaging.Point . |
Modifier and Type | Method and Description |
---|---|
static Point |
Point.add(Point point,
Size size)
Adds the specified
Aspose.Imaging.Size to the specified Aspose.Imaging.Point . |
void |
Point.CloneTo(Point that) |
boolean |
Rectangle.contains(Point point)
Determines if the specified point is contained within this
Aspose.Imaging.Rectangle structure. |
void |
Graphics.drawBezier(Pen pen,
Point pt1,
Point pt2,
Point pt3,
Point pt4)
Draws a Bézier spline defined by four
Point structures. |
void |
Graphics.drawBeziers(Pen pen,
Point[] points)
Draws a series of Bézier splines from an array of
Point structures. |
void |
Graphics.drawClosedCurve(Pen pen,
Point[] points)
Draws a closed cardinal spline defined by an array of
Point structures. |
void |
Graphics.drawClosedCurve(Pen pen,
Point[] points,
float tension)
Draws a closed cardinal spline defined by an array of
Point structures using a specified tension. |
void |
Graphics.drawCurve(Pen pen,
Point[] points)
Draws a cardinal spline through a specified array of
Point structures. |
void |
Graphics.drawCurve(Pen pen,
Point[] points,
float tension)
Draws a cardinal spline through a specified array of
Point structures using a specified tension. |
void |
Graphics.drawCurve(Pen pen,
Point[] points,
int offset,
int numberOfSegments,
float tension)
Draws a cardinal spline through a specified array of
Point structures using a specified tension. |
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.drawImageUnscaled(Image sourceImage,
Point point)
Draws a specified image using its original physical size at a specified location.
|
void |
Graphics.drawLine(Pen pen,
Point point1,
Point point2)
Draws a line connecting two
Point structures. |
void |
Graphics.drawLines(Pen pen,
Point[] points)
Draws a series of line segments that connect an array of
Point structures. |
void |
Graphics.drawPolygon(Pen pen,
Point[] points)
Draws a polygon defined by an array of
Point structures. |
void |
Graphics.fillClosedCurve(Brush brush,
Point[] points)
Fills the interior of a closed cardinal spline curve defined by an array of
Aspose.Imaging.Point structures. |
void |
Graphics.fillClosedCurve(Brush brush,
Point[] points,
int fillmode)
Fills the interior of a closed cardinal spline curve defined by an array of
Aspose.Imaging.Point structures using the specified fill mode. |
void |
Graphics.fillClosedCurve(Brush brush,
Point[] points,
int fillmode,
float tension)
Fills the interior of a closed cardinal spline curve defined by an array of
Aspose.Imaging.Point structures using the specified fill mode and tension. |
void |
Graphics.fillPolygon(Brush brush,
Point[] points)
Fills the interior of a polygon defined by an array of points specified by
Aspose.Imaging.Point structures and FillMode.Alternate . |
void |
Graphics.fillPolygon(Brush brush,
Point[] points,
int fillMode)
Fills the interior of a polygon defined by an array of points specified by
Aspose.Imaging.Point structures using the specified fill mode. |
static Rectangle |
Rectangle.fromPoints(Point point1,
Point point2)
Creates a new
Rectangle from two points specified. |
boolean |
GraphicsPath.isOutlineVisible(Point point,
Pen pen)
Indicates whether the specified point is contained within (under) the outline of this
T:Aspose.Imaging.GraphicsPath when drawn with the specified T:Aspose.Imaging.Pen . |
boolean |
GraphicsPath.isOutlineVisible(Point pt,
Pen pen,
Graphics graphics)
Indicates whether the specified point is contained within (under) the outline of this
T:Aspose.Imaging.GraphicsPath when drawn with the specified T:Aspose.Imaging.Pen and using the specified T:Aspose.Imaging.Graphics . |
boolean |
GraphicsPath.isVisible(Point point)
Indicates whether the specified point is contained within this
T:Aspose.Imaging.GraphicsPath . |
boolean |
Region.isVisible(Point point)
Tests whether the specified
T:Aspose.Imaging.Point structure is contained within this T:Aspose.Imaging.Region . |
boolean |
GraphicsPath.isVisible(Point pt,
Graphics graphics)
Indicates whether the specified point is contained within this
T:Aspose.Imaging.GraphicsPath . |
boolean |
Region.isVisible(Point point,
Graphics g)
Tests whether the specified
T:Aspose.Imaging.Point structure is contained within this T:Aspose.Imaging.Region when drawn using the specified T:Aspose.Imaging.Graphics . |
void |
Point.offset(Point point)
Translates this
Aspose.Imaging.Point by the specified Aspose.Imaging.Point . |
void |
Rectangle.offset(Point pos)
Adjusts the location of this rectangle by the specified amount.
|
static Point |
Point.op_Addition(Point point,
Size size)
Translates a
Aspose.Imaging.Point by a given Aspose.Imaging.Size . |
static boolean |
Point.op_Equality(Point point1,
Point point2)
Compares two
Aspose.Imaging.Point objects. |
static boolean |
Point.op_Inequality(Point point1,
Point point2)
Compares two
Aspose.Imaging.Point objects. |
static Point |
Point.op_Subtraction(Point point,
Size size)
Translates a
Aspose.Imaging.Point by the negative of a given Aspose.Imaging.Size . |
void |
IPartialRawDataLoader.process(Rectangle rectangle,
byte[] data,
Point start,
Point end) |
void |
IPartialRawDataLoader.process(Rectangle rectangle,
byte[] data,
Point start,
Point end,
LoadOptions loadOptions) |
void |
IPartialPixelLoader.process(Rectangle pixelsRectangle,
Color[] pixels,
Point start,
Point end)
Processes the loaded pixels.
|
void |
IPartialArgb32PixelLoader.process(Rectangle pixelsRectangle,
int[] pixels,
Point start,
Point end)
Processes the loaded pixels.
|
void |
Rectangle.setLocation(Point value) |
static Point |
Point.subtract(Point point,
Size size)
Returns the result of subtracting specified
Aspose.Imaging.Size from the specified Aspose.Imaging.Point . |
static PointF |
Point.to_PointF(Point point)
Converts the specified
Point structure to the PointF structure. |
static Size |
Point.to_Size(Point point)
Converts the specified
Aspose.Imaging.Point structure to a Aspose.Imaging.Size structure. |
Constructor and Description |
---|
Matrix(Rectangle rect,
Point[] plgpts)
Initializes a new instance of the
Aspose.Imaging.Matrix class to the geometric transform defined by the specified rectangle and array of points. |
Rectangle(Point location,
Size size)
Initializes a new instance of the
Aspose.Imaging.Rectangle structure with the specified location and size. |
Size(Point point)
Initializes a new instance of the
Aspose.Imaging.Size structure from the specified Aspose.Imaging.Point . |
Constructor and Description |
---|
LinearGradientBrush(Point point1,
Point point2,
Color color1,
Color color2)
Initializes a new instance of the
LinearGradientBrush class with the specified points and colors. |
LinearMulticolorGradientBrush(Point point1,
Point point2)
Initializes a new instance of the
LinearMulticolorGradientBrush class with the specified points. |
PathGradientBrush(Point[] points)
Initializes a new instance of the
PathGradientBrush class with the specified points. |
PathGradientBrush(Point[] points,
int wrapMode)
Initializes a new instance of the
PathGradientBrush class with the specified points and wrap mode. |
PathMulticolorGradientBrush(Point[] points)
Initializes a new instance of the
PathMulticolorGradientBrush class with the specified points. |
PathMulticolorGradientBrush(Point[] points,
int wrapMode)
Initializes a new instance of the
PathMulticolorGradientBrush class with the specified points and wrap mode. |
Modifier and Type | Method and Description |
---|---|
static PointF[] |
PointExtensions.toPointsArray(Point[] points)
Converts the
Point array to the PointF array. |
Copyright (c) 2008-2016 Aspose Pty Ltd. All Rights Reserved.