Moved media files and introduced IImageDimensionExtractor and to avoid System.drawing in core

This commit is contained in:
Bjarke Berg
2020-12-04 15:04:29 +01:00
parent 21e3cf0887
commit eb03145fa6
61 changed files with 163 additions and 87 deletions

View File

@@ -0,0 +1,25 @@
namespace Umbraco.Web.Media.Exif
{
/// <summary>
/// Represents the format of the <see cref="ImageFile"/>.
/// </summary>
internal enum ImageFileFormat
{
/// <summary>
/// The file is not recognized.
/// </summary>
Unknown,
/// <summary>
/// The file is a JPEG/Exif or JPEG/JFIF file.
/// </summary>
JPEG,
/// <summary>
/// The file is a TIFF File.
/// </summary>
TIFF,
/// <summary>
/// The file is a SVG File.
/// </summary>
SVG,
}
}