微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

objective-c – 将程序截图以mac方式存储在应用程序窗口中

我必须添加对我的OSX应用程序截图的能力,但是Apple演示只会给我整个屏幕图像,我只想要我的应用程序窗口图像.

我的代码是:

NSInteger displaysIndex = 0;
if(displays != nil)
{
    free(displays);
}


CGError             err = CGdisplayNoErr;
CGdisplayCount      dspCount = 0;

/* How many active displays do we have? */
err = CGGetActivedisplayList(0,NULL,&dspCount);

/* If we are getting an error here then their won't be much to display. */
if(err != CGdisplayNoErr)
{
    return;
}
/* Allocate enough memory to hold all the display IDs we have. */
displays = calloc((size_t)dspCount,sizeof(CGDirectdisplayID));

// Get the list of active displays
err = CGGetActivedisplayList(dspCount,displays,&dspCount);

/* Make a snapshot image of the current display. */
CGImageRef image = CGdisplayCreateImage(displays[displaysIndex]);

我应该在代码中改变什么,所以我只能收到我的应用程序的窗口?

解决方法

简单.
NSImage *captureImage  = [[NSImage alloc] initWithData:[self.view dataWithPDFInsideRect:[self.view bounds]]];

请检查并让我知道.这是捕获的当前活动窗口.

原文地址:https://www.jb51.cc/c/110355.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐