Skip to content

Commit 073e5c6

Browse files
910313: Image Editor UG Improvements
1 parent 080e7e4 commit 073e5c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blazor/image-editor/annotation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ In the following example, you can using the DrawTextAsync method in the button c
8383
private async void DrawTextOutlineAsync()
8484
{
8585
ImageDimension Dimension = await ImageEditor.GetImageDimensionAsync();
86-
await ImageEditor.DrawTextAsync(Dimension.X.Value + 100, Dimension.Y.Value + 100, 'Syncfusion', 'Arial', 70, false, false, '', false, null, '', 'green', 8);
86+
await ImageEditor.DrawTextAsync(Dimension.X.Value + 200, Dimension.Y.Value + 200, 'Syncfusion', 'Arial', 70, false, false, '', false, null, '', 'green', 8);
8787
}
8888
private async void DrawTextBackgroundColorAsync()
8989
{
9090
ImageDimension Dimension = await ImageEditor.GetImageDimensionAsync();
91-
await ImageEditor.DrawTextAsync(Dimension.X.Value + 100, Dimension.Y.Value + 100, 'Syncfusion', 'Arial', 70, false, false, '', false, null, 'red', '', null);
91+
await ImageEditor.DrawTextAsync(Dimension.X.Value + 300, Dimension.Y.Value + 300, 'Syncfusion', 'Arial', 70, false, false, '', false, null, 'red', '', null);
9292
}
9393
}
9494
```

0 commit comments

Comments
 (0)