简体   繁体   English

使用LZW的TIFF压缩

[英]TIFF compression using LZW

Is there a class in C# library which does LZW compression on TIFF images. C#库中是否有一个对TIFF图像进行LZW压缩的类。 I know there is a compression scheme inviolving LZW being present, but using that doesnt decrease the file size whatsoever. 我知道有一种压缩方案可以破坏LZW的存在,但是使用它不会减小文件大小。 Is there any thing that Im assuming wrong? 我认为我有错吗? Please correct me if I am. 请纠正我。

Because LZW is loseless compression, you can compress TIFF images or any other kind of data using the same way. 由于LZW是无损压缩,因此可以使用相同的方式压缩TIFF图像或任何其他类型的数据。 In C# you can use the SharpLZW library . 在C#中,您可以使用SharpLZW库

--EDIT (1)-- -编辑(1)-

If you want to produce a TIFF file with embedded LZW compression respecting the TIFF specification look at section 13 of the specification . 如果要生产具有嵌入式LZW压缩尊重TIFF规范看第13 TIFF文件规范

--EDIT (2)-- -编辑(2)-

There was a patent but it is now expired . 曾经有一项专利,但是现在已经过期

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM