ImageFormatHelper.cs 277 B

123456789101112
  1. using SixLabors.ImageSharp;
  2. namespace VberZero.Tools;
  3. public class ImageFormatHelper
  4. {
  5. public static string GetRawImageFormat(byte[] fileBytes)
  6. {
  7. using var image = Image.Load(fileBytes, out var format);
  8. return format.FileExtensions.First();
  9. }
  10. }