How does the LZMA compression method work?
Asked Answered
C

2

10

I need to know details about LZMA compression algorithm. I know its general concept, but I need some examples explaining it in detail. Can anybody please help me to get more information?

Thank you.

Charlinecharlock answered 7/6, 2010 at 15:47 Comment(5)
google.com/search?q=LZMA+compression+algorithmRutharuthann
Thanks BenV, actually I know its general concept, I need more details and some examples about that. Thanks.Charlinecharlock
rewrite the question, state what you know (possibly frow where) and ask the question about details.Cartilaginous
en.wikipedia.org/wiki/LzmaThalassa
I believe what Shadi is looking for is something like this: cs.duke.edu/csed/curious/compression/lzw.html . But for LZMA.Racecourse
R
4

Try the LZMA SDK. It "provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression."

Rutharuthann answered 14/6, 2010 at 15:40 Comment(5)
Can you tell us how to use this SDKCherenkov
@Frankenstein Download the SDK, look at the documentation and samples, try it out, and then if you have specific questions come back and ask them on StackOverflow.Rutharuthann
In DOC==> 7cC.txt : there are some test application called 7zMain.c but there is no such file in sdk folder ... But also the command 7z.exe or 7z in cmd won't work !!! can you help ... thanksCherenkov
You'll have a lot better luck posting a new question rather than commenting on an existing one.Rutharuthann
Ok please see #35167272Cherenkov
A
0

Have you tried the examples from here?

  1. http://www.asawicki.info/news_1368_lzma_sdk_-_how_to_use.html
  2. http://lloyd.github.io/easylzma/

The first link show code that I tried and works. Not sure about the second one but it looks good.

Almeta answered 27/1, 2014 at 15:52 Comment(1)
the first one didn't use incremental compression i think ? can you share with me the code that worked for you [email protected] thanksCherenkov

© 2022 - 2024 — McMap. All rights reserved.