输入一个字符串,然后使用 zlib.h 将其压缩(放气)返回
这听起来很容易,但它让我很困难。 我正在尝试创建一种方法,输入一个字符串,然后使用 zlib.h (来自 zlib.net 的那个)将其压缩(放气)返回
我已经阅读了 zlib.ha 几次,但没有成功:/
我认为我需要使用 deflateInit2() 函数,但是哇哦,看看它复杂的定义:
#define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
(strategy), ZLIB_VERSION, (int)sizeof(z_stream))
任何人都可以让我走上正轨吗?
It sounds easy, but it's giving me a hard time.
I am trying to create a method that inputs a string then return it compressed(deflated) using zlib.h (the one from zlib.net)
I've read the zlib.h a couple times, no success :/
I think I need to use the deflateInit2() function, but woah, look at its complex definition:
#define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
(strategy), ZLIB_VERSION, (int)sizeof(z_stream))
Anyone could put me on the right track please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论