file compression prgogram Programming Software Development by gauthamnaggg … need to write a code that compress and uncompresses thegiven file in c.Well i know there are many algorithms available… but couldn't able to find ?.Is there any simple file compression algorithm is available ? [COLOR="Green"][/COLOR] File compression - program Programming Software Development by catcit … started with one of my colleagues to work on a file compression program based on Huffman coding. I have previously worked with… Need sample code for Text File Compression!!! Programming Software Development by SlayerX … some help on text file compression.... Text File Compression. The text file compression must be able to …perform the following functions: • Able to compress a text file and generate an index file…and decompressing • Able to show the file size before and after compressed Task: 1… Re: File Compression Programming Software Development by sneekula …vegaseat;303189]Python offers a number of modules providing easy file compression and decompression. Here are code snippets for two of the… popular compression formats ... zipfile --> [URL]http://www.daniweb.com/code/… simple. Does anyone have a particular preference of a compression format? Re: File Compression Programming Software Development by vegaseat Python offers a number of modules providing easy file compression and decompression. Here are code snippets for two of the popular compression formats ... zipfile --> [URL]http://www.daniweb.com/code/snippet629.html[/URL] tarfile --> [URL]http://www.daniweb.com/code/snippet630.html[/URL] Re: file compression prgogram Programming Software Development by Salem You mean your googling failed to find any source code you could just use for your homework. This isn't the same as there being no information about compression on the web. There's lots of it. Re: Best File Compression Software? Hardware and Software Microsoft Windows by HodonKain I've been dealing with file compression for many many years. I've found that Winzip is pretty well rounded. 7zip is very nice as well. Those are the main two I use. If you want even better file compression at the cost of speed, you could try PAQ8. I'm in the process of developing my own program. Fun stuff. Re: Best File Compression Software? Hardware and Software Microsoft Windows by HodonKain Staying on the topic of file compression... If you're backing up terrabytes of data, maybe data … Re: Need sample code for Text File Compression!!! Programming Software Development by Alex Edwards …the numbers to their corresponding characters in the index file. Your index file might look something like this-- [icode] s… your file (that are non-recurring or not consecutive), you may face an expansion instead of a compression when …you try to compress the file. This is just a theory, … Re: Need sample code for Text File Compression!!! Programming Software Development by Salem Get nice and comfortable, this is a long read [url]http://www.faqs.org/faqs/compression-faq/[/url] Re: Need sample code for Text File Compression!!! Programming Software Development by Salem … me, can you even write a program to copy a file one character at a time? Or write a program which… can say count the number of 'a' characters in a file? Or even produce a [URL="http://en.wikipedia.org…"]histogram[/URL] showing the distribution of letters in a file? See, having done this, you're half-way there to… Re: File can encrypt data but I want to compress the size of encrypted file also Programming Software Development by Ancient Dragon File compression/decompression is a pretty complex task. [URL="http://www.thefreecountry.com/sourcecode/compression.shtml"]Here [/URL]are some free libraries. Re: File Compression Programming Software Development by vegaseat [quote=sneekula;304212]Another question, can zipfile archive several files like tarfile? How would you save the decompresed files?[/quote]An omission on my part, I added another snippet to show you how to pack and unpack files to and from an archived zip file: [URL]http://www.daniweb.com/code/snippet633.html[/URL] Re: file compression prgogram Programming Software Development by Jishnu You found the algorithm. That is enough. Go ahead. Re: File compression - program Programming Software Development by hondros Um, the best tutorial that I know of is the one that is included with Python itself, also available at their website. Other than that, just look up the manual for any module you use. GUI-wise, I'd have to go with wxPython, it's very simple and easy to use. I have been using it for about 2 weeks now, no problems with it. I've attemped Tkinter, PyGt… Re: File compression - program Programming Software Development by jcao219 Good luck! OOP to GUI is a very broad range of topics. For OOP, I guess you can learn it from a tutorial, but practicing by writing code really helps to make you a better programmer. For GUI, just find a good toolkit, i.e. wxPython would be a good one. Just depends on what you prefer. I use IronPython with WPF or WinForms for my GUI creations, … Re: File can encrypt data but I want to compress the size of encrypted file also Programming Software Development by gusano79 [QUOTE=Ancient Dragon;1058034]File compression/decompression is a pretty complex task.[/…I want to compress the file encrypted and then decrypt the same original file.[/QUOTE] I recommend that… you compress first, encrypt second. Encryption usually hides the patterns and structure in data that make compression Effect on Compression ration by File size in Zlib Programming Computer Science by blackmagic01021 hello, I have developed a file compression tool using zlib compression library. As the zlib use the deflate and inflate process, does the size of the file effect compression ratio? If it has effect, what is the reason? Thank you. {Urgent} need help with file compression and decompression Programming Software Development by j2swift …, 010 to 110 for the 4th most frquent. Compression is achieved replacing bits by 3 bits. Else encode…bit in the accumulator are written to the file. This finished the compression program. To decompress, you read the first… 100 byte, copy them to the decoded file, and … Re: Best File Compression Software? Hardware and Software Microsoft Windows by HodonKain … with the normal *.zip file extension. Zipx is suppose to be a better type of compression vs the normal zip. …this one, we will one day achieve "prefect compression" which in my mind is the point where …working and working to achieve the master equation for compression. Maximum compression for the least amount of time. I will have… Re: Best File Compression Software? Hardware and Software Microsoft Windows by HodonKain … don't mind the wait. Just drag and drop the file (the one you want to compress) onto the paq806.exe… does all the work. [url]http://cs.fit.edu/~mmahoney/compression/#paq[/url] The latest version is [URL="http://cs….fit.edu/%7Emmahoney/compression/paq8o6.zip"]paq8o6[/URL], released Sept. 28, 2007 by… Re: Best File Compression Software? Hardware and Software Microsoft Windows by GoreTex I recently downloaded a file that was a 7.19MB RAR file. When I decompressed it, it showed as being a BIN… I've NEVER been able to accomplish that percentage of compression. Is it possible that there is some god-like… compression tool out there that bests every other compression tool by 65%+/-? Any information here… Re: Best File Compression Software? Hardware and Software Microsoft Windows by Sauce …wrong at this but i believe a bin file is a bit for bit reading of a selected…of bin/cue. If you still have the file and get curious try converting it from bin/cue… like UltraIso and see what the iso file size is. As compression goes, rar files tend to be smaller… then zip's and UHARC is a nice compression for people who want tight files but it … Re: Best File Compression Software? Hardware and Software Microsoft Windows by dsy Imho what's the best compression software depends mainly from the user's…+gz on Linux), without looking for the maximum compression or advanced features: the process just needs to be…If I'll need some more features and better compression, I'll go for Rar or 7-Zip; … most users. If I'll aim to pure compression, well, now the top performer is PAQ so… Basic RLE File compression routine Programming Software Development by 1o0oBhP The RLE (Run length encoding) compression method compresses a file by writing repeated data as a byte containing the length, … Re: Basic RLE File compression routine Programming Software Development by Thokozani for Data compression using c++ programing How do I program something like (yes,no yes no,no yes no) to something like 3yes,4no Best File Compression Software? Hardware and Software Microsoft Windows by Paddy … time it was the best tool available as far as compression was concerned. Is this still the case? Is there now… Re: Best File Compression Software? Hardware and Software Microsoft Windows by frrossk For best compression rates use WinUHA, free software, dld from [URL=www.winuha.com]www.winuha.com[/URL] ; beats zip, rar, etc. But it's going a little slower than the rest. Re: Best File Compression Software? Hardware and Software Microsoft Windows by musleray Besides WinUha I recommend the CAB compression (in case of documents). Re: Best File Compression Software? Hardware and Software Microsoft Windows by tynyro … time it was the best tool available as far as compression was concerned. Is this still the case? Is there now…