我正在尝试从图像样本缓冲区中将一些元数据与图像一起保存。
我需要:
我尝试从数据创建UIImage,但这会剥夺元数据。我尝试使用数据中的CIImage保留元数据,但无法旋转它,然后将其保存到文件中。
private func snapPhoto(success: (UIImage, CFMutableDictionary) -> Void, errorMessage: String -> Void) {
guard !self.stillImageOutput.capturingStillImage,
let videoConnection = stillImageOutput.connectionWithMediaType(AVMediaTypeVideo) else { return }
videoConnection.fixVideoOrientation()
stillImageOutput.captureStillImageAsynchronouslyFromConnection(videoConnection) {
(imageDataSampleBuffer, error) -> Void in
guard imageDataSampleBuffer != nil && error == nil else {
errorMessage("Couldn't snap photo")
return
}
let data = AVCaptureStillImageOutput.jpegStillImageNSDataRepresentation(imageDataSampleBuffer)
let metadata = CMCopyDictionaryOfAttachments(nil, imageDataSampleBuffer, CMAttachmentMode(kCMAttachmentMode_ShouldPropagate))
let metadataMutable = CFDictionaryCreateMutableCopy(nil, 0, metadata)
let utcDate = "\(NSDate())"
let cfUTCDate = CFStringCreateCopy(nil, utcDate)
CFDictionarySetValue(metadataMutable!, unsafeAddressOf(kCGImagePropertyGPSDateStamp), unsafeAddressOf(cfUTCDate))
guard let image = UIImage(data: data)?.fixOrientation() else { return }
CFDictionarySetValue(metadataMutable, unsafeAddressOf(kCGImagePropertyOrientation), unsafeAddressOf(1))
success(image, metadataMutable)
}
}
这是我保存图像的代码。
func saveImageAsJpg(image: UIImage, metadata: CFMutableDictionary) {
// Add metadata to image
guard let jpgData = UIImageJPEGRepresentation(image, 1) else { return }
jpgData.writeToFile("\(self.documentsDirectory)/image1.jpg", atomically: true)
}
最后,我弄清楚了如何使所有东西按我需要的方式工作。对我最大的帮助是发现可以将CFDictionary转换为NSMutableDictionary。
这是我的最终代码:
如您所见,我向EXIF字典中添加了一个属性,用于数字化日期,并更改了方向值。
private func snapPhoto(success: (UIImage, NSMutableDictionary) -> Void, errorMessage: String -> Void) {
guard !self.stillImageOutput.capturingStillImage,
let videoConnection = stillImageOutput.connectionWithMediaType(AVMediaTypeVideo) else { return }
videoConnection.fixVideoOrientation()
stillImageOutput.captureStillImageAsynchronouslyFromConnection(videoConnection) {
(imageDataSampleBuffer, error) -> Void in
guard imageDataSampleBuffer != nil && error == nil else {
errorMessage("Couldn't snap photo")
return
}
let data = AVCaptureStillImageOutput.jpegStillImageNSDataRepresentation(imageDataSampleBuffer)
let rawMetadata = CMCopyDictionaryOfAttachments(nil, imageDataSampleBuffer, CMAttachmentMode(kCMAttachmentMode_ShouldPropagate))
let metadata = CFDictionaryCreateMutableCopy(nil, 0, rawMetadata) as NSMutableDictionary
let exifData = metadata.valueForKey(kCGImagePropertyExifDictionary as String) as? NSMutableDictionary
exifData?.setValue(NSDate().toString("yyyy:MM:dd HH:mm:ss"), forKey: kCGImagePropertyExifDateTimeDigitized as String)
metadata.setValue(exifData, forKey: kCGImagePropertyExifDictionary as String)
metadata.setValue(1, forKey: kCGImagePropertyOrientation as String)
guard let image = UIImage(data: data)?.fixOrientation() else {
errorMessage("Couldn't create image")
return
}
success(image, metadata)
}
}
还有我用于保存带有元数据的图像的最终代码:
我讨厌很多警卫声明,但这比强制展开要好。
func saveImage(withMetadata image: UIImage, metadata: NSMutableDictionary) {
let filePath = "\(self.documentsPath)/image1.jpg"
guard let jpgData = UIImageJPEGRepresentation(image, 1) else { return }
// Add metadata to jpgData
guard let source = CGImageSourceCreateWithData(jpgData, nil),
let uniformTypeIdentifier = CGImageSourceGetType(source) else { return }
let finalData = NSMutableData(data: jpgData)
guard let destination = CGImageDestinationCreateWithData(finalData, uniformTypeIdentifier, 1, nil) else { return }
CGImageDestinationAddImageFromSource(destination, source, 0, metadata)
guard CGImageDestinationFinalize(destination) else { return }
// Save image that now has metadata
self.fileService.save(filePath, data: finalData)
}
这是我的更新save
方法(与我编写此问题时使用的方法不完全相同,因为我已更新到Swift 2.3,但概念相同):
public func save(fileAt path: NSURL, with data: NSData) throws -> Bool {
guard let pathString = path.absoluteString else { return false }
let directory = (pathString as NSString).stringByDeletingLastPathComponent
if !self.fileManager.fileExistsAtPath(directory) {
try self.makeDirectory(at: NSURL(string: directory)!)
}
if self.fileManager.fileExistsAtPath(pathString) {
try self.delete(fileAt: path)
}
return self.fileManager.createFileAtPath(pathString, contents: data, attributes: [NSFileProtectionKey: NSFileProtectionComplete])
}
我创造了一个实体。我想写一个RestController来在MySQL中保存这个实体和一个图像。我使用了Java8、SpringBoot、Hibernate、Rest API、JSON。我该怎么做呢?我可以一起保存吗? 控制器
问题内容: 我的“配置文件复选框”模块存在问题,该模块存储以逗号分隔的自定义配置文件字段。 问题是如果我创建一个视图以按值过滤。SQL结果最终是这样的: 由于值的存储方式如下,因此不会返回任何数据: “商业与投资,判例法,劳动法,税法” 我只需要调整SQL,以确保该字段包含所选值 有什么我可以做的调整吗? 问题答案: 对于“快速破解”解决方案,您可以尝试在自定义模块中实施,检查$ view-> n
问题内容: 我正在制作一个使用AVFoundation拍照的应用程序,我想将它们保存到自定义相册中,然后查询并显示在我的应用程序中。(除非用户希望,否则我不希望它们出现在一般的照片胶卷中)我真的找不到任何东西可以显示在Swift中如何做到这一点……或根本没有。我应该有其他方法吗? 我在SO上找到了这个示例,但是对我来说这没有意义,我无法使其正常工作。 任何帮助/说明都将非常棒! 问题答案: 这是我
所以我用下面的方法设置了摄像头- 如您所见,我在摄像机参数上使用了setRoation()来实际指定图像方向,并在摄像机本身上使用了setDisplayOriation()来处理表面预览中的方向更改。(注释和未注释的代码似乎都没有保留方向。当我检查数据时,它返回0) 之后,在回调中,我甚至尝试使用矩阵保存具有方向的图像。 实际问题 > 当我在肖像模式下拍照时,一切正常。它看起来像是被拿走了。 但是
问题内容: 在Swift 2.3中,我使用以下代码在自定义相机中拍照: 但是他的话: 显示此错误: 类型“ AVCapturePhotoOutput”的值没有成员“ captureStillImageAsynchronouslyFromConnection” 我尝试解决问题,但是我总是收到越来越多的错误,所以这就是我发布原始代码的原因。 有人知道如何使我的代码再次起作用吗? 谢谢。 问题答案: 多
问题内容: 我正在尝试使用CSS更改复选框的默认“框图像”,但是它不起作用。有没有办法解决? 问题答案: 尝试: jQuery