我有以下代码将 RAW 图像以 JPEG 格式保存到相机胶卷中,但它存在三个问题:1)它是镜像,2)它旋转了 90 度,3)它的分辨率较低。
// In my PhotoCaptureDelegate
func capture(_ captureOutput: AVCapturePhotoOutput, didFinishProcessingRawPhotoSampleBuffer rawSampleBuffer: CMSampleBuffer?, previewPhotoSampleBuffer: CMSampleBuffer?, resolvedSettings: AVCaptureResolvedPhotoSettings, bracketSettings: AVCaptureBracketedStillImageSettings?, error: Error?) {
if ( rawSampleBuffer != nil) {
let temporaryDNGFileURL = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent("\(resolvedSettings.uniqueID)lld.dng")!
let temporaryJPGFileURL = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent("\(resolvedSettings.uniqueID)lld.jpg")!
let imageData = AVCapturePhotoOutput.dngPhotoDataRepresentation(forRawSampleBuffer: rawSampleBuffer!, previewPhotoSampleBuffer: previewPhotoSampleBuffer)
try! imageData?.write(to: temporaryDNGFileURL)
PHPhotoLibrary.requestAuthorization({ (status) in
if status == .authorized {
PHPhotoLibrary.shared().performChanges({
let options = PHAssetResourceCreationOptions()
options.shouldMoveFile = true
//Write Raw:
PHAssetCreationRequest.forAsset().addResource(with: .photo, fileURL: temporaryDNGFileURL, options: options)
// Process Raw to JPG
if let ciRawFilter = CIFilter(imageData: imageData! as Data, options: nil) {
let cs = CGColorSpace(name: CGColorSpace.displayP3)!
do {
try self.contextForSaving.writeJPEGRepresentation(of: ciRawFilter.outputImage!, to: temporaryJPGFileURL, colorSpace: cs, options: [ kCGImageDestinationLossyCompressionQuality as String: 1.0])
PHAssetCreationRequest.forAsset().addResource(with: .photo, fileURL: temporaryJPGFileURL, options: options)
} catch _ {
print("error with jpeg conversion")
}
}
}, completionHandler: { [unowned self] success, error in
if let error = error {
print("Error occurered while saving photo to photo library: \(error)")
} else {
print("Raw photo written to photo library.")
}
if FileManager.default.fileExists(atPath: temporaryDNGFileURL.path) {
do {
(try FileManager.default.removeItem(at: temporaryDNGFileURL))
}
catch _ {
print("could not remove temporary file")
}
}
self.didFinish()
}
)
}
else {
self.didFinish()
}
})
} else {
print("Error capturing photo: \(error)")
}
}
Run Code Online (Sandbox Code Playgroud)
我知道如何直接捕获 JPEG,但我尝试首先对 RAW 数据应用一些自定义过滤器。
如果可以的话请帮忙,先谢谢了!
我已经测试了以下代码,以正确的方向和分辨率以 jpeg 格式保存原始过滤器的输出图像。根据您的要求更改 jpeg 质量和输出色彩空间。希望这对您有帮助。
guard let opCiImage:CIImage = rawFilter!.outputImage else {
print("Error in creating raw filter output")
return
}
let dumpingContext:CIContext = CIContext(options: [kCIContextCacheIntermediates:false,
kCIContextPriorityRequestLow:false])
//Convert to CGImage and then dump into a jpeg
let opCgImage = dumpingContext.createCGImage(opCiImage,
from: opCiImage.extent,
format: kCIFormatARGB8,
colorSpace: CGColorSpace(name: CGColorSpace.sRGB),
deferred: false)
let uImage = UIImage(cgImage: opCgImage!)
guard let opImgData:Data = UIImageJPEGRepresentation(uImage, 0.95) else { return }
Run Code Online (Sandbox Code Playgroud)
请在评论中告诉我反馈。
| 归档时间: |
|
| 查看次数: |
2852 次 |
| 最近记录: |