0
我是一名Mac小夥,如何使用sips更改TIFF圖像的壓縮風格?
如何使用sips獲取PackBits壓縮?
LZW下面的工作正常。
sips -s formatOptions lzw /DefaultGroup.tif
但這種失敗:
sips -s formatOptions packbits /DefaultGroup.tif
任何想法,爲什麼?
我是一名Mac小夥,如何使用sips更改TIFF圖像的壓縮風格?
如何使用sips獲取PackBits壓縮?
LZW下面的工作正常。
sips -s formatOptions lzw /DefaultGroup.tif
但這種失敗:
sips -s formatOptions packbits /DefaultGroup.tif
任何想法,爲什麼?
下面的代碼工作。 但我仍然無法找到我的查詢的實際答案。
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);
代替
sips -s formatOptions packbits /DefaultGroup.tif
嘗試
sips -s formatOptions pacbits /DefaultGroup.tif
換句話說,而不是使用 'PACKBITS' pacbits「。
有點令人驚訝,但它是。