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

learn more… | top users | synonyms (1)

1
vote
0answers
24 views

smart PDF compression in Java (repeated elements)

As we are producing PDF reports, we noticed that single image repeated on each page (as we merge more reports together) takes incredible amount of space. For example : 500 documents each does have 1 ...
-1
votes
1answer
26 views

write my own delta compression? [closed]

Is there any reason that I absolutely should not write my own delta compression library (in C)? I'm working on proprietary project and cannot include any GPL'd code (and most others in fact).Being not ...
0
votes
0answers
4 views

Auto Compression of images Outlook 2013

I'm currently using both Outlook 2013 and Outlook 2010 in my office. In my signature the image is automatically compressed, is there a a way to turn this off? I have tried JPEG and PNG images but the ...
0
votes
1answer
32 views

Uncompress data in memory using Boost gzip_decompressor

I'm trying to decompress binary data in memory using Boost gzip_decompressor. From this answer, I adapted the following code: vector<char> unzip(const vector<char> compressed) { ...
1
vote
1answer
21 views

How do I read Snappy compressed files on HDFS without using Hadoop?

I'm storing files on HDFS in Snappy compression format. I'd like to be able to examine these files on my local Linux file system to make sure that the Hadoop process that created them has performed ...
0
votes
1answer
20 views

How to compress http request on the fly and without loading compressed buffer in memory

I need to send voluminous data in a http post request to a server supporting gziped encoded requests. Starting from a simple public async Task<string> DoPost(HttpContent content) { ...
0
votes
3answers
23 views

GZipStream with large files doesn't work well [closed]

I want to compress some very large GML files (1-10GB). I wrote a method for this, but it does not work well. If I decompress it using 7-zip for Windows (or something else), I get the file that looks ...
-2
votes
1answer
32 views

PHP/JS wav compression [closed]

I am generating a wave file (.wav) in a PHP script on my server, which I am then sending to the client through a GET request. Now my problem is that the download speed of the client limits the file ...
2
votes
1answer
39 views

Tomcat 7 GZIP compression not working

I have added the following lines in tomcat's conf/server.xml file to enable gzip compression but its not working. Pages are still uncompressesd. <Connector port="8080" compression="on" ...
2
votes
1answer
80 views

C++ Algorithm compression ratio calculation

I am stuck since 2 days with a seemingly simple calculation. But I just don't get it. I am encoding an audio file with a compressing algorithm. The entire audio file is separated into "chunks" of ...
1
vote
1answer
39 views

C#: video compression using aforge.net

My application receives a sequence of images (BitmapImage) from external device with rate 30 fps. I'm using Aforge.net library for save the received stream in .avi file. I used the following code for ...
0
votes
1answer
32 views

PHP - Compress a txt file while maintaining the file extension

I want to compress a .txt file in PHP while maintaining the file extension. When I decompress the .gz file the extension (.txt) in the .gz file is removed. (test.txt becomes -> test) Here's a example ...
1
vote
1answer
41 views

How can I convert a zip/compressed file into a string of characters in PHP?

I'm making a php script that would create/build an XML request, zip the xml and then encode it into base64. Here's a snippet of my code: $url = "http://cc-dev.com/servlet/Integration"; $xml = ...
0
votes
0answers
15 views

LZ77 compression of palmdoc

I am trying to create a utility for generating palmdoc/mobipocket format ebook files, it is said that mobi uses LZ77 compression technique to compress their records, but I found that there is quite a ...
0
votes
1answer
35 views

JS compression - PageSpeed (Google Chrome report)

I'm running PageSpeed google chrome extension to check performance of my webpage. I believe I have got compressed JS file (See attached code) but report says It can be compressed again to get 59% ...
-1
votes
0answers
14 views

Good way to reduce number of colors in a PDF file? [closed]

I have pages of handwritten notes that I decided to scan to a PDF. Somehow, 153 pages of notes turned into a 156.4 MB PDF file. The notes are scanned in color because I used four different colors: ...
0
votes
2answers
11 views

Compression algorithm for files smaller than 10MB with largest compression ratio

What lossless compression algorithm can I use to compress files smaller than 10MB that delivers the largest compression ratio? It doesn't matter if it will cost a lot of CPU cycles or memory.
1
vote
0answers
21 views

Database size not reduced after compressing tables [migrated]

In MS SQL Server 2008 R2 I use table compression. My table size reduced from 1770 MB to 250 MB , but the database size was not reduced. Why?
1
vote
0answers
64 views

C++ library for fast bit compression and arithmetic

I'm working on a C++ library to manage very large value masks (each 2^32 bits, about .5 GB). Each value mask will represent possible values of an 32-bit int. For example, 00101000 would represent the ...
1
vote
1answer
23 views

GZipStream decompress a compressed file from 4.0 using 4.5

Ok, this is hard to search for and see if there is anyone else that might have run into this problem. I am using the GZipStream to Compress XML files in my application which was developed using VS ...
1
vote
1answer
22 views

ECDSA: How to get y coordinate from uncompressing x using openssl

What I am trying to do with ECDSA is take an x "compressed" coordinate and a y "bit" from values taken from external ECDSA hardware (it's really a public key) and then trying to recover the y ...
-1
votes
1answer
37 views

Compress and decompress string in c#

I know there is system.io.compression.gzipstream but it accept a stream as arguments. I'm looking for a method that accept string eg. string compress(string stringtocompress,compressionlevel ...
0
votes
1answer
28 views

how to check the actual size of archived file without extracting it? [closed]

I've got an archive foo.tar.gz(8M of actually size), which contains a large sparse file(around 10G) in it. My question is, how could I know the actual sparse file size without extracting the ...
0
votes
0answers
17 views

How to get nginx to uncompress gzip encoded pages

I have a few nginx servers for a pretty big website. I'm proxying an external site, who ONLY sends their content encoded as gzip, even if I send 'Accept-Encoding: ' headers with my request. It is ...
0
votes
0answers
30 views

Script to Compress ember.js app

I am trying to write a script to compress my js files into one file for my ember app. I have been using Yui Compressor which works fine with my js files. I am having trouble finding a compressor for ...
0
votes
0answers
48 views

javascript/jquery url shortner/compressor

I have to pass context variables,i.e. current state along with my URL. But this is making my URLs very long enought. I need to shorten my URLs such that I am able to decompress them and extract my ...
-1
votes
1answer
23 views

Validating a zip archive file

Using ZipArchive how can I check if a file is a valid zip archive? I am currently catching an InvalidDataException when attempting to enumerate through the zip entries but I don't believe that this ...
-1
votes
2answers
45 views

How do I improve the compressibility of my PNG images? [closed]

I'd like to know how to ensure good compressibility on PNG images. Note that I'm not asking for how to compress PNG images well (using tools like pngcrush) but how to ensure that the image content in ...
0
votes
0answers
23 views

Combining memory stream and convert to file in C#

I have a multipage TIFF file, and each page of this will be extracted in to memorystream passed to another method as a collection of stream. At the receiving end is it possible to combine these ...
0
votes
0answers
25 views

Compressing a multipage TIFF document in CCITT4 C#

I have a multipage TIFF document and when tried to compress that (CCITT4) I am getting only the last page compressed. Is there anyway that i can compress all the pages of a file directly. Currently I ...
0
votes
0answers
33 views

Enable compression in Windows Azure

How to enable compression in Windows Azure? I am trying to deploy my web application developed in java (OfBiz) on Windows Azure Cloud. I am not using Apache. I am using tomcat only. How can I enable ...
0
votes
3answers
57 views

Are there any asymmetric compression algorithms which are fast compression / slow decompression?

I have looked at many "fast compression" libraries, but all of them feature fast decompression rather than fast compression. I am working on a system where fast compression is more highly valued than ...
0
votes
0answers
33 views

Can Windows built-in compression work on a .csv file?

When I execute the following batch file to compress a .txt file, it works fine. When I modify the script to compress a .csv file, I get an empty .zip as a result. Any ideas? set ...
1
vote
1answer
60 views

Compress short fixed length string (52 characters) down to less than 40

I tried googling for an algorithm to compress/encrypt a shor fixed size string from 52 characters down to 40 but can't seem to find any. Target strings are random alphanumeric [A-Z0-9] e.g ...
0
votes
0answers
23 views

Implement a file compression with Hadoop that the file already exists in HDFS

How can I implement a file compression with Hadoop that the file already exists in HDFS? I am programing a project, that require me to implement a inner compression in Hadoop. I have no idea about ...
-2
votes
0answers
10 views

UIWebview render from server Xcode [closed]

I would like to know how to render data separately from other server. Let say I browse to www.inmite.com . Instead of directly rendering, I want to send to server and server compress that one and send ...
0
votes
1answer
19 views

Compress a folder using tar in MATLAB

I try compress a folder in MATLAB using tar. I want to assign the current date as the name of the archive file. When I try tar 'datestr(now)' FooFolder Nothing happens. With tar datestr(now) ...
1
vote
0answers
14 views

Manually splitting and compressing input for Amazon EMR

Instead of using hadoop-lzo to index my LZO input file, I decided to simply split it into a chunks, which compressed with LZO would be close to 128MB (since it is default block size on Amazon ...
-1
votes
2answers
51 views

PDF Compression like smallpdf.com programmatically in C#

I am using Itextsharp for C# to stamp information/merge fields into a pdf. This is working well. My problems is that that the pdfs are a little large, 1.1M sometimes. I would like to make them ...
0
votes
0answers
45 views

UIImageJPEGRepresentation sends less bytes but leaves image just as big on the server

I have a strange problem that I can't get to the bottom of. I'm sure I'm missing something really important. I want to restrict the size of the image I send from an iPad to the server, so I'm ...
0
votes
0answers
13 views

Given information about a video file, calculating data rate, compression, etc.?

I am studying for a Computer Networks exam and I feel like this question is very simple, I'm just having trouble figuring out what is being asked, I suppose. The question reads: "A 2 hour video film ...
-1
votes
1answer
42 views

compression zero bit sequences

I tried to find some library (C++) or algorithm which could compress array of bits with these properties: There are seqences of zero bits and sequences of bits, which carry the information (1 or 0). ...
1
vote
0answers
27 views

How to use lzma2 in python code?

I know there is a module called pylzma. But it only support lzma, not lzma2. My current solution is using subprocess.call() to call 7z program. Is there a better way?
0
votes
2answers
27 views

How to zip a folder using ZipKit?

Id like to zip a folder using ZipKit?? I cant seem to locate a good documentation for the usage of functions in the ZipKit library. Can some one explain the method for folder zipping? ZKFileArchive ...
1
vote
3answers
115 views

Data Compression Algorithms

I was wondering if anyone has a list of data compression algorithms. I know basically nothing about data compression and I was hoping to learn more about different algorithms and see which ones are ...
0
votes
2answers
43 views

Is possible to denote a vector of numbers uniquely as a number?

Given a vector of numbers: V=(v1, v2, ..., vn). These n numbers don't need to be distinct or sorted. Suppose that we have a few vectors V1, V2, ..., Vm. Is possible to use a number (integer or float ...
0
votes
0answers
41 views

GWT/GAE 1MB .cache.js file is not gzip compressed

I'm using GWT's splitting method to split the code into multiple fragments. My app is served by a Google App engine server and uses gzip compression to send the fragments. The problem is that one of ...
0
votes
1answer
89 views

PowerShell: move files to zip with System.IO.Compression.FileSystem

How can I move log files to zip archives with System.IO.Compression.FileSystem in PowerShell? I have more folders with log files per application: app1logfolder |-app1_20130507.log ...
0
votes
3answers
45 views

Compressing string to specified max chars in Java

I want to compress any string, if it has more than 50chars in it. If char size if less than 50, then let it be untouched, else it has to be compressed to required limit (50). I will be inserting ...
0
votes
0answers
59 views

Creating a Sequence File outside Java Hadoop Framework

I have been experimenting with generating sequence files for Hadoop outside the Java framework, Python to be specific. There is a python-hadoop module which provides mostly similar framework to do ...

1 2 3 4 5 62