我有 NSView 300x300px 但我需要我的 NSView 的内容图像将 1000x1000px 保存到文件中。是否可以?我不想改变 NSView 的大小,它只是为了保存。
到目前为止,我有这个:
NSImage *viewImage = [[NSImage alloc] initWithData:[self dataWithPDFInsideRect:[self bounds]]];
[[viewImage TIFFRepresentation] writeToFile:@"..." atomically:YES];
它可以很好地保存 300x300px 图像(视图的大小),但是如何使 1000x1000px 的视图内容与 300x300 相同,只是更大的 1000x1000px 输出?