Hot answers tagged compression
3
It basically depends on the file type you use. If it is a text file then compression happens at the file level. But if it is SequenceFile then compression could be at record level or block level. Note that here block means a buffer in using sequence file and not the hdfs block.
If it is block compression then multiple records are compressed into a block at ...
2
Correct, APKs have a maximum file-size of 50MB. To extend your app beyond the 50MB limit you can use one or two expansion files, each file being max 2GB. Refer to the official documentation for details regarding this.
I would also ask myself if all of these assets are needed to use the application. The app would have to be pretty damn good/provide a lot of ...
1
I was trying to determine if Apple implementation of SSL/TLS did support compression, but I have to say that I am afraid it does not.
At first I was hopeful that having a errSSLPeerDecompressFail error code, there has to be a way to enable the compression. But I could not find it.
The first obvious reason that Apple doesn’t support compression is several ...
1
You can significantly improve the compression of XML with XWRT preprocessing before feeding to a standard compressor such as zlib or lzma.
1
If you want to compress a single file, use ZipArchive class like below:
Sub Compress(filename As String, zippedFile As String)
If IO.File.Exists(zippedFile) Then IO.File.Delete(zippedFile)
If IO.File.Exists(filename) Then
Using archive As ZipArchive = ZipFile.Open(zippedFile, ZipArchiveMode.Create)
...
1
Probably it is a simple error.
The first parameter to pass to CreateFromDirectory should be a directory name, but you pass a file name.
Try with
If IO.File.Exists(filename) Then
IO.Compression.ZipFile.CreateFromDirectory(Path.GetDirectoryName(filename), _
zippedFile, CompressionLevel.Fastest, True)
End If
1
We use a zip library from http://xceed.com/Zip_Net_Intro.html, it works well.
[I am not affiliated with them, I just purchased their product after trying a few]
I just did a search, here is a free one: http://dotnetzip.codeplex.com/
1
I think that you should separate concerns and treat compression, uncompression, base 64 encode and base64 decode as separate concerns in separate methods. I am not able to deduce why you have involved Base64 - perhaps there is a good reason. Maybe you want the compressed string to be Base64 encoded?
Anyway, here is a version of your code that can compress ...
1
Buffer Problems
Your output buffer for both compress() and decompressToString() has a fixed size of 100. The output is smaller than 100 bytes however, so the end of the array will be unused (full of zeroes). When this is translated to Base64 the zeroes come out as A characters (the == is padding).
You need to only consider the part of the buffer that ...
1
Take a look at libarchive (BSD license). It is very powerful and you have tight control over your data: you can combine different blocks of memory as "files" inside the compressed file (.tar.gz for example). There are several nice tutorials inside.
1
You should tell us a bit more about your problem to allow for a specific answer. Do you need to move these files to a different machine? Are the dimensions of the arrays always the same?
In the simplest case where you just want to store the data - always with the same format - and only use it on your machine with the same code, all you need is a compression ...
1
The .Net encoder built-in to the library (at least the default Windows library provided by Microsoft) is pretty bad:
http://b9dev.blogspot.com/2013/06/nets-built-in-jpeg-encoder-convenient.html
I dug around and came across a project to implement a C# JPEG encoder by translating a C project over:
...
1
function compress(str){
var result = '',
current = '',
count = 0;
for(var i = 0; i <= str.length; i++)
if(i < str.length){
if(str[i] !== current){
if(current){
result += current + count.toString();
count = 0;
}
current = ...
1
function compress(str) {
var result = '',
last = null,
count = 0;
for (var i = 0; i < str.length; i++) {
var cur = str.substr(i, 1);
if (cur !== last || count == 9) {
if (last !== null) {
result += last + count;
}
last = cur;
count = 0;
}
...
1
Loop through the string and compare to the previous character:
function compress(str) {
var last = null, cnt = 0, result = '';
for (var i = 0; i < str.length; i++) {
var c = str.charAt(i);
if (last != c) {
if (last != null) {
result += last + cnt;
}
last = c;
cnt = 0;
...
Only top voted, non community-wiki answers of a minimum length are eligible

