如何使用Sip更改TIFF图像的压缩样式?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用Sip更改TIFF图像的压缩样式?相关的知识,希望对你有一定的参考价值。

我是Mac家伙,

如何使用sips获得PackBits压缩?

下面的LZW可以正常工作。

sips -s formatOptions lzw /DefaultGroup.tif

但是失败了:

sips -s formatOptions packbits /DefaultGroup.tif

知道为什么吗?

答案

代替

sips -s formatOptions packbits /DefaultGroup.tif

尝试

sips -s formatOptions pacbits /DefaultGroup.tif

换句话说,使用'pacbits'而不是'packbits'。

有点令人惊讶,但确实有。

另一答案

下面的代码有效。但我仍然找不到查询的实际答案。

 int compression = NSTIFFCompressionPackBits;

CGImageSourceRef source = CGImageSourceCreateWithData((CFDataRef)dataToWrite, NULL);

CGImageRef imageRef =  CGImageSourceCreateImageAtIndex(source, 0, NULL);

CFMutableDictionaryRef saveMetaAndOpts = CFDictionaryCreateMutable(nil,0,&kCFTypeDictionaryKeyCallBacks,  &kCFTypeDictionaryValueCallBacks);

CFMutableDictionaryRef tiffProfsMut = CFDictionaryCreateMutable(nil, 0,
&kCFTypeDictionaryKeyCallBacks,  &kCFTypeDictionaryValueCallBacks);

CFDictionarySetValue(tiffProfsMut, kCGImagePropertyTIFFCompression, CFNumberCreate(NULL, kCFNumberIntType, &compression));  
CFDictionarySetValue(saveMetaAndOpts, kCGImagePropertyTIFFDictionary, tiffProfsMut);

NSURL *outURL = [[NSURL alloc] initFileURLWithPath:filename];
CGImageDestinationRef dr = CGImageDestinationCreateWithURL ((CFURLRef)outURL, (CFStringRef)@"public.tiff" , 1, NULL);
CGImageDestinationAddImage(dr, imageRef, saveMetaAndOpts);
CGImageDestinationFinalize(dr);

CFRelease(dr);
[outURL release];
CFRelease(tiffProfsMut);
CFRelease(saveMetaAndOpts);
CFRelease(imageRef);

CFRelease(source);
另一答案

loopqoob是正确的。

Sip的手册页是错误的。使用Sip时,必须使用“ pacbits”而不是“ packbits”。

换句话说,这将起作用。它在运行High Sierra的Mac上运行:

E.G。

sips -s format tiff -s formatOptions pacbits '/Users/rob/Downloads/image20.jpg' --out '/Users/rob/Downloads/image20.tiff

完成此操作后,可以在“预览”中打开tiff图像。单击“工具”,然后在下拉菜单上单击“显示检查器”。您将看到TIFF映像已使用Packbits压缩。 (预览显示所使用压缩的正确名称)。

以上是关于如何使用Sip更改TIFF图像的压缩样式?的主要内容,如果未能解决你的问题,请参考以下文章

帮助使用 JPEG 压缩更改 TIFF 文件中的 DPI

c#当将TIFF转换为PNG时,我如何获得与使用MS Paint相同的压缩

如何在所有 Web 浏览器中显示 TIFF 图像? [关闭]

16位tiff解码器,用于flex

使用 OpenCV 写入 16 位未压缩图像

如何在 Python OpenCV 中读取 TIFF 图像的 alpha 通道?