mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
788 B
23 lines
788 B
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace ZeroLevel.ML
|
|
{
|
|
/// <summary>
|
|
/// Форматы изображений
|
|
/// </summary>
|
|
public static class KnownImageFormats
|
|
{
|
|
private static HashSet<string> _formats = new HashSet<string>() { ".bmp", ".jpeg", ".jpg", ".png", ".tiff", ".webp" };
|
|
/// <summary>
|
|
/// Проверка, является ли файл обрабатываемым приложением как изображение
|
|
/// </summary>
|
|
public static bool IsKnownFormat(string filePath)
|
|
{
|
|
var ext = Path.GetExtension(filePath)?.ToLowerInvariant();
|
|
if (string.IsNullOrWhiteSpace(ext)) return false;
|
|
return _formats.Contains(ext);
|
|
}
|
|
}
|
|
}
|