MacOS:以编程方式向图像添加一些文本?

MacOS: Programmatically add some text to an image?

我正在将一些代码从 linux 转换为 mac。

我如何以编程方式用文本覆盖图像,类似于 ImageMagick convert 命令?由于各种原因,我不能依赖于安装 ImageMagick。

convert -draw 'text 50,800 "hello world"' f1.png f2.png

您可以使用 NSImageNSString 绘图 API 创建编辑后的图像,然后使用 NSBitmapImageRep 获取图像的 PNG 数据。示例:

NSString *text = @"hello world";
NSImage *f1 = [[NSImage alloc] initWithContentsOfFile:@"/path/to/f1.png"];
NSImage *f2 = [NSImage imageWithSize:f1.size flipped:YES drawingHandler:^BOOL(NSRect dstRect) {
    [f1 drawInRect:dstRect];

    // Attributes can be customized to change font, text color, etc.
    NSDictionary *attributes = @{NSFontAttributeName: [NSFont systemFontOfSize:17]};
    [text drawAtPoint:NSMakePoint(50, 800) withAttributes:attributes];

    return YES;
}];
NSBitmapImageRep *rep = [[NSBitmapImageRep alloc] initWithCGImage:[f2 CGImageForProposedRect:NULL context:nil hints:nil]];
NSData *data = [rep representationUsingType:NSPNGFileType properties:nil];
[data writeToFile:@"/path/to/f2.png" atomically:YES];