2008.12.14 04:10 "Re: [Tiff] Tiff Digest, Vol 55, Issue 2", by navneet rastogi

2008.12.14 04:10 "Re: [Tiff] Tiff Digest, Vol 55, Issue 2", by navneet rastogi

Hello,

I am working on a project i.e. "LZW compression & Decompression".I have been achieved the compression completely but in case of decompression a problem occured i.e When we decompress a data using LZW there is no table is given, it creates it by own but when we creating a table and there occured a sequence of same character then according to the Mark Nelson it's a exception in LZW .and it doesn't work.e.g "THGFFF" we compressed it then output is "THGF259" then when we decompressed it

output is follows
:
output entry in table
T TH 256
H HG 257
G GF 258
F F VALUE AT 259 but at this point no entry for 259 and we
want it so how we handle it.

Please if anyone know it plz help me.