minizはC言語の1ファイル”miniz.c”で作られたZIPライブラリ。簡単にプロジェクトに組み込んで使うことができる。
使うには”miniz.c”をインクルードして使うが、すでに大きいプロジェクトの場合は、このファイルは普通にコンパイルして、minizの機能を利用するファイルでは、MINIZ_HEADER_FILE_ONLYを定義してからインクルードする。こうすればヘッダファイルとして振舞う。warningがひどいのでここではそうした。
VC++2005で試した。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
// minizteston.cpp : Defines the entry point for the console application. // #include <stdio.h> #include <stdlib.h> #include <string.h> #define MINIZ_HEADER_FILE_ONLY #include "miniz.c" int main(int argc, char* argv[]) { const char* p0 = "ああああああああ会い言いいい言いいいいいいいいえwらうあおうぃうりおあうりあwらw" "fasfasjoiおいjふぁjふぉ位j羽得甥jふぉ位wふぁslkjfヵsjふぃおw3う398798478" "ふぉいじゃしjふぉいあ34893709877f809d7あおふぁえlkfじゃl;う" "asfjLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKruowiurw98787543jhakhfkjahkfhas" "fjaa9832747987979807亜0r7亜89ろいあうろぴうろ位あうウィルあwj"; uLong src_len = (uLong)strlen(p0); uLong cmp_len = compressBound(src_len); mz_uint8 *pCmp = (mz_uint8 *)malloc((size_t)cmp_len); int cmp_status = compress(pCmp, &cmp_len, (const unsigned char *)p0, src_len); if (cmp_status != Z_OK) { printf("compress() failed!\n"); } else { printf("Compressed from %u to %u bytes\n", src_len, cmp_len); } free(pCmp); return 0; } |
これは圧縮。あらかじめ全体をメモリで確保するので小さいサイズ向け。本体のサンプルではほかにもファイルを圧縮するものや、infalte、deflateを使って少しずつやる方法などがわかる。ただしファイルを直接圧縮する関数のファイル名引数がchar*なのでunicodeで困るかもしれない。