Skip to content

Commit

Permalink
Revert breaking changes in enum order (#1627).
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed May 9, 2024
1 parent 3ffd1b0 commit 68af1ba
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions src/Magick.NET.Core/Enums/MagickFormat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -353,11 +353,6 @@ public enum MagickFormat
/// </summary>
Ff,

/// <summary>
/// Hasselblad CFV/H3D39II Raw Format.
/// </summary>
Fff,

/// <summary>
/// Uniform Resource Locator (file://).
/// </summary>
Expand Down Expand Up @@ -668,11 +663,6 @@ public enum MagickFormat
/// </summary>
Matte,

/// <summary>
/// Minolta Digital Camera Raw Format.
/// </summary>
Mdc,

/// <summary>
/// Mamiya Raw Format.
/// </summary>
Expand All @@ -698,11 +688,6 @@ public enum MagickFormat
/// </summary>
Mono,

/// <summary>
/// Aptus Leaf Raw Format.
/// </summary>
Mos,

/// <summary>
/// MPEG Video Stream.
/// </summary>
Expand All @@ -728,11 +713,6 @@ public enum MagickFormat
/// </summary>
Mpg,

/// <summary>
/// Joint Photographic Experts Group JFIF format (Jpeg).
/// </summary>
Mpo,

/// <summary>
/// Sony (Minolta) Raw Format.
/// </summary>
Expand Down Expand Up @@ -894,14 +874,14 @@ public enum MagickFormat
Pfm,

/// <summary>
/// Portable graymap format (gray scale).
/// JPEG 2000 uncompressed format.
/// </summary>
Pgm,
Pgx,

/// <summary>
/// JPEG 2000 uncompressed format.
/// Portable graymap format (gray scale).
/// </summary>
Pgx,
Pgm,

/// <summary>
/// Portable half float format.
Expand Down Expand Up @@ -1098,11 +1078,6 @@ public enum MagickFormat
/// </summary>
Rw2,

/// <summary>
/// Leica Raw Format.
/// </summary>
Rwl,

/// <summary>
/// ZX-Spectrum SCREEN$.
/// </summary>
Expand Down Expand Up @@ -1158,21 +1133,11 @@ public enum MagickFormat
/// </summary>
Srf,

/// <summary>
/// Samsung Raw Format.
/// </summary>
Srw,

/// <summary>
/// Steganographic image.
/// </summary>
Stegano,

/// <summary>
/// Sinar CaptureShop Raw Format.
/// </summary>
Sti,

/// <summary>
/// String to image and back.
/// </summary>
Expand Down Expand Up @@ -1288,6 +1253,11 @@ public enum MagickFormat
/// </summary>
Vid,

/// <summary>
/// Open Web Media.
/// </summary>
WebM,

/// <summary>
/// Khoros Visualization image.
/// </summary>
Expand All @@ -1303,11 +1273,6 @@ public enum MagickFormat
/// </summary>
Vst,

/// <summary>
/// Open Web Media.
/// </summary>
WebM,

/// <summary>
/// WebP Image Format.
/// </summary>
Expand Down Expand Up @@ -1392,4 +1357,39 @@ public enum MagickFormat
/// CCIR 601 4:1:1 or 4:2:2.
/// </summary>
Yuv,

/// <summary>
/// Joint Photographic Experts Group JFIF format (Jpeg).
/// </summary>
Mpo,

/// <summary>
/// Hasselblad CFV/H3D39II Raw Format.
/// </summary>
Fff,

/// <summary>
/// Minolta Digital Camera Raw Format.
/// </summary>
Mdc,

/// <summary>
/// Aptus Leaf Raw Format.
/// </summary>
Mos,

/// <summary>
/// Leica Raw Format.
/// </summary>
Rwl,

/// <summary>
/// Samsung Raw Format.
/// </summary>
Srw,

/// <summary>
/// Sinar CaptureShop Raw Format.
/// </summary>
Sti,
}

0 comments on commit 68af1ba

Please sign in to comment.