使用图层支持的NSView作为NSDockTile contentView

时间:2012-02-09 08:08:30

标签: calayer nsview nsimage nsimagerep nsdocktile

有没有办法将支持图层的NSView用作contentView的{​​{1}}?尝试了各种各样的技巧,但我得到的只是透明区域。还尝试了不同的路线并从NSDockTile获取图像并将其用于CALayer,但也没有运气 - 我认为这里的问题是为屏幕外图像创建图像表示。

1 个答案:

答案 0 :(得分:2)

像往常一样,我在发布问题后很快就得到了答案:)我会在这里发布以供将来参考:我通过创建NSImage来解决它,如Cocoa中描述的Cocoa是我的女朋友博客文章这里http://www.cimgf.com/2009/02/03/record-your-core-animation-animation/

唯一缺少的部分是,为了渲染任何东西,必须将视图添加到窗口中,因此使用帖子中的示例代码,我的解决方案是:

NSView *myView = ...
NSWindow *window = [[NSWindow alloc] initWithContentRect:NSMakeRect(-1000.0, -1000.0, 256.0, 256.0) styleMask:0 backing:NSBackingStoreNonretained defer:NO];
[window setContentView:myView];

NSUInteger pixelsHigh = myView.bounds.size.height;
NSUInteger pixelsWide = myView.bounds.size.width;
NSUInteger bitmapBytesPerRow = pixelsWide * 4;
CGColorSpaceRef colorSpace = CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB);
CGContextRef context = CGBitmapContextCreate(NULL, pixelsWide, pixelsHigh, 8, bitmapBytesPerRow, colorSpace, kCGImageAlphaPremultipliedLast);
CGColorSpaceRelease(colorSpace);

[myView.layer.presentationLayer renderInContext:context];
CGImageRef image = CGBitmapContextCreateImage(context);
NSBitmapImageRep *bitmap = [[NSBitmapImageRep alloc] initWithCGImage:image];
CFRelease(image);

NSImage *img = [[NSImage alloc] initWithData:[bitmap TIFFRepresentation]];
[NSApp setApplicationIconImage:img];