丸一日検索した後、いくつかの同様の回答が見つかりましたが、うまくいくと思われるものは何もありません.
ユーザーが入力したディレクトリから画像のリストを取得し、それぞれの名前を変更するプロセスを実行し、JPG に変換し、できればあなたの助けを借りて RGB カラーに変換する、OSX で使用するアプリを作成しました。
NSImage *image = [[NSImage alloc] initWithContentsOfFile:from];
NSInteger imageWidth = image.size.width * 4.16666666667;
NSInteger imageHeight = image.size.height * 4.16666666667;
NSBitmapImageRep* theRGBImageRep = [[NSBitmapImageRep alloc]
initWithBitmapDataPlanes:NULL pixelsWide:imageWidth pixelsHigh:imageHeight
bitsPerSample: 8 samplesPerPixel: 4 hasAlpha: YES isPlanar: NO
colorSpaceName: NSCalibratedRGBColorSpace bytesPerRow: 0 bitsPerPixel: 0];
NSGraphicsContext* theContext = [NSGraphicsContext
graphicsContextWithBitmapImageRep: theRGBImageRep];
NSImageRep* theImageRep = [image bestRepresentationForRect:
NSMakeRect(0.0, 0.0, imageWidth, imageHeight) context:theContext
hints:[NSDictionary dictionaryWithObject:NSDeviceRGBColorSpace
forKey:NSDeviceColorSpaceName]];
[NSGraphicsContext saveGraphicsState];
[NSGraphicsContext setCurrentContext: theContext];
NSRect theBoundsRect = NSMakeRect(0.0, 0.0, [theRGBImageRep pixelsWide],
[theRGBImageRep pixelsHigh]);
[[NSColor clearColor] set];
NSRectFill(theBoundsRect);
[theImageRep drawInRect: theBoundsRect];
[NSGraphicsContext restoreGraphicsState];;
[image addRepresentation: theRGBImageRep];
NSDictionary *imageProps = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithFloat:1.0],NSImageCompressionFactor, nil];
NSData *bitmapData = [theRGBImageRep representationUsingType:NSJPEGFileType
properties:imageProps];
if ([bitmapData writeToFile:toJPG atomically:YES] == YES){
feedback = [NSString stringWithFormat:@"%@ -> %@\n", string, jpgFileName];
[readOut insertText:feedback];
[readOut display];
} else {
feedback = [NSString stringWithFormat:@"%@ - FAILED\n", string];
[errorLog insertText:feedback];
[errorLog display];
}
画像が指定されたフォルダに JPEG として正しく出力されますが、常に CMYK のままです。他の誰かがこれに遭遇しますか?
洗い流された結果を表示するために編集:
更新されたコード (これは現在、色あせた結果を出しているものです)