在 C++ 中使用 CGImageDestinationCreateWithURL 创建 CGImageDestinat

Creating a CGImageDestinationRef with CGImageDestinationCreateWithURL in C++ returns NULL

本文关键字:CGImageDestinationCreateWithURL 创建 CGImageDestinat C++      更新时间:2023-10-16

我正在尝试使用某些 OSX 框架中提供的方法为我的 macOS 10.13 设置的每个显示器截取屏幕截图C++但使用 CGImageDestinationCreateWithURL 创建CGImageDestinationRef目标返回NULL,我不知道我做错了什么。

我认为我遇到的问题是以下行:

CGImageDestinationRef destination = CGImageDestinationCreateWithURL(url, kUTTypePNG, 1, NULL);

我使用的代码如下:

主.cpp:

#include <iostream>
#include <string>
#include <QuartzCore/QuartzCore.h>
#include <CoreServices/CoreServices.h>
#include <ImageIO/ImageIO.h>
int main(int argc, const char * argv[]) {
    std::string baseImageOutput = "/Users/bogdan/Desktop";
    std::string pathSeparator = "/";
    std::string baseImageName = "image-";
    std::string imageExtension = ".png";
    CGDisplayCount displayCount;
    CGDirectDisplayID displays[32];
    // grab the active displays
    CGGetActiveDisplayList(32, displays, &displayCount);
    // go through the list
    for (int i = 0; i < displayCount; i++) {
        std::string imagePath = baseImageOutput + pathSeparator + baseImageName + std::to_string(i) + imageExtension;
        const char *charPath = imagePath.c_str();
        CFStringRef imageOutputPath = CFStringCreateWithCString(kCFAllocatorDefault, charPath, kCFURLPOSIXPathStyle);
        // make a snapshot of the current display
        CGImageRef image = CGDisplayCreateImage(displays[i]);
        CFURLRef url = CFURLCreateWithString(kCFAllocatorDefault, imageOutputPath, NULL);
        // The following CGImageDestinationRef variable is NULL
        CGImageDestinationRef destination = CGImageDestinationCreateWithURL(url, kUTTypePNG, 1, NULL);
        if (!destination) {
            std::cout<< "The destination does not exist: " << imagePath << std::endl;
            CGImageRelease(image);
            return 1;
        }
        CGImageDestinationAddImage(destination, image, NULL);
        if (!CGImageDestinationFinalize(destination)) {
            std::cout << "Failed to write image to the path" << std::endl;;
            CFRelease(destination);
            CGImageRelease(image);
            return 1;
        }
        CFRelease(destination);
        CGImageRelease(image);
    }
    std::cout << "It Worked. Check your desktop" << std::endl;;
    return 0;
}

我是否正确创建了目标?

找到了解决方案。

似乎baseImageOutput需要预先附加file://,以便最终网址有效,因此我们有

std::string baseImageOutput = "file:///Users/bogdan/Desktop";

而不是

std::string baseImageOutput = "/Users/bogdan/Desktop";