active questions tagged compression - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:23:45Z http://stackoverflow.com/feeds/tag/compression http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1864908/compress-file-before-upload-via-http 1 Compress file before upload via http bleevo 2009-12-08T06:04:21Z 2009-12-08T10:17:12Z <p>What I would like to know is if it is possible to compress data being sent from the clients browser (a file upload) to the server.</p> <p>Flash, silverlight and other technology is ok!</p> http://stackoverflow.com/questions/1862185/does-the-externalinterface-in-flex-3-have-a-data-size-limitation 1 Does the ExternalInterface, in Flex 3, have a data size limitation? Phobis 2009-12-07T19:06:52Z 2009-12-08T05:48:21Z <p>I am using the ExternalInterface on Flex 3. We are actually using flex to compress a large amount of DOM data, so this is specifically being used with LARGE data. </p> <p>To further investigate, if there is a limitation, is this universal? (IE. Silverlight)</p> <p>First, let me state that this is being done with an application that was made by inexperienced software engineers. This is an app that we need to buy time by compressing the data so that we can build a long-term solution. We have no other options, unfortunately. </p> <p>Background: This is an application that is actually a web-spreadsheet. Our long term solution is to make a Office Business Application.</p> http://stackoverflow.com/questions/1860659/will-encrypting-a-comma-seperated-list-of-ids-make-it-smaller-to-fit-into-a-cook 0 will encrypting a comma seperated list of ID's make it smaller to fit into a cookie? mrblah 2009-12-07T15:22:29Z 2009-12-07T23:30:23Z <p>say I want to store ID's in a cookie:</p> <p>123,1232,3443,2343,2344422,2342</p> <p>seeing that a cookie has a 4kb limit (or whatever), would encrypting the value allow for more storage somehow?</p> <p>if so, which encryption would be best? (not really worried about security, just want to store more with less footprint)</p> http://stackoverflow.com/questions/1852006/mpeg-1-compression-producing-macroblocks -1 MPEG-1 compression - producing macroblocks Soren M 2009-12-05T11:48:38Z 2009-12-05T11:48:38Z <p>Hey everybody</p> <p>I'm stuck with a basic problem in my MPEG-1 compression. I have to produce macroblocks within a image. A macroblock consists of 16 x 16 pixels - where 4 x 8x8 is luminance, 1 x 8x8 is Cb and 1 x 8x8 Cr. In MATLAB I want to produce a cell matrix containing this. Any suggestions?</p> http://stackoverflow.com/questions/1848977/data-compression-algorithms-books 1 Data compression algorithms books? Danielb 2009-12-04T18:57:54Z 2009-12-04T19:17:50Z <p>I'm looking for a good book on data compression algorithms (huffman, LZW etc), preferably with example code (on CD or website) in C, C++ or python.</p> <p>Found these on Amazon: they both look pretty good but pricey (so I'd only buy one).</p> <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/012620862X" rel="nofollow">Introduction to Data Compression</a>, Third Edition</li> <li><a href="http://rads.stackoverflow.com/amzn/click/1846286026" rel="nofollow">Data Compression: The Complete Reference</a></li> </ul> <p>Any recommendations?</p> http://stackoverflow.com/questions/1840979/given-disk-is-slow-and-multiple-cores-does-on-the-fly-decompression-make-sense-fo 2 Given disk is slow and multiple cores does on the fly decompression make sense for performance? Alex Stoddard 2009-12-03T16:13:26Z 2009-12-04T15:26:54Z <p>It used to be that disk compression was used to increase storage space at the expense of efficiency but we were all on single processor systems back then. </p> <p>These days there are extra cores around to potentially do the decompression work in parallel with processing the data. </p> <p>For I/O bound applications (particularly read heavy sequential data processing) it might be possible to increase throughput by only reading and writing compressed data to disk.</p> <p>Does anyone have any experience to support or reject this conjecture?</p> http://stackoverflow.com/questions/1829256/python-3-best-string-compression-method-to-minimize-the-size-of-a-sqlite3-db 0 Python 3: Best string compression method to minimize the size of a sqlite3 db MadSc13ntist 2009-12-01T22:02:52Z 2009-12-02T22:21:39Z <p>I recently created a script that parses several web proxy logs into a tidy sqlite3 db file that is working great for me... with one snag. the file size. I have been pressed to use this format (a sqlite3 db) and python handles it natively like a champ, so my question is this... what is the best form of string compression that I can use for db entries when file size is the sole concern. zlib? base-n? Klingon?</p> <p>Any advice would help me loads, again just string compression for characters that are compliant for URLs.</p> http://stackoverflow.com/questions/1830665/uncompress-zlib-string-in-using-bytearrays 2 Uncompress Zlib string in using ByteArrays Srirangan 2009-12-02T04:32:42Z 2009-12-02T11:58:40Z <p>Hi all,</p> <p>I have a web application developed in Adobe Flex 3 and Python 2.5 (deployed on Google App Engine). A RESTful web service has been created in Python and its results are currently in an XML format which is being read by Flex using the HttpService object.</p> <p>Now the main objective is to compress the XML so that there is as less a time between the HttpService send() method and result events. I looked up Python docs and managed to use zlib.compress() to compress the XML result.</p> <p>Then I set the HttpService result type from "xml" to "text" and tried using ByteArrays to uncompress the string back to XML. Here's where I failed. I am doing something like this:</p> <pre><code>var byteArray:ByteArray = new ByteArray(); byteArray.writeUTF( event.result.toString() ); byteArray.uncompress(); var xmlResult:XML = byteArray.readUTF(); </code></pre> <p>Its throwing an exception at byteArray.uncompress() and says unable to uncompress the byteArray. Also when I trace the length of the byteArray it gets 0.</p> <p>Unable to figure out what I'm doing wrong. All help is appreciated.</p> <p><strong>-- Edit --</strong></p> <p><strong>The code:</strong></p> <pre><code># compressing the xml result in Python print zlib.compress(xmlResult) # decompresisng it in AS3 var byteArray:ByteArray = new ByteArray(); byteArray.writeUTF( event.result.toString() ); byteArray.uncompress() </code></pre> <p>Event is of type ResultEvent.</p> <p><strong>The error:</strong></p> <p>Error: Error #2058: There was an error decompressing the data.</p> <p>The error could be because the value of byteArray.bytesAvailable = 0 which means the raw bytes python generated hasn't been written into byteArray properly..</p> <p>-- Sri</p> http://stackoverflow.com/questions/1826111/net-compression-and-sql-server-2005-nvarcharmax 1 .Net Compression and SQL Server 2005 NVARCHAR(MAX) John 2009-12-01T13:11:08Z 2009-12-01T13:17:05Z <p>Can I safely store a .Net compressed memory stream (System.IO.Compression) in an SQLServer 2005 NVARCHAR(MAX) field? SQLServer 2008 is not an alternative. </p> http://stackoverflow.com/questions/479218/how-to-compress-small-strings 2 How to compress small strings taw 2009-01-26T09:26:59Z 2009-12-01T11:41:11Z <p>I have an sqlite database full of huge number of URLs and it's taking huge amount of diskspace, and accessing it causes many disk seeks and is slow. Average URL path length is 97 bytes (host names repeat a lot so I moved them to a foreign-keyed table). Is there any good way of compressing them? Most compression algorithms work well with big documents, not "documents" of less that 100 bytes on average, but even 20% reduction would be very useful. Any compression algorithms that would work? Doesn't have to be anything standard.</p> http://stackoverflow.com/questions/1817482/data-compression 0 Data Compression sfactor 2009-11-30T01:38:57Z 2009-11-30T17:31:08Z <p>i have a task to compress a stock market data somehow...the data is in a file where the stock value for each day is given in one line and so on...so it's a really big file.</p> <p>Eg, <br> 123.45 <br> 234.75 <br> 345.678 <br> 889.56 <br> .....<br></p> <p>now the question is how to compress the data (aka reduce the redundancy) using standard algorithms like Huffman or Arithmetic coding or LZ coding...which coding is most preferable for this sort of data??...</p> <p>I have noticed that if i take the first data and then consider the difference between each consecutive data, there is lot of repetition in the difference values...this makes me wonder if first taking these differences, finding their frequency and hence probalility and then using huffman coding would be a way??...</p> <p>Am i right?...can anyone give me some suggestions.</p> http://stackoverflow.com/questions/1820807/binary-encoding-for-low-bandwidth-connections 1 Binary encoding for low bandwidth connections? Jorge Córdoba 2009-11-30T16:21:58Z 2009-11-30T17:29:55Z <p>In my application I have a simple XML formatted file containing structured data. Each data entry has a data type and a value. Something like</p> <pre><code>&lt;entry&gt; &lt;field type="integer"&gt;5265&lt;/field&gt; &lt;field type="float"&gt;34.23&lt;/field&gt; &lt;field type="string"&gt;Jorge&lt;/field&gt; &lt;/entry&gt; </code></pre> <p>Now, this formatting allow us to have the data in a human readable form in order to check for various values, as well as performing transformation and reading of the file easily for interoperability.</p> <p>The problem is we have a very low bandwidth connection (about 1000 bps, yeah, thats bits per second) so XML is no exactly the best format to transmit the data. I'm looking for ways to encode the xml file into a binary equivalent that its more suitable for transmission.</p> <p><strong>Do you know of any good tutorial on the matter?</strong></p> <p>Additionally we compress the data before sending (simple GZIP) so I'm a little concerned with losing compression ratio if I go binary. <strong>Would the size be affected (when compressing) so badly that it would be a bad idea to try to optimize it in the first place?</strong></p> <p>Note: This is not premature optimization, it's a requisite. 1000 bps is a really low bandwidth so every byte counts.</p> <p>Note2: Application is written in c# but any tutorial will do.</p> http://stackoverflow.com/questions/855158/how-to-check-if-iis-compression-with-https-ssl-is-working 0 How to check if IIS Compression with HTTPS/SSL is working? Gern Blandston 2009-05-12T22:19:56Z 2009-11-30T11:00:04Z <p>I've setup a website for IIS compression, but it doesn't appear to be working for HTTPS, just HTTP. Is there something that needs to be configured to get this to work, or does this not work in IIS? What options are there?</p> <p>UPDATE: According to <a href="http://software.intel.com/en-us/articles/http-compression-for-web-applications/" rel="nofollow">this</a> the compression is occurring before the encryption. If compression is occurring for SSL requests, where do I see it? </p> <p>UPDATE2: I went back to the metabase.xml file and discovered that the changes I made were gone. Here's what I had:</p> <pre><code>HcDynamicCompressionLevel="9" HcFileExtensions="htm html js css txt" HcOnDemandCompLevel="10" HcPriority="1" HcScriptFileExtensions="asp dll aspx exe" </code></pre> <p>I'm wondering if the in-memory metabase overwrote the changes I made before I was able to run IISRESET /RESTART??</p> <p>Thanks!</p> <p>Chris</p> http://stackoverflow.com/questions/70347/zlib-compatible-compression-streams 0 Zlib-compatible compression streams? Ben Collins 2008-09-16T08:25:33Z 2009-11-30T10:59:28Z <p>Are System.IO.Compression.GZipStream or System.IO.Compression.Deflate compatible with zlib compression?</p> http://stackoverflow.com/questions/1804595/zip3-0-exclude-file-list 0 Zip3.0 exclude file list unknown (yahoo) 2009-11-26T16:21:48Z 2009-11-30T08:42:11Z <p>Does <a href="http://www.info-zip.org/Zip.html" rel="nofollow">Info-Zip</a>'s latest release Zip3.0 support exclude list file? As in, can one pass a file(containing names of the files to be excluded) name as a parameter to zip? I could see that one can pass only exclude patterns as arguments. Is there any limit on the number of exclude patterns that one can pass?</p> http://stackoverflow.com/questions/1818316/how-to-minimize-the-no-of-css 0 How to minimize the no of css Shashi Bhushan 2009-11-30T07:29:34Z 2009-11-30T08:03:37Z <p>Just like javascript compressor, i use the same technique for css. First, i merge all the file into a single file and then compressor. But, the behaviour of HTML is not same as earlier with multiple css file. What is the best way to minimize the the no of CSS File?</p> http://stackoverflow.com/questions/1817066/transparent-sqlite-data-compression 0 Transparent SQLite Data Compression Checkers 2009-11-29T22:54:30Z 2009-11-29T23:37:12Z <p>I am looking for an existing solution for transparent SQLite 3 zlib compression using <a href="http://www.sqlite.org/c3ref/vfs.html" rel="nofollow">a custom VFS implementation</a> and <a href="http://www.sqlite.org/c3ref/io%5Fmethods.html" rel="nofollow">a custom IO methods implementation</a>.</p> <p>Is anyone aware of an existing project that already does that, or will I have to roll my own? I vaguely remember seeing something similar a year ago, but can't find it anymore.</p> http://stackoverflow.com/questions/1816089/how-to-compress-an-flv-movie-in-java 1 How to compress an FLV movie in java? Rakesh Juyal 2009-11-29T17:13:43Z 2009-11-29T18:59:07Z <p>How can we compress the flv movie? Is there any free library which i can use?<br> for compressing the video i can go for reducing the resoultion as well, even framerate reducing is acceptable to me.</p> http://stackoverflow.com/questions/1042468/blackberry-problem-with-gzip-decompression 0 BlackBerry - Problem with GZip decompression coldice 2009-06-25T06:48:51Z 2009-11-26T06:59:39Z <p>There is a strange problem I've run in using <a href="http://www.blackberry.com/developers/docs/4.7.0api/net/rim/device/api/compress/GZIPInputStream.html" rel="nofollow">RIM compression API</a>, I can't make it work as it's described in documentation.<br /> If I gzip plain text file using <a href="http://www.gzip.org/" rel="nofollow">win gzip tool</a>, add gz to resources of blackberry project and in app try to decompress it, there will be infinite loop, gzis.read() never return -1... </p> <pre><code>try { InputStream inputStream = getClass().getResourceAsStream("test.gz"); GZIPInputStream gzis = new GZIPInputStream(inputStream); StringBuffer sb = new StringBuffer(); char c; while ((c = (char)gzis.read()) != -1) { sb.append(c); } String data = sb.toString(); add(new RichTextField(data)); gzis.close(); } catch(IOException ioe) { } </code></pre> <p>After the compressed content there is repetition of 65535 value in gzis.read(). The only workaround I've found is dumb </p> <pre><code>while ((c = (char)gzis.read()) != -1 &amp;&amp; c != 65535) </code></pre> <p>But I'm curious what is the reason, what I'm doing wrong, and why <a href="http://en.wikipedia.org/wiki/65535%5F%28number%29" rel="nofollow">65535</a>?</p> http://stackoverflow.com/questions/1361495/blackberry-how-to-retrieve-images-from-a-zip-resource-file 0 Blackberry - How to retrieve images from a zip resource file? Jessu 2009-09-01T09:32:18Z 2009-11-26T06:57:38Z <p>I am using eclipse &amp; JDE to develop Blackberry Application. I compressed a folder which has set of images in .jpg and .png formats. Please help me, how to retrieve images form the zipped file?</p> <p>Thank you.....</p> http://stackoverflow.com/questions/1758625/blackberry-unpack-zip-file 1 BlackBerry - Unpack Zip File harrywynn 2009-11-18T19:55:13Z 2009-11-26T06:49:30Z <p>I'm developing a BlackBerry application in which I need to unpack a zip file compressed with PKZIP. The package could have one file in it, or it could have 10; it will vary in each case. I know that the BlackBerry API has native support for GZip and Zlib, although I'm pretty sure that these methods aren't going to be helpful in my case. It doesn't look as if I can extract the individual files using these calls.</p> <p>I've tried JZlib (<a href="http://www.jcraft.com/jzlib/" rel="nofollow">http://www.jcraft.com/jzlib/</a>), which compiled fine, but again it doesn't look as if the methods contained therein are going to allow me to pull the individual files.</p> <p>It appears as if this is possible, as there's an application called Ziplorer (<a href="http://www.s4bb.com/software/ziplorer/" rel="nofollow">http://www.s4bb.com/software/ziplorer/</a>) that claims to do perform this exact procedure. How they're doing it, however, escapes me.</p> <p>So here I am after hours of Googling. I'm welcoming any insight into my problem with open arms.</p> http://stackoverflow.com/questions/1639562/blackberry-programmatically-extract-open-zip-file 1 Blackberry - Programmatically extract/open zip file KKlucznik 2009-10-28T19:34:38Z 2009-11-26T06:48:50Z <p>I have looked online with mixed results, but is there a way to programmatically extract a zip file on the BB? Very basic my app will display different encrypted file types, and those files are delivered in a zip file. My idea was to have the user browse to the file on their SDCard, select it, and I extract what i need as a stream from the file. is this possible?</p> http://stackoverflow.com/questions/1688884/pvrtc-format-compromises-image-quality 0 PVRTC format compromises image quality Sankar 2009-11-06T16:53:22Z 2009-11-26T05:47:21Z <p>Hi,</p> <p>For iPhone game development, I switched from PNG format to PVRTC format for the sake of performance. But PVRTC compression is ruining the quality of the images.. I am using spritesheets with transparencies for the character animations.. and the pvrtc makes the edges look muddy around the character near the transparencies.</p> <p>I read that pvrtc cant handle edges and all.. but is there a solution to it? Can we do something to these images whereby atleast there wont be these muddy boundaries around the character..</p> <p>Sankar</p> http://stackoverflow.com/questions/1801135/what-is-the-meaning-of-o-polylogn-in-particular-how-is-polylogn-defined 1 What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined? Managu 2009-11-26T01:45:59Z 2009-11-26T02:02:05Z <p><b>Brief:</b><br/> When academic (computer science) papers say "O(polylog(n))", what do they mean? I'm not confused by the "Big-Oh" notation, which I'm very familiar with, but rather by the function polylog(n). They're not talking about the complex analysis function <a href="http://en.wikipedia.org/wiki/Polylogarithm" rel="nofollow">Li<sub>s</sub>(Z)</a> I think. Or are they? Something totally different maybe?</p> <p><b>More detail:</b><br/> Mostly for personal interest, I've recently been looking over various papers on Compressed Suffix Arrays, e.g. <a href="http://www.springerlink.com/content/nacxj2hx2qvffk2e/" rel="nofollow">Advantages of Backward Searching -- Efficient Secondary Memory and Distributed Implementation of Compressed Suffix Arrays</a>. The computational complexity estimates stated sometimes involve polylog(n), which is a function I'm not familiar with.</p> <p>Wikipedia gives a definition of <a href="http://en.wikipedia.org/wiki/Polylogarithm" rel="nofollow">polylog<sub>s</sub>(z)</a> which appears to mainly be about complex analysis and analytic number theory. My suspicion is that it's not related to the polylog(n) in the compression papers, though I'd love to hear otherwise from someone more knowledgeable. If this is the case, why exactly is it thought reasonable to omit the subscript?</p> <p>My only other guess is that maybe O(polylog(n)) is supposed to mean "Asymptotic to a polynomial function of log(n)." But that's only a guess: I have no evidence of this, and it would be an abuse of notation to boot.</p> <p>In any case, a link to a reasonably authoritative definition would be greatly appreciated!</p> http://stackoverflow.com/questions/295419/compressed-backups-in-sql-server-2005 0 Compressed backups in SQL Server 2005 Vinko Vrsalovic 2008-11-17T11:57:55Z 2009-11-24T01:05:08Z <p>What is the best free way to get your maintenance plan-generated backups compressed?</p> <p>I know there are non-free tools that will compress the backups, but I'm not interested in them.</p> <p>Options:</p> <ol> <li>Have a T-SQL task after the backups that will run a script through xp_cmdshell that compresses every non compressed backup.</li> <li>???</li> </ol> <p>Any other ideas welcome, I'd like to avoid writing a script/program.</p> http://stackoverflow.com/questions/1686525/pvrtc-compression-increasing-the-file-sizes-of-png 0 PVRTC compression increasing the file sizes of PNG Sankar 2009-11-06T09:47:49Z 2009-11-23T13:09:11Z <p>Hi,</p> <p>For iPhone game development, I switched from PNG format to PVRTC format for the sake of performance. But PVRTC compression is creating files that are much bigger than the PNG files.. So a PNG of 140 KB (1024x1024) gets bloated to 512 KB or more in the PVRTC format.. I read somewhere that a PNG file of 50KB got compressed to some 10KB and all, in my case, its the other way around..</p> <p>Any reason why it happens this way and how I can avoid this.. If PVRTC compression is blindly doing 4bpp conversion (1024x1024x0.5) irrespective of the transparencies in the PNG, then whats the compression we are achieving here..</p> <p>I have 100s of these 1024x1024 images in my game as there are numerous characters each doing some complex animations.. so in this rate of 512KB per image, my app would get more than 50MB.. which is unacceptable for my customer.. ( with PNG, I could have got my app to 10MB)..</p> <p>Sankar</p> http://stackoverflow.com/questions/1782709/pdf-file-compression 1 PDF file compression Neil Aitken 2009-11-23T11:58:57Z 2009-11-23T12:27:45Z <p>I have a requirement to dynamically generate and compress large batches of PDF files.</p> <p>I am considering the usual algorithms</p> <ul> <li>Zip</li> <li>Ace</li> <li>Rar</li> </ul> <p>Any other suggestion are welcome.</p> <p>My question is which algorithm is likely to give me the smallest file size. Speed and efficency are also important factors but size is my primary concern.</p> <p>Also does it make a difference whether I have many small files, or fewer larger files in each archive.</p> <p>Most of my processing will be done in PHP, but I'm happy to interface with third party executables if needed.</p> <p><strong>Edit:</strong></p> <p>The documents are primarily invoices and shouldn't contain any other images except for the company logo</p> http://stackoverflow.com/questions/1781758/rails-sending-cached-gzip-content-directly-to-client-using-cachesaction 0 Rails: Sending cached gzip content directly to client using caches_action Arvind 2009-11-23T08:19:46Z 2009-11-23T09:13:55Z <p>I am using caches_action to cache one of the action's response</p> <p>I want to save in the cache compression response and then send it as it is if browser supports that compression otherwise decompress it and then send it.</p> <p>Some characteristics of my content: 1. It rarely changes 2. My server gets requests from 90% gzip enabled browsers</p> <p>Do you see any issue with this approach?</p> <p>If you it is a right approach then is there a easy way to achieve the same?</p> http://stackoverflow.com/questions/105039/how-do-i-open-a-gz-gzip-file 0 How do I open a .gz gzip file? [closed] Zack Peterson 2008-09-19T20:01:41Z 2009-11-22T21:55:51Z <p>I've been given a file with .gz extension. It's aparently a gzip (<a href="http://en.wikipedia.org/wiki/Gzip" rel="nofollow">GNU zip</a>) compressed file.</p> <p>What free Windows utility can I use to open it?</p> http://stackoverflow.com/questions/1774718/java-path-compression 0 Java Path compression Ethan 2009-11-21T06:27:01Z 2009-11-21T08:05:10Z <p>Hi, I have to create a method find that would use a local Set to collect the objects and the root. Then, I would compress the object e (in the parameter) and have the roost as its parent. Then, I would return the reference to the root. I can use the Graph, Map, and set class since it was imported. But, how can I call the parent of the root? would I just put <code>mapParent.get(e)</code>? </p> <p>EDIT The method's function is to have the node point to the root, and I want to use a Set to put together all the objects between the parameter and the object's root. Then, I would use path compression. Then, I have to return the reference to the object. So, I was wondering how I would call the parent for the object to somehow refer to the parent. So here is what I got:</p> <pre><code>public T find (T obj){ //Set&lt;E&gt; s = new HashSet&lt;E&gt;(sizeOfRoot.size()); // i don't know how I would use the set yet T p = null; if (map.get(obj).equals(obj)) // I was trying to get the parent of e return obj; else{ p = find(map.get(obj)); // recursively call the method to path compress } return p; // return the reference to the node } </code></pre> <p>Can you please help steer me in the right direction?</p>