将EXIF数据保存到JPEG - Swift

4

我目前正在尝试使用UIImagePickerController在应用程序中拍摄照片,将它们保存到本地数据库,然后稍后上传到服务中。

但似乎元数据(特别是EXIF)不会自动与图像捆绑。我已经尝试这样提取它:

func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any])
{ 
    self.imageDelegate?.saveImage( image: info[UIImagePickerControllerOriginalImage] as! UIImage, metadata: (info[UIImagePickerControllerMediaMetadata] as? NSDictionary)! ) 
    // ...
}

现在我已经有了图像和元数据,但是我该如何将它存储到JPEG文件中?我需要服务器上图像中的GPS数据。

我目前正在直接从相机卷中的UImage创建图像:

UIImageJPEGRepresentation(image,CGFloat(Constants.JPEG_QUALITY))

这将被存储和上传。

我读到过可能可以使用“CGImageDestination”,但是我不知道如何在我的情况下使用它们。

1个回答

9

我的解决方案:

func toJpegWithExif(image: UIImage, metadata: NSDictionary, location: CLLocation?) -> Data? {
    return autoreleasepool(invoking: { () -> Data in
        let data = NSMutableData()
        let options = metadata.mutableCopy() as! NSMutableDictionary
        options[ kCGImageDestinationLossyCompressionQuality ] = CGFloat(Constants.JPEG_QUALITY)

        // if location is available, add GPS data, thanks to https://gist.github.com/nitrag/343fe13f01bb0ef3692f2ae2dfe33e86
        if ( nil != location ) {
            let gpsData = NSMutableDictionary()

            let altitudeRef = Int(location!.altitude < 0.0 ? 1 : 0)
            let latitudeRef = location!.coordinate.latitude < 0.0 ? "S" : "N"
            let longitudeRef = location!.coordinate.longitude < 0.0 ? "W" : "E"

            // GPS metadata
            gpsData[(kCGImagePropertyGPSLatitude as String)] = abs(location!.coordinate.latitude)
            gpsData[(kCGImagePropertyGPSLongitude as String)] = abs(location!.coordinate.longitude)
            gpsData[(kCGImagePropertyGPSLatitudeRef as String)] = latitudeRef
            gpsData[(kCGImagePropertyGPSLongitudeRef as String)] = longitudeRef
            gpsData[(kCGImagePropertyGPSAltitude as String)] = Int(abs(location!.altitude))
            gpsData[(kCGImagePropertyGPSAltitudeRef as String)] = altitudeRef
            gpsData[(kCGImagePropertyGPSTimeStamp as String)] = location!.timestamp.isoTime()
            gpsData[(kCGImagePropertyGPSDateStamp as String)] = location!.timestamp.isoDate()
            gpsData[(kCGImagePropertyGPSVersion as String)] = "2.2.0.0"

            options[ kCGImagePropertyGPSDictionary as String ] = gpsData
        }

        let imageDestinationRef = CGImageDestinationCreateWithData(data as CFMutableData, kUTTypeJPEG, 1, nil)!
        CGImageDestinationAddImage(imageDestinationRef, image.cgImage!, options)
        CGImageDestinationFinalize(imageDestinationRef)
        return data as Data
    })
}

extension Date {

    func isoDate() -> String {
        let f = DateFormatter()
        f.timeZone = TimeZone(abbreviation: "UTC")
        f.dateFormat = "yyyy:MM:dd"
        return f.string(from: self)
    }

    func isoTime() -> String {
        let f = DateFormatter()
        f.timeZone = TimeZone(abbreviation: "UTC")
        f.dateFormat = "HH:mm:ss.SSSSSS"
        return f.string(from: self)
    }
}

该方法将UIImage转换为带有来自相机的EXIF数据和来自CLLocationManager的可选GPS位置的Jpeg。

使用上述方法获取GPS,但图像大小未经压缩。 - undefined

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接