view转image

作者: 在流逝的沉默里 | 来源:发表于2018-08-09 15:11 被阅读0次

-(NSImage*)viewToImage:(NSView*)view

{

    NSBitmapImageRep*bitmap =  [self bitmapImageRepForCachingDisplayInRect:[view visibleRect]];

    [view cacheDisplayInRect:[view visibleRect] toBitmapImageRep:bitmap];

    NSImage *image = [[NSImage alloc] initWithSize:NSMakeSize(view.bounds.size.width, view.bounds.size.height)];

    [image addRepresentation:bitmap];

    return image;

}

相关文章

网友评论

    本文标题:view转image

    本文链接:https://www.haomeiwen.com/subject/yoxxhftx.html