mirror of
https://github.com/crskycode/GARbro.git
synced 2025-01-11 12:39:16 +08:00
use 'zlib' compression method instead of 'deflate'.
This commit is contained in:
parent
c5c996b092
commit
be3cf68c86
@ -12,13 +12,16 @@ class Inflate
|
||||
public static void Main (string[] args)
|
||||
{
|
||||
if (args.Length != 2)
|
||||
{
|
||||
Console.WriteLine ("Usage: deflate INPUT-FILE OUTPUT-FILE");
|
||||
return;
|
||||
}
|
||||
try
|
||||
{
|
||||
using (var input = File.Open (args[0], FileMode.Open, FileAccess.Read))
|
||||
using (var output = File.Create (args[1]))
|
||||
using (var stream = new DeflateStream (output, CompressionMode.Compress, CompressionLevel.Level5))
|
||||
input.CopyTo (stream);
|
||||
using (var output = File.Create (args[1]))
|
||||
using (var stream = new ZLibStream (output, CompressionMode.Compress, CompressionLevel.Level9))
|
||||
input.CopyTo (stream);
|
||||
Console.WriteLine ("{0} => {1}", args[0], args[1]);
|
||||
}
|
||||
catch (Exception X)
|
||||
|
Loading…
x
Reference in New Issue
Block a user