JPEG 中的霍夫曼编码

发布于 2024-12-20 14:27:47 字数 196 浏览 2 评论 0原文

这是我的 JPEG 图片十六进制内容(我在图片上标记了 FFC4 标记)。正如你所看到的,在字节0x01之后有值0xA2!这怎么可能,因为标准说 0x10 之后的接下来的 16 个字节告诉我们每个长度有多少个代码? 1 位不可能有这么多的代码。我错了吗? JPEG 十六进制内容

This is my JPEG picture hex content (I marked FFC4 marker on picture). As you can see, after the byte 0x01 there is value 0xA2! How that can be possible, because the standard says that the next 16 bytes after the 0x10 tell us how many codes of each length? It is impossible to have that number of codes with 1 bit. Am I wrong?
JPEG hex content

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末的微笑 2024-12-27 14:27:47

您看到的是霍夫曼块的长度(按大端顺序),以字节为单位(减去 2 以包括长度字段的长度)。

huffman 块的长度为 0x1a2 字节。
长度后面有一个字节表示霍夫曼表信息(表号以及该表是否用于 AC 或 DC 系数)

开始读取信息值后的长度代码:

    Information Byte = 0x00    
    Number of length 1 codes = 0
    Number of length 2 codes = 0
    Number of length 3 codes = 7
    ...

What you are seeing is the length of the huffman block (in big endian order) in bytes (subtract 2 to include length of length field).

The huffman block is 0x1a2 bytes long.
Following the length there is a single byte representing the huffman table information (table number and also whether or not the table is for AC or DC coefficients)

Start reading the length codes after the information value:

    Information Byte = 0x00    
    Number of length 1 codes = 0
    Number of length 2 codes = 0
    Number of length 3 codes = 7
    ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文