Tagged Questions

2
votes
3answers
52 views

Alternatives to GZIPInput/OutputStream with better compression ratios?

I need to store abitrary binary data (essentially files of various common formats, JPEG, PDF, MS-Office and some other odd files). Slow compression is not a problem, but I'm looking for reasonably ...
0
votes
1answer
139 views

Unable to compress file during Huffman Encoding in Java

I have implemented the Huffman Encoding Algorithm in Java using Priority Queues where I traverse the Tree from Root to Leaf and get encoding example as #=000011 based on the number of times the symbol ...
0
votes
4answers
975 views

Convert high-resolution images to low-resolution

I am doing a web project on media manager. I upload high resolution images and need to convert these images to low resolution, so that the resulting image is compressed into a smaller size. How is ...