Skip to content

Commit 542fd93

Browse files
ImageInfo not IImageInfo
1 parent 3982942 commit 542fd93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/imagesharp/gettingstarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ This will avoid decoding the complete image and therfore be much faster.
5555
For example:
5656

5757
```c#
58-
IImageInfo imageInfo = Image.Identify(@"image.jpg");
58+
ImageInfo imageInfo = Image.Identify(@"image.jpg");
5959
Console.WriteLine($"Width: {imageInfo.Width}");
6060
Console.WriteLine($"Height: {imageInfo.Height}");
6161
```

0 commit comments

Comments
 (0)