How to decompress gzip stream with zlib

Source: Internet
Author: User

How to decompress gzip stream with zlib

How to decompress gzip stream with zlib

I'm posting this in my journal because it trips me up every time I have to do this, and I need something googleable so I can easily find this info next time.

To decompress a GZIP format file with zlib, callInflateinit2WithWindowbitsParameter16 + max_wbits, Like this:

Inflateinit2 (& stream, 16 + max_wbits );

If you don't do this, zlib will complain about a bad stream format. by default, zlib creates streams with a zlib header, and on inflate does not recognize the different gzip header unless you tell it so. although this is already ented starting in version 1.2.1 ofZlib. hHeader file, it is not in the zlib manual.

Update: I 've added this as a question (and answer !) On Stack Overflow: How can I decompress a gzip stream with zlib?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.