我正在将一些代码从linux转换为mac。
如何使用文本以编程方式覆盖图像,类似于ImageMagick转换命令?出于各种原因,我不能依赖于安装ImageMagick。
convert -draw 'text 50,800 "hello world"' f1.png f2.png
答案 0 :(得分:5)
您可以使用NSImage
和NSString
绘图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];