Skip to content

Commit 0f59c93

Browse files
committed
Corrected reference.
1 parent 28c91e4 commit 0f59c93

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

src/Magick.NET.Core/IMagickImageCreateOperations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ public interface IMagickImageCreateOperations
353353

354354
/// <summary>
355355
/// Crop image (subregion of original image). <see cref="IMagickImage.ResetPage"/> should be called unless
356-
/// the <see cref="Page"/> information is needed.
356+
/// the <see cref="IMagickImage.Page"/> information is needed.
357357
/// </summary>
358358
/// <param name="width">The width of the subregion to crop.</param>
359359
/// <param name="height">The height of the subregion to crop.</param>

tests/Magick.NET.Tests/TestIssue.cs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,5 @@ public class TestIssue
1818
[Fact]
1919
public void RunTest()
2020
{
21-
var drawables = new Drawables();
22-
23-
drawables.FontPointSize(40)
24-
.Font(@"I:\issues\im7\1752\font1.ttf")
25-
.FillColor(MagickColors.Black)
26-
.TextAlignment(TextAlignment.Left)
27-
.Text(100, 50, "This is such a nice font!");
28-
29-
drawables.FontPointSize(40)
30-
.Font(@"I:\issues\im7\1752\font2.ttf")
31-
.FillColor(MagickColors.Black)
32-
.TextAlignment(TextAlignment.Left)
33-
.Text(100, 100, "This is even better, or does it look the same?");
34-
35-
using var image = new MagickImage(MagickColors.White, 1000, 800);
36-
drawables.Draw(image);
37-
image.Write(@"I:\issues\im7\1752\z.png");
3821
}
3922
}

0 commit comments

Comments
 (0)