¡@

Home 

c++ Programming Glossary: compress

How to concat two or more gzip files/streams

http://stackoverflow.com/questions/1143270/how-to-concat-two-or-more-gzip-files-streams

I want to concat two or more gzip streams without recompressing them. I mean I have A compressed to A.gz and B to B.gz I.. gzip streams without recompressing them. I mean I have A compressed to A.gz and B to B.gz I want to compress them to single gzip.. I mean I have A compressed to A.gz and B to B.gz I want to compress them to single gzip A B .gz without compressing once again using..

How do I build a GUI in C++? [closed]

http://stackoverflow.com/questions/1186017/how-do-i-build-a-gui-in-c

basic idea there is somewhat complicated and difficult to compress but in essence it means that not a hell of a lot is going in..

fastest c++ file compression library available? [closed]

http://stackoverflow.com/questions/124239/fastest-c-file-compression-library-available

c file compression library available closed I have a need to find the best.. closed I have a need to find the best library to compress in memory data. I am currently using zlib but I am wondering.. using zlib but I am wondering if there is a better compression library better in terms of performance and memory footprint...

Video streaming using c++

http://stackoverflow.com/questions/1825338/video-streaming-using-c

inputs of random images they're not going to be able to compress that much and single frame compression e.g. JPEG PNG whatever.. going to be able to compress that much and single frame compression e.g. JPEG PNG whatever is very likely already going to be..

mmap() for large file I/O?

http://stackoverflow.com/questions/2679465/mmap-for-large-file-i-o

to exact frame numbers so our file format uses libz to compress each frame individually and append the compressed data onto.. libz to compress each frame individually and append the compressed data onto a file. Once all frames are finished being written..

Compress 21 Alphanumeric Characters in to 16 Bytes

http://stackoverflow.com/questions/3419606/compress-21-alphanumeric-characters-in-to-16-bytes

right algorithm for this. The trade ID which I'm trying to compress consists of 2 fields 18 alphanumeric characters consisting of..

Are there any downsides to using UPX to compress a Windows executable?

http://stackoverflow.com/questions/353634/are-there-any-downsides-to-using-upx-to-compress-a-windows-executable

there any downsides to using UPX to compress a Windows executable I've used UPX before to reduce the size.. I write most of my code in Delphi but I've used UPX to compress C C executables as well. On a side note I'm not running UPX.. executable and prevent cursory tampering. c delphi winapi compression upx share improve this question The reason is there are..

zlib c++ and extracting files

http://stackoverflow.com/questions/4696907/zlib-c-and-extracting-files

have code in C and C#. All the functions to browse and uncompress the files from an zip archive are in unzip.h All the functions.. files from an zip archive are in unzip.h All the functions compress and add files to a zip archive are in zip.h look at contrib.. minizip unzip.h and contrib minizip zip.h for example decompressing the unzOpen functions of your zip file returns a unzFile..

How to use std::foreach with parameters/modification

http://stackoverflow.com/questions/476488/how-to-use-stdforeach-with-parameters-modification

i myvec i DoWhatever param a lot and I'd like to compress this into a foreach statement but I'm not sure how to get param..

How do I zip a directory of files using C++?

http://stackoverflow.com/questions/505863/how-do-i-zip-a-directory-of-files-using-c

on a project using C Boost and Qt. I understand how to compress single files and bytestreams using for example the qCompress.. of caution to anyone looking down this path. c qt boost compression zlib share improve this question I have found the following..

How can I easily compress and decompress files using zlib?

http://stackoverflow.com/questions/5649030/how-can-i-easily-compress-and-decompress-files-using-zlib

can I easily compress and decompress files using zlib How can I easily compress and.. can I easily compress and decompress files using zlib How can I easily compress and decompress files.. compress and decompress files using zlib How can I easily compress and decompress files using zlib c zlib compress decompress..

How to reduce a bigger string in smaller string in C++? Probably by hashing?

http://stackoverflow.com/questions/5835946/how-to-reduce-a-bigger-string-in-smaller-string-in-c-probably-by-hashing

in smaller string in C Probably by hashing I want to compress a bigger string into a smaller string in C . What are the different.. is that output should also be a string. c string data compression share improve this question Well if you don't need to.. share improve this question Well if you don't need to uncompress it later string s xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx s Edit..

Child process receives parent's SIGINT

http://stackoverflow.com/questions/6803395/child-process-receives-parents-sigint

using Qt Framework. It uses QProcess to execute RAR and compress some files. In my program I am catching SIGINT and doing something.. that was meant for my program and it quits before it has compressed all files. Is there a way to run RAR process so that it doesn't..

How to compress a directory with libbz2 in C++

http://stackoverflow.com/questions/813223/how-to-compress-a-directory-with-libbz2-in-c

to compress a directory with libbz2 in C I need to create a tarball of.. in C I need to create a tarball of a directory and then compress it with bz2 in C . Is there any decent tutorial on using libtar.. Is there any decent tutorial on using libtar and libbz2 c compression tar bzip2 share improve this question Okay I worked up..