Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

image - What is the header size of png, jpg/jpeg, bmp, gif and other common graphics format?

I have search in google. I found something here, http://paulbourke.net/dataformats/bmp/ , but i can't understand the size of header.

Reading some webpages i got confused. http://en.wikipedia.org/wiki/JPEG

Can anyone give the correct information of header about all these format?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

PNG file contains 8-bytes header.

JPEG file (see specification) contains 2-bytes header (SOI) followed by series of markers, some markers can be followed by data array. Each type of marker has different header format. The bytes where the image is stored follows SOF0 marker (10-bytes length). However, between JPEG header and SOF0 marker there can be other segments.

BMP file contains 14-bytes header.

GIF file contains at least 14 bytes in its header.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...