2018-08-29 01:15:46 +10:00
|
|
|
|
namespace Umbraco.Web.Media.Exif
|
2015-02-17 16:47:29 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <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,
|
2018-09-30 12:09:44 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The file is a SVG File.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
SVG,
|
2015-02-17 16:47:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|