C# How can I test a file is a jpeg?

后端 未结 16 2327
失恋的感觉
失恋的感觉 2020-11-27 03:28

Using C# how can I test a file is a jpeg? Should I check for a .jpg extension?

Thanks

16条回答
  •  [愿得一人]
    2020-11-27 03:51

    Read the header bytes. This article contains info on several common image formats, including JPEG:

    Using Image File Headers To Verify Image Format

    JPEG Header Information

提交回复
热议问题