0
votes
0answers
36 views

Using gzlib compression for NSDATA

I used zlib compression using reference =">Is there a practical way to compress NSData? but i am getting log as uncomp length 3652792 comp length 3670673 Just opposite.
0
votes
0answers
149 views

iPhone ZLib uncompress String Objective-C

I come from a perl background. I would like to use zlib to uncompress some data. The data is stored as an iPhone String. In PERL, I would usually do the following: Compress::Zlib::uncompress(substr ...
0
votes
2answers
242 views

how to compress a group of files into a zip file in objective c using zlib (Example)?

i'm working in a project that compress a group of files as a one zip file, i want to use the built in framework (zlib) to avoid any linking or any other types of errors that other types of frameworks ...
0
votes
1answer
228 views

ASIHTTPRequest zlib decompression

I'm trying to decompress some data that Im getting which is being compressed with zlib but Im getting a warning in my code that I'm not sure how to correct. - (void)requestFinished:(ASIHTTPRequest ...
0
votes
2answers
2k views

Decompress zlib encoded nsdata

I am trying to decompress some zlib encoded data that I am downloading using ASIHTTPRequest wrapper. This is what I have so far.. pretty much just getting the data in and now I was hoping for some ...
0
votes
0answers
172 views

ASIHTTPRequest decompress zlib file

I have been working on decompressing some data with ASIHTTPRequest and gzip. But I am wondering if there is a way to use zlib with ASIHTTPRequest instead of gzip?. If there is such a process and you ...
0
votes
2answers
499 views

What is wrong with this zlib string decompression?

i'm trying to create a simple stringdecompression algorithm for my app. /* Decompresses the source buffer into the destination buffer. sourceLen is the byte length of the source buffer. Upon ...
6
votes
1answer
3k views

where is the zlib framework in xcode 4.x

I am just trying to set up a new application that I am hoping to take advantage of ASIHTTPRequest framework.. however in their documentation they state that you have to link against CFNetwork, ...
0
votes
1answer
248 views

Password protect .gz folder sent from iPhone

I need to protect a file with password when I send it as email attachment from iPhone. I have zipped the file using libz.dylib zlib.h class. Basically I followed the approach discussed in ...
1
vote
1answer
325 views

Zlib deflate file when added as attachment in email could not open

I m using Zlib to compress a text file by using NSData category as discussed in http://www.cocoadev.com/index.pl?NSDataCategory . After compressing I m attaching the file to an email. When I open the ...
0
votes
1answer
3k views

extract zlib file in iOS?

When downloading data from a server thats compressed using zlib, I was wondering what steps are needed to take to uncompress and save to core data any help would be greatly appreciated
0
votes
1answer
359 views

PAK archives and zlib (zlib.dylib)

I'm currently writing an iPhone app where I need to uncompress several files from .pak archive. I'm assuming libz.dylib will probably have the ability to do this but I'm having a hard time find any ...
2
votes
2answers
2k views

zlib directly for uncompressing a zip folder for iphone

Is it possible to use the bare minimum zlib available on iPhone to uncompress a zip of a folder. I don't want to go for a open source library, please enlighten me the difficulty or possibility of ...
1
vote
0answers
490 views

How do you use zlib to inflate a large file?

I am having trouble unzipping a 4mb(40mb uncomporessed) file on the iPhone. I have found many solutions, but none of them seem to work. They all rely on the zlib package, and now I am trying to use ...
0
votes
1answer
1k views

zLib on iPhone, stop at first BLOCK

I am trying to call iPhone zLib to decompress the zlib stream from our HTTP based server, but the code always stop after finishing the first zlib block. Obviously, iPhone SDK is using the standard ...
0
votes
2answers
305 views

How do I uncompress data in PHP which was originally compressed using zlib?

I am quite new to Iphone development , so please bear me if I ask some some common questions. In my application I have to transfer data from my Iphone app to a PHP server and for this I have to ...
8
votes
3answers
3k views

“Untar” file on iPhone

I'm writing an iPhone app which downloads a tar-gzipped file from a Webserver, then needs to unarchive this file so that it can be copied into the app's Documents folder. I'm using tar/gzip because I ...
2
votes
2answers
755 views

zlib iPhone - files get crap in beginning

I've got a couple of .tgz-files in my bundle that I want to uncompress and write to file. I've got it working - sort of. The problem is that the file written gets 512 bytes of crap data in front of ...