How to detect if the jpg jpeg image file is corrupted(incomplete)?

前端 未结 2 439
南方客
南方客 2020-12-19 06:38

I have to show some images from others\' image server on my website but some of the images from the image server can only partially show like below image

The image

相关标签:
2条回答
  • 2020-12-19 06:47

    If you need a "programmatic" approach rather than the command line approach suggested by @MarkSetchell, you could create a very quick test for this in pretty much any programming language. Note that this will only find the kind of truncating corruption you mention in your question. Mark's method may be more reliable for finding corruption in general.

    As we know, any JPEG file or stream is written according to the JPEG Interchange Format. That means that they must start with a SOI (Start-of-Image) marker (the two bytes 0xFF, 0xD8) and end with the EOI (End-of-Image) marker (two bytes, 0xFF, 0xD9). These two markers will not be found anywhere else in a JPEG file/stream.

    If you first identify the file as a JPEG by inspecting the first two bytes and matching against the SOI marker, you could skip to the end and search backwards for the EOI marker. Most likely, this will either be the last two bytes or you will not find them at all. But it may be safer to do a search (perhaps for a limited length), as I think it may be allowed to place application-specific data in a JPEG file after the EOI (someone, please correct me if I'm wrong).

    0 讨论(0)
  • 2020-12-19 07:11

    I created a JPEG to test this using ImageMagick as follows:

    convert -size 1024x768 gradient: image.jpg
    

    and it was 14kB. Your image looks like it is incomplete, so I chopped off everything after 3kB like this:

    dd if=image.jpg bs=3000 count=1 > corrupt.jpg
    

    Now, if I run ImageMagick's identify command and discard stdout, just retaining stderr, I get:

    identify -verbose corrupt.jpg > /dev/null
    

    Sample Output

    identify: Premature end of JPEG file `corrupt.jpg' @ warning/jpeg.c/JPEGWarningHandler/364.
    identify: Corrupt JPEG data: premature end of data segment `corrupt.jpg' @ warning/jpeg.c/JPEGWarningHandler/364.
    

    Alternatively, you could discard stderr too and simply look at the exit code (0=success, anything else=error):

    identify -regard-warnings -verbose corrupt.jpg > /dev/null 2>&1
    echo $?
    1
    

    whereas for a complete image:

    identify -regard-warnings -verbose image.jpg > /dev/null 2>&1
    echo $?
    0
    

    ImageMagick is installed on most Linux distros and is available for macOS/OSX and Windows.

    0 讨论(0)
提交回复
热议问题