Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a small byte array (under 25K) that I receive and decode as part of a larger message envelope. Sometimes this is an image, and when it is and image, sometimes it is a jpg. I have no context information other than the byte array, and need to identify both if it IS an image, and if the image is of type jpg.

Is there some magic number, or magic bytes that exist at the beginning, end or at some offset that I can look at to identify it?

An example of my code looks like this (from memory, not c/p):

byte[] messageBytesAfterDecode = retrieveBytesFromEnvelope();
if(null != messageBytesAfterDecode && messageBytesAfterDecode > 0){
    if(areTheseBytesAJpeg(messageBytesAfterDecode)){
        doSomethingWithAJpeg(messageBytesAfterDecode)
    }else{
        flagEnvelopeAsHavingBadContentInTheField();
    }
}

I really need what would go into the

areTheseBytesAJpeg(byte[] mBytes){}

method, or even a pointer to a spec that details it. I'm hoping there is a very quick way to make this determination, since I don't really want to read them into an Image, etc.

share|improve this question

5 Answers

up vote 17 down vote accepted

From wikipedia:

JPEG image files begin with FF D8 and end with FF D9.

http://en.wikipedia.org/wiki/Magic_number_(programming)

share|improve this answer
+1 for sheer speed...! – Antony Vennard Dec 28 '10 at 23:21
all google - it even put it in the results: google.com/search?&q=jpg+magic+number – zsalzbank Dec 28 '10 at 23:22
Nice. Let me run my tests and I shall return! – Kylar Dec 28 '10 at 23:24
that was really nice of it! mine was half wikipedia, half firefox. Must be what's slowing me down. – Antony Vennard Dec 28 '10 at 23:40
Worked like a charm, exactly what I asked for. – Kylar Dec 29 '10 at 0:19

Another source of "knowledge" about magic numbers (including for JPEG files) is the magic file used by the GNU/Linux file command.

If you have the file command installed, then file --version will tell you where the magic file lives, and you can read it using a text editor ... and careful reading of man 5 magic.

(And the magic file contents confirm the details of other answers.)

share|improve this answer
Thanks! Learned 2 somethings new! – Kylar Dec 29 '10 at 0:19

Quoting this wikipedia article:

JPEG image files begin with FF D8 and end with FF D9. JPEG/JFIF files contain the ASCII code for "JFIF" (4A 46 49 46) as a null terminated string. JPEG/Exif files contain the ASCII code for "Exif" (45 78 69 66) also as a null terminated string, followed by more metadata about the file.

share|improve this answer

A lot of formats are identified by so-called magic numbers. These are byte sequences usually in the front of the file to identify whether the following binary data is really what you think it is. A quick google search returned: http://www.linfo.org/magic_number.html and specifically the citation:

"Similarly, a commonly used magic number for JPEG (Joint Photographic Experts Group) image files is 0x4A464946, which is the ASCII equivalent of JFIF (JPEG File Interchange Format). However, JPEG magic numbers are not the first bytes in the file; rather, they begin with the seventh byte. Additional examples include 0x4D546864 for MIDI (Musical Instrument Digital Interface) files and 0x425a6831415925 for bzip2 compressed files."

share|improve this answer
Jfif is not necessarily the same as jpeg. Although, what most people mean when they say jpeg, is actually jfif, as they assume it uses YUV as a color format. – onemasse Jan 6 '11 at 12:05

A JPG file does have a specific header that you could use to determine a very good likelihood that it is a JPG file. However, it's not clear if you will have the entire file in the byte array.

Anyway, here's specifics on the header: http://www.fastgraph.com/help/jpeg_header_format.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.