Top "Compression" questions

The name given to the process of encoding data such that it uses lesser number of bits as compared to the original representation.

Is there a zip library for c# that is faster than DotNetZip

I m currently using Ionic zip library. I was curious if there s a faster one than this? As long …

c# .net compression zip dotnetzip
How to check whether file exists in zip file using dotnetzip

I am creating zip using dotnetzip library. But I don't know how to check if a file exists in the …

c# compression dotnetzip
OpenCV - Possible Options for Image Compression

thanks for taking the time to read my post. I'm working on a little project that is going well but …

opencv compression jpeg image-compression
Python script for minifying CSS?

I'm looking for a simple Python script that can minify CSS as part of a web-site deployment process. (Python is …

python css compression minify
How can I automatically compress and minimize JavaScript files in an ASP.NET MVC app?

So I have an ASP.NET MVC app that references a number of javascript files in various places (in the …

javascript asp.net-mvc compression extjs minimize
How can I protect myself from a zip bomb?

I just read about zip bombs, i.e. zip files that contain very large amount of highly compressible data (00000000000000000...). When …

java python security compression zip
Is it possible to get the compressed and uncompressed sizes of a file on a btrfs file system?

Is it possible to determine what the compressed size (I assume that is what is listed by ls -l) and …

shell file filesystems compression filesize
print content of more than one file in a zip archive

I have some zip files that are really large and I want to print them without extracting first. I am …

linux compression zip unzip
Compressing IplImage to JPEG using libjpeg in OpenCV

So I have this problem. I have an IplImage that i want to compress to JPEG and do something with …

compression opencv jpeg libjpeg
LZW decompression algorithm

I'm writing a program for an assignment which has to implement LZW compression/decompression. I'm using the following algorithms for …

algorithm compression lzw