Tìm định dạng hình ảnh bằng đối tượng Bitmap trong C #


83

Tôi đang tải các byte nhị phân của ổ cứng tệp hình ảnh và tải nó vào một đối tượng Bitmap. Làm cách nào để tìm loại hình ảnh [JPEG, PNG, BMP, v.v.] từ đối tượng Bitmap?

Trông tầm thường. Nhưng, không thể tìm ra nó!

Có một cách tiếp cận thay thế?

Đánh giá cao phản hồi của bạn.

GIẢI PHÁP ĐÚNG CẬP NHẬT:

@CMS: Cảm ơn bạn đã trả lời chính xác!

Mã mẫu để đạt được điều này.

using (MemoryStream imageMemStream = new MemoryStream(fileData))
{
    using (Bitmap bitmap = new Bitmap(imageMemStream))
    {
        ImageFormat imageFormat = bitmap.RawFormat;
        if (bitmap.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Jpeg))
            //It's a JPEG;
        else if (bitmap.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Png))
            //It's a PNG;
    }
}

3
Bạn có thể thêm System.Drawing.Imagingnamespace để sử dụng chỉ thị của bạn, tiến hành kiểm tra định dạng ít tiết ...
Christian C. Salvadó

@CMS: Đồng ý! Muốn hiển thị không gian tên hoàn chỉnh để biết thêm thông tin.
pencilslate 09/09/09

2
Hmmm ... Tôi đã thử kỹ thuật tương tự, nhưng nó không hiệu quả. Tôi đã tải một tệp PNG và khi tôi so sánh giá trị RawFormat của nó với tất cả các phiên bản ImageFormat. *, Không có phiên bản nào phù hợp. Giá trị RawFormat thực tế là {b96b3caf-0728-11d3-9d7b-0000f81ef32e}.
Igor Brejc

Câu trả lời:


105

Nếu bạn muốn biết định dạng của hình ảnh, bạn có thể tải tệp bằng lớp Hình ảnh và kiểm tra thuộc tính RawFormat của nó :

using(Image img = Image.FromFile(@"C:\path\to\img.jpg"))
{
    if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Jpeg))
    {
      // ...
    }
}

29
Lưu ý: Nó dường như img.RawFormat == ImageFormat.Jpegkhông hoạt động. Bạn phải sử dụng img.RawFormat.Equals(ImageFormat.Jpeg).
BlueRaja - Danny Pflughoeft,

1
@BlueRaja, Vâng, tại sao vậy? Hầu hết các lớp .NET có ghi đè cả phương thức Equals () và toán tử không? Hoặc, có thể tôi đang diễn đạt sai - .NET không sử dụng phương thức .Equals () theo mặc định khi sử dụng toán tử ==? Tôi có sai không?
Pandincus

Gah! Không có gì ngạc nhiên khi nó không hoạt động. Tôi cho rằng == đã lừa. Chỉ trích! Cảm ơn các bạn, đã tiết kiệm cho tôi rất nhiều thời gian vừa rồi.
Che phổ biến

1
Trừ khi nó bị ghi đè hoặc một trong một vài kiểu dựng sẵn, thì không ==sử dụng bình đẳng tham chiếu Equals. Bên cạnh việc sử dụng Equalsbản thân, bạn có thể sử dụng static object.Equals(obj1, obj2)(gọi Equals) để an toàn đơn giản.
Tim S.

57

Đây là phương pháp mở rộng của tôi. Hy vọng điều này sẽ giúp ai đó.

public static System.Drawing.Imaging.ImageFormat GetImageFormat(this System.Drawing.Image img)
    {             
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Jpeg))
            return System.Drawing.Imaging.ImageFormat.Jpeg;
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Bmp))
            return System.Drawing.Imaging.ImageFormat.Bmp;
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Png))
            return System.Drawing.Imaging.ImageFormat.Png;
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Emf))
            return System.Drawing.Imaging.ImageFormat.Emf;
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Exif))
            return System.Drawing.Imaging.ImageFormat.Exif;
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Gif))
            return System.Drawing.Imaging.ImageFormat.Gif;
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Icon))
            return System.Drawing.Imaging.ImageFormat.Icon;
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.MemoryBmp))
            return System.Drawing.Imaging.ImageFormat.MemoryBmp;
        if (img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Tiff))
            return System.Drawing.Imaging.ImageFormat.Tiff;
        else
            return System.Drawing.Imaging.ImageFormat.Wmf;            
    }

9
Tôi không thể tin rằng khung công tác .NET không có tính năng này và đây là cách duy nhất. Tôi thực sự bị sốc.
simonlchilds

18

đây là mã của tôi cho điều này. Trước tiên, bạn phải tải hình ảnh hoàn chỉnh hoặc tiêu đề (4 byte đầu tiên) vào một mảng byte.

public enum ImageFormat
{
    Bmp,
    Jpeg,
    Gif,
    Tiff,
    Png,
    Unknown
}

public static ImageFormat GetImageFormat(byte[] bytes)
{
    // see http://www.mikekunz.com/image_file_header.html  
    var bmp    = Encoding.ASCII.GetBytes("BM");     // BMP
    var gif    = Encoding.ASCII.GetBytes("GIF");    // GIF
    var png    = new byte[] { 137, 80, 78, 71 };    // PNG
    var tiff   = new byte[] { 73, 73, 42 };         // TIFF
    var tiff2  = new byte[] { 77, 77, 42 };         // TIFF
    var jpeg   = new byte[] { 255, 216, 255, 224 }; // jpeg
    var jpeg2  = new byte[] { 255, 216, 255, 225 }; // jpeg canon

    if (bmp.SequenceEqual(bytes.Take(bmp.Length)))
        return ImageFormat.Bmp;

    if (gif.SequenceEqual(bytes.Take(gif.Length)))
        return ImageFormat.Gif;

    if (png.SequenceEqual(bytes.Take(png.Length)))
        return ImageFormat.Png;

    if (tiff.SequenceEqual(bytes.Take(tiff.Length)))
        return ImageFormat.Tiff;

    if (tiff2.SequenceEqual(bytes.Take(tiff2.Length)))
        return ImageFormat.Tiff;

    if (jpeg.SequenceEqual(bytes.Take(jpeg.Length)))
        return ImageFormat.Jpeg;

    if (jpeg2.SequenceEqual(bytes.Take(jpeg2.Length)))
        return ImageFormat.Jpeg;

    return ImageFormat.Unknown;
}

1
JPEG cần được kiểm tra cho {255, 216, 255}. Đây là thông tin en.wikipedia.org/wiki/JPEG
Mirodil

9

tất nhiên bạn có thể. ImageFormatkhông có nhiều ý nghĩa. ImageCodecInfocó nhiều ý nghĩa hơn.

red_dot.png

red_dot.png

<a href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==">
    <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="red_dot.png" title="red_dot.png"/>
</a>

mã:

using System.Linq;

//...

//get image
var file_bytes = System.Convert.FromBase64String(@"iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==");
var file_stream = new System.IO.MemoryStream(file_bytes);
var file_image = System.Drawing.Image.FromStream(file_stream);

//list image formats
var image_formats = typeof(System.Drawing.Imaging.ImageFormat).GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Static).ToList().ConvertAll(property => property.GetValue(null, null));
System.Diagnostics.Debug.WriteLine(image_formats.Count, "image_formats");
foreach(var image_format in image_formats) {
    System.Diagnostics.Debug.WriteLine(image_format, "image_formats");
}

//get image format
var file_image_format = typeof(System.Drawing.Imaging.ImageFormat).GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Static).ToList().ConvertAll(property => property.GetValue(null, null)).Single(image_format => image_format.Equals(file_image.RawFormat));
System.Diagnostics.Debug.WriteLine(file_image_format, "file_image_format");

//list image codecs
var image_codecs = System.Drawing.Imaging.ImageCodecInfo.GetImageDecoders().ToList();
System.Diagnostics.Debug.WriteLine(image_codecs.Count, "image_codecs");
foreach(var image_codec in image_codecs) {
    System.Diagnostics.Debug.WriteLine(image_codec.CodecName + ", mime: " + image_codec.MimeType + ", extension: " + @image_codec.FilenameExtension, "image_codecs");
}

//get image codec
var file_image_format_codec = System.Drawing.Imaging.ImageCodecInfo.GetImageDecoders().ToList().Single(image_codec => image_codec.FormatID == file_image.RawFormat.Guid);
System.Diagnostics.Debug.WriteLine(file_image_format_codec.CodecName + ", mime: " + file_image_format_codec.MimeType + ", extension: " + file_image_format_codec.FilenameExtension, "image_codecs", "file_image_format_type");

đầu ra gỡ lỗi:

image_formats: 10
image_formats: MemoryBMP
image_formats: Bmp
image_formats: Emf
image_formats: Wmf
image_formats: Gif
image_formats: Jpeg
image_formats: Png
image_formats: Tiff
image_formats: Exif
image_formats: Icon
file_image_format: Png
image_codecs: 8
image_codecs: Built-in BMP Codec, mime: image/bmp, extension: *.BMP;*.DIB;*.RLE
image_codecs: Built-in JPEG Codec, mime: image/jpeg, extension: *.JPG;*.JPEG;*.JPE;*.JFIF
image_codecs: Built-in GIF Codec, mime: image/gif, extension: *.GIF
image_codecs: Built-in EMF Codec, mime: image/x-emf, extension: *.EMF
image_codecs: Built-in WMF Codec, mime: image/x-wmf, extension: *.WMF
image_codecs: Built-in TIFF Codec, mime: image/tiff, extension: *.TIF;*.TIFF
image_codecs: Built-in PNG Codec, mime: image/png, extension: *.PNG
image_codecs: Built-in ICO Codec, mime: image/x-icon, extension: *.ICO
Built-in PNG Codec, mime: image/png, extension: *.PNG

Chúc bạn tìm được Alex! Mặc dù điều này trông có vẻ lộn xộn, nhưng hãy xem những điều cơ bản được biến thành một vài phương pháp mở rộng rõ ràng bên dưới.
Nicholas Petersen

2

Nói một cách đơn giản là bạn không thể. Lý do tại sao Bitmap là một loại hình ảnh giống như JPEG, PNG, v.v. Khi bạn tải một hình ảnh vào Bitmap, hình ảnh có định dạng bitmap. Không có cách nào để nhìn vào một bitmap và hiểu được mã hóa ban đầu của hình ảnh (nếu nó thậm chí khác với Bitmap).


1
Tôi nghĩ là trường hợp này Bitmap (một cách khó hiểu) là tên của một lớp trong C #. Lớp Bitmap chứa một hình ảnh, có lẽ có thể là jpg, giff, bmp, v.v. Trong bất kỳ trường hợp nào khác, bạn hoàn toàn chính xác.
DarcyThomas

2

Không bận tâm đến chủ đề cũ, nhưng để hoàn thành cuộc thảo luận này, tôi muốn chia sẻ cách của tôi để truy vấn tất cả các định dạng hình ảnh, được biết đến bởi windows.

using System.Diagnostics;
using System.Drawing;
using System.Drawing.Imaging;

public static class ImageExtentions
{
    public static ImageCodecInfo GetCodecInfo(this System.Drawing.Image img)
    {
        ImageCodecInfo[] decoders = ImageCodecInfo.GetImageDecoders();
        foreach (ImageCodecInfo decoder in decoders)
            if (img.RawFormat.Guid == decoder.FormatID)
                return decoder;
        return null;
    }
}

Bây giờ bạn có thể sử dụng nó như một phần mở rộng hình ảnh như hình dưới đây:

public void Test(Image img)
{
    ImageCodecInfo info = img.GetCodecInfo();
    if (info == null)
        Trace.TraceError("Image format is unkown");
    else
        Trace.TraceInformation("Image format is " + info.FormatDescription);
}

1

Dựa trên công việc của Alex ở trên (mà tôi thực sự bỏ phiếu là giải pháp, vì nó là một dòng - nhưng tôi chưa thể bỏ phiếu haha), tôi đã nghĩ ra hàm sau cho một thư viện hình ảnh. Nó yêu cầu 4.0

  Public Enum Formats
    Unknown
    Bmp
    Emf
    Wmf
    Gif
    Jpeg
    Png
    Tiff
    Icon
  End Enum

  Public Shared Function ImageFormat(ByVal Image As System.Drawing.Image) As Formats
    If Not System.Enum.TryParse(Of Formats)(System.Drawing.Imaging.ImageCodecInfo.GetImageDecoders().ToList().[Single](Function(ImageCodecInfo) ImageCodecInfo.FormatID = Image.RawFormat.Guid).FormatDescription, True, ImageFormat) Then
      Return Formats.Unknown
    End If
  End Function

0

Một vài phương pháp mở rộng rõ ràng về loại Imageđể xác định điều này, dựa trên kết quả của Alex ở trên ( ImageCodecInfo.GetImageDecoders()).

Điều này được tối ưu hóa cao sau lần gọi đầu tiên, vì ImageCodecsDictionary tĩnh được lưu trong bộ nhớ (nhưng chỉ sau khi nó đã được sử dụng một lần).

public static class ImageCodecInfoX
{

    private static Dictionary<Guid, ImageCodecInfoFull> _imageCodecsDictionary;

    public static Dictionary<Guid, ImageCodecInfoFull> ImageCodecsDictionary 
    {
        get
        {
            if (_imageCodecsDictionary == null) {
                _imageCodecsDictionary =
                    ImageCodecInfo.GetImageDecoders()
                    .Select(i => {
                        var format = ImageFormats.Unknown;
                        switch (i.FormatDescription.ToLower()) {
                            case "jpeg": format = ImageFormats.Jpeg; break;
                            case "png": format = ImageFormats.Png; break;
                            case "icon": format = ImageFormats.Icon; break;
                            case "gif": format = ImageFormats.Gif; break;
                            case "bmp": format = ImageFormats.Bmp; break;
                            case "tiff": format = ImageFormats.Tiff; break;
                            case "emf": format = ImageFormats.Emf; break;
                            case "wmf": format = ImageFormats.Wmf; break;
                        }
                        return new ImageCodecInfoFull(i) { Format = format };
                    })
                    .ToDictionary(c => c.CodecInfo.FormatID);
            }
            return _imageCodecsDictionary;
        }
    }

    public static ImageCodecInfoFull CodecInfo(this Image image)
    {
        ImageCodecInfoFull codecInfo = null;

        if (!ImageCodecsDictionary.TryGetValue(image.RawFormat.Guid, out codecInfo))
            return null;
        return codecInfo;
    }

    public static ImageFormats Format(this Image image)
    {
        var codec = image.CodecInfo();
        return codec == null ? ImageFormats.Unknown : codec.Format;
    }
}

public enum ImageFormats { Jpeg, Png, Icon, Gif, Bmp, Emf, Wmf, Tiff, Unknown }

/// <summary>
/// Couples ImageCodecInfo with an ImageFormats type.
/// </summary>
public class ImageCodecInfoFull
{
    public ImageCodecInfoFull(ImageCodecInfo codecInfo = null)
    {
        Format = ImageFormats.Unknown;
        CodecInfo = codecInfo;
    }

    public ImageCodecInfo CodecInfo { get; set; }

    public ImageFormats Format { get; set; }

}

0

một vấn đề kỳ lạ mà tôi gặp phải khi tôi cố gắng lấy loại kịch câm bằng cách sử dụng imagesecodeinfo .. đối với một số tệp png, các guid không hoàn toàn giống nhau ...

đầu tiên tôi đã kiểm tra với ImageCodecinfo và nếu mã không tìm thấy định dạng hình ảnh thì tôi đã so sánh định dạng hình ảnh bằng giải pháp của Matthias Wuttke.

nếu cả hai giải pháp được đề cập ở trên không thành công thì hãy sử dụng phương thức mở rộng để nhận loại tệp mime ..

nếu kiểu mime thay đổi thì tệp cũng thay đổi, chúng tôi đang tính toán tổng kiểm tra của các tệp đã tải xuống để khớp với tổng kiểm tra của tệp gốc trên máy chủ .. vì vậy đối với chúng tôi, người nhập khẩu phải có tệp phù hợp làm đầu ra.


0

Đại lý CK , tôi thích phương thức mở rộng của bạn và đã thêm quá tải chuỗi, ngoài ra tôi đã giảm mã cho phương thức của bạn:

public static class ImageExtentions
{
    public static ImageCodecInfo GetCodecInfo(this Image img) =>
        ImageCodecInfo.GetImageDecoders().FirstOrDefault(decoder => decoder.FormatID == img.RawFormat.Guid);

    // Note: this will throw an exception if "file" is not an Image file
    // quick fix is a try/catch, but there are more sophisticated methods
    public static ImageCodecInfo GetCodecInfo(this string file)
    {
        using (var img = Image.FromFile(file))
            return img.GetCodecInfo();
    }
}

// Usage:
string file = @"C:\MyImage.tif";
string description = $"Image format is {file.GetCodecInfo()?.FormatDescription ?? "unknown"}.";
Console.WriteLine(description);

0

Phương pháp đơn giản nhất được Cesare Imperiali đưa ra như sau:

var format = new ImageFormat(Image.FromFile(myFile).RawFormat.Guid);

Tuy nhiên, .ToString () cho .jpg trả về "[ImageFormat: b96b3cae-0728-11d3-9d7b-0000f81ef32e]" thay vì "Jpeg". Nếu điều đó quan trọng với bạn, đây là giải pháp của tôi:

public static class ImageFilesHelper
{
    public static List<ImageFormat> ImageFormats =>
        typeof(ImageFormat).GetProperties(BindingFlags.Static | BindingFlags.Public)
          .Select(p => (ImageFormat)p.GetValue(null, null)).ToList();

    public static ImageFormat ImageFormatFromRawFormat(ImageFormat raw) =>
        ImageFormats.FirstOrDefault(f => raw.Equals(f)) ?? ImageFormat.Bmp;

}
// usage:
var format = ImageFilesHelper.ImageFormatFromRawFormat(Image.FromFile(myFile).RawFormat);
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.