This commit is contained in:
James Jackson-South 2023-08-10 09:16:15 +10:00
Родитель 3982942f16
Коммит 542fd93bca
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -55,7 +55,7 @@ This will avoid decoding the complete image and therfore be much faster.
For example:
```c#
IImageInfo imageInfo = Image.Identify(@"image.jpg");
ImageInfo imageInfo = Image.Identify(@"image.jpg");
Console.WriteLine($"Width: {imageInfo.Width}");
Console.WriteLine($"Height: {imageInfo.Height}");
```