我是Mac家伙,
如何使用sips获取PackBits压缩?
LZW的下方工作正常。
sips -s formatOptions lzw /DefaultGroup.tif
但这失败了:
sips -s formatOptions packbits /DefaultGroup.tif
知道为什么吗?
答案 0 :(得分:3)
而不是
sips -s formatOptions packbits /DefaultGroup.tif
试
sips -s formatOptions pacbits /DefaultGroup.tif
换句话说,使用'pacbits'而不是'packbits'。
有点令人惊讶,但确实存在。
答案 1 :(得分:0)
以下代码有效。 但我仍无法找到我的查询的实际答案。
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);
答案 2 :(得分:0)
loopqoob是正确的。
sips的手册页是错误的。使用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压缩。 (预览会显示所使用压缩的正确名称。)