Tagged Questions
0
votes
1answer
72 views
Qt Run Length Encoding (RLE) of QByteArray
I want to do Run Length Encoding on a Qt QByteArray of largely redundant image data. Right now I am using QByteArrays qCompress and qUncompress functions which use zlib with the default compression ...
0
votes
2answers
377 views
Uncompressing files with Qt qUnCompress function
I read documentation and post about uncompressing ZIP files but I've additional questions.
I need to uncompress zip file in Qt. That is XML file compressed with gzip.
I know that qUnCompress can ...
1
vote
2answers
215 views
configure qt with qt-zlib is not recognized
I am trying to configure qt with the built-in zlib. I run the following command:
./configure -qt-zlib
However, during the configuration, I see the following:
TIFF support ........... plugin (qt)
...
0
votes
1answer
346 views
Qt: Building quazip/zlib Library error
I am statically building the quazip library as mentioned in the following post: linking QuaZip with Qt 4.8.0 into project
I get these error when I build the project:
...
1
vote
3answers
1k views
How to zlib compress a QByteArray?
I would like to maintain interoperability between every other application on the planet (including web applications) when compressing text. Since qCompress and qUncompress seem to go against the ...
2
votes
1answer
440 views
How can I decrease the amount of time it takes to save a png using QImage?
Using Qt 4.8rc1, I have a QImage that I want to convert to a png file. It seems like it is taking longer than it should to convert to png format: ~70ms for an 800x800 empty png. Is there a way I can ...
1
vote
1answer
896 views
zlib's uncompress() strangely returning Z_BUF_ERROR
I'm writing Qt-based client application. It connects to remote server using QTcpSocket. Before sending any actual data it needs to send login info, which is zlib-compressed json.
As far as I know ...
2
votes
0answers
587 views
Qt + Zlib => error LNK2005: _deflate_copyright already defined in QtCored.lib(deflate.obj) zlibstat.lib
When I link my application I receive the following message:
error LNK2005: _deflate_copyright already defined in QtCored.lib(deflate.obj) zlibstat.lib
I'm not sure of the problem, but... I use ...
0
votes
1answer
692 views
Is .NET's GzipStream compatible with Qt's zlib-based qCompress/qUncompress?
Is .NET's GzipStream compatible with Qt's zlib-based qCompress/qUncompress? I believe they both use the deflate algorithm, so would I be able to use .NET's DeflateStream or GzipStream to read data ...
4
votes
4answers
2k views
C++ wrapper code to extract .zip file?
I want to unzip the .zip file.
can anyone suggest me good C++ wrapper for it ?
0
votes
1answer
3k views
How to compile and use QuaZip on Windows? Do I need to separately install zlib?
I need to create a simple .zip file with bitmaps inside. I'm using Qt, so I'd like the library I'm using for that to be similar to Qt as much as possible. After googling for a while I was sure that ...
5
votes
3answers
5k views
how to add zlib to an existing qt installation
How can I add zlib to an existing installation of Qt. I m pretty new in this so please give me detailed description!
Thanks for your help in advance!
3
votes
2answers
5k views
Qt quncompress gzip data
I stumble upon a problem, and can't find a solution.
So what I want to do is uncompress data in qt, using qUncompress(QByteArray), send from www in gzip format. I used wireshark to determine that ...
2
votes
2answers
969 views
Finding the end of a zlib compressed stream
I'm working on an NMDC client (p2p, DC++ and friends) with Qt. The protocol itself is pretty straightforward:
$command parameters|
Except for compression:
"ZPipe works by sending a command ...
6
votes
5answers
8k views
How do I zip a directory of files using C++?
I'm working on a project using C++, Boost, and Qt. I understand how to compress single files and bytestreams using, for example, the qCompress() function in Qt.
How do I zip a directory of multiple ...