gpt4 book ai didi

objective-c - 仅在 mac 中以编程方式截取应用程序窗口的屏幕截图

转载 作者:太空狗 更新时间:2023-10-30 03:28:30 27 4
gpt4 key购买 nike

我必须为我的 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]]];

请检查并告诉我。这是捕获的当前事件窗口。

关于objective-c - 仅在 mac 中以编程方式截取应用程序窗口的屏幕截图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15446319/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com