Saving entire NSView contents, which is inside an NSScrollView

前端 未结 1 1014
时光取名叫无心
时光取名叫无心 2021-02-04 08:25

I\'m trying to save contents of an NSView as an image, but, only the image visible inside the scrollview is saved.

Here is the actual image loaded in the view:

1条回答
  •  無奈伤痛
    2021-02-04 09:30

    Use -[NSView cacheDisplayInRect:toBitmapImageRep:]

    NSBitmapImageRep* rep = [self bitmapImageRepForCachingDisplayInRect:self.bounds];
    [self cacheDisplayInRect:self.bounds toBitmapImageRep:rep];
    

    0 讨论(0)
提交回复
热议问题