0

生の jpeg データを取得したい - メタデータなし。jpegの「標準」を見て非常に混乱しています。

マーカー「ツリー」についての私の理解はどれくらい正しいですか?

0xFFD8 - Identifies the file as an image
    0xFFE? - EXIF, JFIF, SPIFF, ICC, etc 
        0x???? - the length of the tag
    0xFFD8 - Start of Image
        0xFFE0 - should follow SOI as per spec, but often preceded by comments ???
        0x???? - Matrices, tags, random data ???

        There are never other markers in-between these markers? 
        Or these include the matrices and such?
        0xFFDA - Start of Stream - This is what I want, yes?
            0xXXXX - length of stream
            0xFFD9 - End of Stream (EOI)

        0x???? - Comment tags, extra exif, jfif info???
0xFFD9 - End of Image

0xFF00 - escaped 0xFF, not to be confused with a marker

これは私の読み物です:

http://en.wikipedia.org/wiki/JPEG

https://ExifTool.org/TagNames/JPEG.html

http://www.media.mit.edu/pia/Research/deepview/exif.html

http://www.faqs.org/faqs/jpeg-faq/part1/section-15.html

4

2 に答える 2

2

SOS (0xFFDA) の他に、次のものが必要になる場合もあります。

0xFFDB DQT 量子化テーブル 0xFFC4 DHT ハフマン テーブルの定義

于 2010-04-06T02:29:17.947 に答える