有没有办法以编程方式截取 Mac 上当前屏幕显示的屏幕截图(或以某种方式访问图像)?
最好是在 C++ 中,而不是在 Objective-C 中。
有没有办法以编程方式截取 Mac 上当前屏幕显示的屏幕截图(或以某种方式访问图像)?
最好是在 C++ 中,而不是在 Objective-C 中。
我一直在解决同样的问题。这是我搜索了一段时间后想出的代码。
CGImageRef screenShot = CGWindowListCreateImage( CGRectInfinite, kCGWindowListOptionOnScreenOnly, kCGNullWindowID, kCGWindowImageDefault);
//std::string image_name = "/Users/nikhil/Desktop/SC_";
//image_name+=str;
//cout<<str<<endl;
//image_name+=".jpg";
//cout<<image_name<<endl;
CFStringRef file = CFSTR("/Users/nikhil/Desktop/SC.jpg");
CFStringRef type = CFSTR("public.jpeg");
CFURLRef urlRef = CFURLCreateWithFileSystemPath( kCFAllocatorDefault, file, kCFURLPOSIXPathStyle, false );
CGImageDestinationRef image_destination = CGImageDestinationCreateWithURL( urlRef, type, 1, NULL );
CGImageDestinationAddImage( image_destination, screenShot, NULL );
CGImageDestinationFinalize( image_destination );
你必须给 CFSTR() 一个静态字符串。尽管我自己正在寻找将屏幕截图存储到具有基于时间戳的文件名的文件的替代方法。
使用屏幕截图 (1)。
使用 system() 或 posix_spawn() 调用它。
我推荐使用Quartz Display Services和功能CGDisplayCreateImage()