使用LaunchAgent捕获Macos屏幕



我制作了一个屏幕捕获命令行工具LaunchAgent。启动时,屏幕捕获策略警报没有弹出,所以我无法捕获正确的屏幕截图。我不知道如何纠正这一点。你能帮我吗?非常感谢。

命令行工具路径:/bin/capture

代码如下:

#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>

int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"capture screen...");
CGRect mainRect = CGDisplayBounds(CGMainDisplayID());
CGImageRef desktopImage = CGWindowListCreateImage(mainRect, kCGWindowListOptionOnScreenOnly, kCGNullWindowID, kCGWindowImageBestResolution | kCGWindowImageShouldBeOpaque);
NSBitmapImageRep *bmpImgRef = [[NSBitmapImageRep alloc] initWithCGImage:desktopImage];
NSData *data = [bmpImgRef representationUsingType:NSBitmapImageFileTypeJPEG properties:@{NSImageCompressionFactor: @(1)}];
NSDateFormatter *fmt = [[NSDateFormatter alloc] init];
[fmt setDateFormat:@"yyyyMMdd_hh:mm:ss"];
[data writeToURL:[NSURL fileURLWithPath:[NSString stringWithFormat:@"/tmp/%@.jpg", [fmt stringFromDate:[NSDate date]]]] atomically:true];
}
return 0;
}

LaunchAgent plist文件路径:/Library/LaunchAgent/com.test.launchagent.screencapture.plist

LaunchAgent plist如下:

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.test.launchagent.screencapture</string>
<key>ProgramArguments</key>
<array>
<string>/bin/capture</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>

您确实需要一些东西才能完成这项工作。

首先,您需要有一个用于二进制文件的Info.plist。如果您只想保留一个unix文件,而不是创建一个捆绑包,那么可以使用嵌入式Info.plist(可以在Xcode构建设置中设置(。

其次,您必须更改启动plist才能在Aqua会话中运行程序。

有了这些步骤,你应该能够运行这个并看到政策弹出窗口。

相关内容

  • 没有找到相关文章

最新更新