We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e6c116 commit 98bce22Copy full SHA for 98bce22
ASPNetImage/Source/NetImage.cs
@@ -1496,6 +1496,13 @@ public bool LoadImage(string imageFilePath)
1496
return false;
1497
}
1498
1499
+ /// <summary>
1500
+ /// Draws a rectangle with the coordinates of the upper-left and lower-right coordinates provided.
1501
+ /// </summary>
1502
+ /// <param name="intX1"></param>
1503
+ /// <param name="intY1"></param>
1504
+ /// <param name="intX2"></param>
1505
+ /// <param name="intY2"></param>
1506
public void Rectangle(int intX1, int intY1, int intX2, int intY2)
1507
{
1508
Graphics graphicsDest = GetGraphicsImage(_image, ImageFormat.ToString());
0 commit comments