Skip to content

Commit bb1d8cf

Browse files
author
Samer El-Khatib
committed
Release 24.9 - Updates
1 parent 7b74110 commit bb1d8cf

File tree

3 files changed

+24
-24
lines changed
  • english/net
    • aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms
    • aspose.imaging/graphics

3 files changed

+24
-24
lines changed

english/net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /net/aspose.imaging.fileformats.cdr.objects/cdrtransforms/transforms/
1111
Gets or sets the transforms.
1212

1313
```csharp
14-
public List<#=z$mgggOyO50buIjKKoEuaTDk=> Transforms { get; set; }
14+
public List<#=zOn4hW5O5FM51auFE$P8uc$w=> Transforms { get; set; }
1515
```
1616

1717
### Property Value

english/net/aspose.imaging/graphics/drawimageunscaled/_index.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
---
22
title: Graphics.DrawImageUnscaled
33
second_title: Aspose.Imaging for .NET API Reference
4-
description: Graphics method. Draws a specified image using its original physical size at a specified location
4+
description: Graphics method. Draws the specified image using its original physical size at the location specified by a coordinate pair
55
type: docs
66
weight: 240
77
url: /net/aspose.imaging/graphics/drawimageunscaled/
88
---
9-
## DrawImageUnscaled(Image, Rectangle) {#drawimageunscaled_1}
9+
## DrawImageUnscaled(Image, int, int) {#drawimageunscaled_2}
1010

11-
Draws a specified image using its original physical size at a specified location.
11+
Draws the specified image using its original physical size at the location specified by a coordinate pair.
1212

1313
```csharp
14-
public void DrawImageUnscaled(Image sourceImage, Rectangle rect)
14+
public void DrawImageUnscaled(Image sourceImage, int x, int y)
1515
```
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
1919
| sourceImage | Image | The image to draw with. |
20-
| rect | Rectangle | [`Rectangle`](../../rectangle/) that specifies the upper-left corner of the drawn image. The X and Y properties of the rectangle specify the upper-left corner. The Width and Height properties are ignored. |
20+
| x | Int32 | The x-coordinate of the upper-left corner of the drawn image. |
21+
| y | Int32 | The y-coordinate of the upper-left corner of the drawn image. |
2122

2223
### Exceptions
2324

@@ -28,28 +29,24 @@ public void DrawImageUnscaled(Image sourceImage, Rectangle rect)
2829
### See Also
2930

3031
* class [Image](../../image/)
31-
* struct [Rectangle](../../rectangle/)
3232
* class [Graphics](../)
3333
* namespace [Aspose.Imaging](../../graphics/)
3434
* assembly [Aspose.Imaging](../../../)
3535

3636
---
3737

38-
## DrawImageUnscaled(Image, int, int, int, int) {#drawimageunscaled_3}
38+
## DrawImageUnscaled(Image, Rectangle) {#drawimageunscaled_1}
3939

4040
Draws a specified image using its original physical size at a specified location.
4141

4242
```csharp
43-
public void DrawImageUnscaled(Image sourceImage, int x, int y, int width, int height)
43+
public void DrawImageUnscaled(Image sourceImage, Rectangle rect)
4444
```
4545

4646
| Parameter | Type | Description |
4747
| --- | --- | --- |
4848
| sourceImage | Image | The image to draw with. |
49-
| x | Int32 | The x-coordinate of the upper-left corner of the drawn image. |
50-
| y | Int32 | The y-coordinate of the upper-left corner of the drawn image. |
51-
| width | Int32 | The parameter is not used. |
52-
| height | Int32 | The parameter is not used. |
49+
| rect | Rectangle | [`Rectangle`](../../rectangle/) that specifies the upper-left corner of the drawn image. The X and Y properties of the rectangle specify the upper-left corner. The Width and Height properties are ignored. |
5350

5451
### Exceptions
5552

@@ -60,24 +57,28 @@ public void DrawImageUnscaled(Image sourceImage, int x, int y, int width, int he
6057
### See Also
6158

6259
* class [Image](../../image/)
60+
* struct [Rectangle](../../rectangle/)
6361
* class [Graphics](../)
6462
* namespace [Aspose.Imaging](../../graphics/)
6563
* assembly [Aspose.Imaging](../../../)
6664

6765
---
6866

69-
## DrawImageUnscaled(Image, Point) {#drawimageunscaled}
67+
## DrawImageUnscaled(Image, int, int, int, int) {#drawimageunscaled_3}
7068

7169
Draws a specified image using its original physical size at a specified location.
7270

7371
```csharp
74-
public void DrawImageUnscaled(Image sourceImage, Point point)
72+
public void DrawImageUnscaled(Image sourceImage, int x, int y, int width, int height)
7573
```
7674

7775
| Parameter | Type | Description |
7876
| --- | --- | --- |
7977
| sourceImage | Image | The image to draw with. |
80-
| point | Point | [`Point`](../../point/) structure that specifies the upper-left corner of the drawn image. |
78+
| x | Int32 | The x-coordinate of the upper-left corner of the drawn image. |
79+
| y | Int32 | The y-coordinate of the upper-left corner of the drawn image. |
80+
| width | Int32 | The parameter is not used. |
81+
| height | Int32 | The parameter is not used. |
8182

8283
### Exceptions
8384

@@ -88,26 +89,24 @@ public void DrawImageUnscaled(Image sourceImage, Point point)
8889
### See Also
8990

9091
* class [Image](../../image/)
91-
* struct [Point](../../point/)
9292
* class [Graphics](../)
9393
* namespace [Aspose.Imaging](../../graphics/)
9494
* assembly [Aspose.Imaging](../../../)
9595

9696
---
9797

98-
## DrawImageUnscaled(Image, int, int) {#drawimageunscaled_2}
98+
## DrawImageUnscaled(Image, Point) {#drawimageunscaled}
9999

100-
Draws the specified image using its original physical size at the location specified by a coordinate pair.
100+
Draws a specified image using its original physical size at a specified location.
101101

102102
```csharp
103-
public void DrawImageUnscaled(Image sourceImage, int x, int y)
103+
public void DrawImageUnscaled(Image sourceImage, Point point)
104104
```
105105

106106
| Parameter | Type | Description |
107107
| --- | --- | --- |
108108
| sourceImage | Image | The image to draw with. |
109-
| x | Int32 | The x-coordinate of the upper-left corner of the drawn image. |
110-
| y | Int32 | The y-coordinate of the upper-left corner of the drawn image. |
109+
| point | Point | [`Point`](../../point/) structure that specifies the upper-left corner of the drawn image. |
111110

112111
### Exceptions
113112

@@ -118,6 +117,7 @@ public void DrawImageUnscaled(Image sourceImage, int x, int y)
118117
### See Also
119118

120119
* class [Image](../../image/)
120+
* struct [Point](../../point/)
121121
* class [Graphics](../)
122122
* namespace [Aspose.Imaging](../../graphics/)
123123
* assembly [Aspose.Imaging](../../../)

english/net/aspose.imaging/graphics/fillclosedcurve/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ public void FillClosedCurve(Brush brush, PointF[] points)
4040
Fills the interior of a closed cardinal spline curve defined by an array of [`PointF`](../../pointf/) structures using the specified fill mode. This method uses a default tension of 0.5.
4141

4242
```csharp
43-
public void FillClosedCurve(Brush brush, PointF[] points, FillMode fillmode)
43+
public void FillClosedCurve(Brush brush, PointF[] points, FillMode fillMode)
4444
```
4545

4646
| Parameter | Type | Description |
4747
| --- | --- | --- |
4848
| brush | Brush | [`Brush`](../../brush/) that determines the characteristics of the fill. |
4949
| points | PointF[] | Array of [`PointF`](../../pointf/) structures that define the spline. |
50-
| fillmode | FillMode | Member of the [`FillMode`](../../fillmode/) enumeration that determines how the curve is filled. |
50+
| fillMode | FillMode | Member of the [`FillMode`](../../fillmode/) enumeration that determines how the curve is filled. |
5151

5252
### Exceptions
5353

0 commit comments

Comments
 (0)