Rebel.Cms.Web.FileExtensions.IsImage C# (CSharp) Method

IsImage() public static method

public static IsImage ( this file ) : bool
file this
return bool
        public static bool IsImage(this File file)
        {
            if (file == null) return false;
            return (",.jpeg,.jpg,.gif,.bmp,.png,.tiff,.tif,")
                .IndexOf("," + Path.GetExtension(file.Name) + ",", StringComparison.InvariantCultureIgnoreCase) > -1;
        }