You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: english/java/com.aspose.imaging/graphics/_index.md
+20-20Lines changed: 20 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,14 +152,14 @@ Represents the graphics according to the graphics engine used in the current ass
152
152
|[fillPolygon(Brush brush, Point[] points)](#fillPolygon-com.aspose.imaging.Brush-com.aspose.imaging.Point---)| Fills the interior of a polygon defined by an array of points specified by `com.aspose.imaging.Point` structures and `FillMode.Alternate`. |
153
153
|[fillPolygon(Brush brush, Point[] points, int fillMode)](#fillPolygon-com.aspose.imaging.Brush-com.aspose.imaging.Point---int-)| Fills the interior of a polygon defined by an array of points specified by `com.aspose.imaging.Point` structures using the specified fill mode. |
154
154
|[fillClosedCurve(Brush brush, PointF[] points)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.PointF` structures. |
155
-
|[fillClosedCurve(Brush brush, PointF[] points, int fillmode)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---int-)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.PointF` structures using the specified fill mode. |
156
-
|[fillClosedCurve(Brush brush, PointF[] points, int fillmode, float tension)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---int-float-)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.PointF` structures using the specified fill mode and tension. |
155
+
|[fillClosedCurve(Brush brush, PointF[] points, int fillMode)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---int-)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.PointF` structures using the specified fill mode. |
156
+
|[fillClosedCurve(Brush brush, PointF[] points, int fillMode, float tension)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---int-float-)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.PointF` structures using the specified fill mode and tension. |
157
157
|[fillClosedCurve(Brush brush, Point[] points)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.Point---)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.Point` structures. |
158
-
|[fillClosedCurve(Brush brush, Point[] points, int fillmode)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.Point---int-)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.Point` structures using the specified fill mode. |
159
-
|[fillClosedCurve(Brush brush, Point[] points, int fillmode, float tension)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.Point---int-float-)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.Point` structures using the specified fill mode and tension. |
158
+
|[fillClosedCurve(Brush brush, Point[] points, int fillMode)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.Point---int-)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.Point` structures using the specified fill mode. |
159
+
|[fillClosedCurve(Brush brush, Point[] points, int fillMode, float tension)](#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.Point---int-float-)| Fills the interior of a closed cardinal spline curve defined by an array of `com.aspose.imaging.Point` structures using the specified fill mode and tension. |
160
160
|[drawPath(Pen pen, GraphicsPath path)](#drawPath-com.aspose.imaging.Pen-com.aspose.imaging.GraphicsPath-)| Draws a `com.aspose.imaging.graphicsPath`. |
161
161
|[fillPath(Brush brush, GraphicsPath path)](#fillPath-com.aspose.imaging.Brush-com.aspose.imaging.GraphicsPath-)| Fills the interior of a `com.aspose.imaging.graphicsPath`. |
162
-
|[fillRegion(Brush brush, Region region)](#fillRegion-com.aspose.imaging.Brush-com.aspose.imaging.Region-)| Fills the interior of a `com.aspose.imaging.region`. |
162
+
|[fillRegion(Brush brush, Region region)](#fillRegion-com.aspose.imaging.Brush-com.aspose.imaging.Region-)| Fills the interior of a [Region](../../com.aspose.imaging/region). |
163
163
|[measureString(String text, Font font, SizeF layoutArea, StringFormat stringFormat)](#measureString-java.lang.String-com.aspose.imaging.Font-com.aspose.imaging.SizeF-com.aspose.imaging.StringFormat-)| Measures the specified text string with specified parameters |
164
164
165
165
## Example: This example uses Graphics class to create primitive shapes on the Image surface.
@@ -3402,9 +3402,9 @@ Fills the interior of a closed cardinal spline curve defined by an array of `com
3402
3402
| brush |[Brush](../../com.aspose.imaging/brush)|`com.aspose.imaging.Brush` that determines the characteristics of the fill. |
3403
3403
| points |[PointF\[\]](../../com.aspose.imaging/pointf)| Array of `com.aspose.imaging.PointF` structures that define the spline. |
3404
3404
3405
-
### fillClosedCurve(Brush brush, PointF[] points, int fillmode) {#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---int-}
3405
+
### fillClosedCurve(Brush brush, PointF[] points, int fillMode) {#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---int-}
3406
3406
```
3407
-
public void fillClosedCurve(Brush brush, PointF[] points, int fillmode)
3407
+
public void fillClosedCurve(Brush brush, PointF[] points, int fillMode)
3408
3408
```
3409
3409
3410
3410
@@ -3415,11 +3415,11 @@ Fills the interior of a closed cardinal spline curve defined by an array of `com
3415
3415
| --- | --- | --- |
3416
3416
| brush |[Brush](../../com.aspose.imaging/brush)|`com.aspose.imaging.Brush` that determines the characteristics of the fill. |
3417
3417
| points |[PointF\[\]](../../com.aspose.imaging/pointf)| Array of `com.aspose.imaging.PointF` structures that define the spline. |
3418
-
|fillmode| int | Member of the `com.aspose.imaging.FillMode` enumeration that determines how the curve is filled. |
3418
+
|fillMode| int | Member of the `com.aspose.imaging.FillMode` enumeration that determines how the curve is filled. |
3419
3419
3420
-
### fillClosedCurve(Brush brush, PointF[] points, int fillmode, float tension) {#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---int-float-}
3420
+
### fillClosedCurve(Brush brush, PointF[] points, int fillMode, float tension) {#fillClosedCurve-com.aspose.imaging.Brush-com.aspose.imaging.PointF---int-float-}
3421
3421
```
3422
-
public void fillClosedCurve(Brush brush, PointF[] points, int fillmode, float tension)
3422
+
public void fillClosedCurve(Brush brush, PointF[] points, int fillMode, float tension)
3423
3423
```
3424
3424
3425
3425
@@ -3430,7 +3430,7 @@ Fills the interior of a closed cardinal spline curve defined by an array of `com
3430
3430
| --- | --- | --- |
3431
3431
| brush |[Brush](../../com.aspose.imaging/brush)| A `com.aspose.imaging.Brush` that determines the characteristics of the fill. |
3432
3432
| points |[PointF\[\]](../../com.aspose.imaging/pointf)| Array of `com.aspose.imaging.PointF` structures that define the spline. |
3433
-
|fillmode| int | Member of the `com.aspose.imaging.FillMode` enumeration that determines how the curve is filled. |
3433
+
|fillMode| int | Member of the `com.aspose.imaging.FillMode` enumeration that determines how the curve is filled. |
3434
3434
| tension | float | Value greater than or equal to 0.0F that specifies the tension of the curve. |
Copy file name to clipboardExpand all lines: english/java/com.aspose.imaging/point/_index.md
+94-94Lines changed: 94 additions & 94 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,6 @@ Represents an ordered pair of integer x- and y-coordinates that defines a point
26
26
| Method | Description |
27
27
| --- | --- |
28
28
|[getEmpty()](#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. |
29
-
|[isEmpty()](#isEmpty--)| Gets a value indicating whether this `Aspose.Imaging.Point` is empty. |
30
-
|[getX()](#getX--)| Gets or sets the x-coordinate of this `Aspose.Imaging.Point`. |
31
-
|[setX(int value)](#setX-int-)| Gets or sets the x-coordinate of this `Aspose.Imaging.Point`. |
32
-
|[getY()](#getY--)| Gets or sets the y-coordinate of this `Aspose.Imaging.Point`. |
33
-
|[setY(int value)](#setY-int-)| Gets or sets the y-coordinate of this `Aspose.Imaging.Point`. |
34
29
|[add(Point point, Size size)](#add-com.aspose.imaging.Point-com.aspose.imaging.Size-)| Adds the specified `Aspose.Imaging.Size` to the specified `Aspose.Imaging.Point`. |
35
30
|[subtract(Point point, Size size)](#subtract-com.aspose.imaging.Point-com.aspose.imaging.Size-)| Returns the result of subtracting specified `Aspose.Imaging.Size` from the specified `Aspose.Imaging.Point`. |
36
31
|[ceiling(PointF point)](#ceiling-com.aspose.imaging.PointF-)| 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. |
@@ -42,16 +37,21 @@ Represents an ordered pair of integer x- and y-coordinates that defines a point
42
37
|[op_Inequality(Point point1, Point point2)](#op-Inequality-com.aspose.imaging.Point-com.aspose.imaging.Point-)| Compares two `Aspose.Imaging.Point` objects. |
43
38
|[to_Size(Point point)](#to-Size-com.aspose.imaging.Point-)| Converts the specified `Aspose.Imaging.Point` structure to a `Aspose.Imaging.Size` structure. |
44
39
|[to_PointF(Point point)](#to-PointF-com.aspose.imaging.Point-)| Converts the specified `Point` structure to the `PointF` structure. |
40
+
|[fromLong(long packedPoint, int[] x, int[] y)](#fromLong-long-int---int---)| Deconstruct a Point object packed into a long object to separate X and Y int values. |
41
+
|[isEquals(Point obj1, Point obj2)](#isEquals-com.aspose.imaging.Point-com.aspose.imaging.Point-)||
42
+
|[isEmpty()](#isEmpty--)| Gets a value indicating whether this `Aspose.Imaging.Point` is empty. |
43
+
|[getX()](#getX--)| Gets or sets the x-coordinate of this `Aspose.Imaging.Point`. |
44
+
|[setX(int value)](#setX-int-)| Gets or sets the x-coordinate of this `Aspose.Imaging.Point`. |
45
+
|[getY()](#getY--)| Gets or sets the y-coordinate of this `Aspose.Imaging.Point`. |
46
+
|[setY(int value)](#setY-int-)| Gets or sets the y-coordinate of this `Aspose.Imaging.Point`. |
45
47
|[offset(Point point)](#offset-com.aspose.imaging.Point-)| Translates this `Aspose.Imaging.Point` by the specified `Aspose.Imaging.Point`. |
46
48
|[offset(int dx, int dy)](#offset-int-int-)| Translates this `Aspose.Imaging.Point` by the specified amount. |
47
49
|[equals(Object obj)](#equals-java.lang.Object-)| Specifies whether this `Aspose.Imaging.Point` contains the same coordinates as the specified `System.Object`. |
48
50
|[hashCode()](#hashCode--)| Returns a hash code for this `Aspose.Imaging.Point`. |
49
51
|[toLong()](#toLong--)| Convert this Point to a single long value, containing X and Y coordinates in high and low bits. |
50
-
|[fromLong(long packedPoint, int[] x, int[] y)](#fromLong-long-int---int---)| Deconstruct a Point object packed into a long object to separate X and Y int values. |
51
52
|[toString()](#toString--)| Converts this `Aspose.Imaging.Point` to a human-readable string. |
0 commit comments