Selection of images from list
This commit is contained in:
parent
25cd72c5f4
commit
ada077b06e
|
@ -8,13 +8,15 @@
|
|||
import Foundation
|
||||
import libraw
|
||||
|
||||
/// Collects all metadata from raw data object
|
||||
public struct MetaDataInformation {
|
||||
public let lensinfo : Lense
|
||||
public let sizes : ImageSizes
|
||||
public let parameters : ImageParameters
|
||||
public let otherInformation : ImageOtherInformation
|
||||
|
||||
init(_ rawdata: UnsafeMutablePointer<libraw_data_t>) {
|
||||
/// Creates a new object with data from already opened image
|
||||
public init(_ rawdata: UnsafeMutablePointer<libraw_data_t>) {
|
||||
|
||||
let data = rawdata.pointee
|
||||
|
||||
|
|
Loading…
Reference in New Issue