我想自动将图像保存到NSImageView。保存代码是:
let bitmap = NSBitmapImageRep(data: (imageView.image?.tiffRepresentation)!)
let bitmapPNG = bitmap?.representation(using: NSBitmapImageFileType.PNG, properties: [NSImageCompressionFactor : 1])
try bitmapPNG?.write(to: imageURL, options: .atomic)
可是:
那么,无论如何要保存到磁盘相同的图像文件我放到了NSImageView?对于所有metadatas和相同的压缩,完全相同的文件。