ImageIO Changes for Swift
ImageIO
Removed CGImageMetadataErrors.init(_: UInt32)
Removed CGImageMetadataErrors.value
Removed CGImageMetadataType.init(_: Int32)
Removed CGImageMetadataType.value
Removed CGImagePropertyOrientation.init(_: UInt32)
Removed CGImagePropertyOrientation.value
Removed CGImageSourceStatus.init(_: Int32)
Removed CGImageSourceStatus.value
Added IMAGEIO_PNG_FILTER_AVG
Added IMAGEIO_PNG_FILTER_NONE
Added IMAGEIO_PNG_FILTER_PAETH
Added IMAGEIO_PNG_FILTER_SUB
Added IMAGEIO_PNG_FILTER_UP
Added IMAGEIO_PNG_NO_FILTERS
Modified CGImageMetadataErrors [enum]
| Declaration | Protocols | Introduction | Raw Value Type | |
|---|---|---|---|---|
| From | struct CGImageMetadataErrors {
init(_ value: UInt32)
var value: UInt32
} | -- | iOS 8.1 | -- |
| To | enum CGImageMetadataErrors : Int32 {
case Unknown
case UnsupportedFormat
case BadArgument
case ConflictingArguments
case PrefixConflict
} | Equatable, Hashable, RawRepresentable | iOS 9.0 | Int32 |
Modified CGImageMetadataErrors.BadArgument
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataErrorBadArgument | var kCGImageMetadataErrorBadArgument: CGImageMetadataErrors { get } | iOS 8.0 |
| To | BadArgument | case BadArgument | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataErrorConflictingArguments | var kCGImageMetadataErrorConflictingArguments: CGImageMetadataErrors { get } | iOS 8.0 |
| To | ConflictingArguments | case ConflictingArguments | iOS 9.0 |
Modified CGImageMetadataErrors.PrefixConflict
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataErrorPrefixConflict | var kCGImageMetadataErrorPrefixConflict: CGImageMetadataErrors { get } | iOS 8.0 |
| To | PrefixConflict | case PrefixConflict | iOS 9.0 |
Modified CGImageMetadataErrors.Unknown
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataErrorUnknown | var kCGImageMetadataErrorUnknown: CGImageMetadataErrors { get } | iOS 8.0 |
| To | Unknown | case Unknown | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataErrorUnsupportedFormat | var kCGImageMetadataErrorUnsupportedFormat: CGImageMetadataErrors { get } | iOS 8.0 |
| To | UnsupportedFormat | case UnsupportedFormat | iOS 9.0 |
Modified CGImageMetadataType [enum]
| Declaration | Protocols | Introduction | Raw Value Type | |
|---|---|---|---|---|
| From | struct CGImageMetadataType {
init(_ value: Int32)
var value: Int32
} | -- | iOS 8.1 | -- |
| To | enum CGImageMetadataType : Int32 {
case Invalid
case Default
case String
case ArrayUnordered
case ArrayOrdered
case AlternateArray
case AlternateText
case Structure
} | Equatable, Hashable, RawRepresentable | iOS 9.0 | Int32 |
Modified CGImageMetadataType.AlternateArray
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataTypeAlternateArray | var kCGImageMetadataTypeAlternateArray: CGImageMetadataType { get } | iOS 8.0 |
| To | AlternateArray | case AlternateArray | iOS 9.0 |
Modified CGImageMetadataType.AlternateText
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataTypeAlternateText | var kCGImageMetadataTypeAlternateText: CGImageMetadataType { get } | iOS 8.0 |
| To | AlternateText | case AlternateText | iOS 9.0 |
Modified CGImageMetadataType.ArrayOrdered
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataTypeArrayOrdered | var kCGImageMetadataTypeArrayOrdered: CGImageMetadataType { get } | iOS 8.0 |
| To | ArrayOrdered | case ArrayOrdered | iOS 9.0 |
Modified CGImageMetadataType.ArrayUnordered
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataTypeArrayUnordered | var kCGImageMetadataTypeArrayUnordered: CGImageMetadataType { get } | iOS 8.0 |
| To | ArrayUnordered | case ArrayUnordered | iOS 9.0 |
Modified CGImageMetadataType.Default
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataTypeDefault | var kCGImageMetadataTypeDefault: CGImageMetadataType { get } | iOS 8.0 |
| To | Default | case Default | iOS 9.0 |
Modified CGImageMetadataType.Invalid
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataTypeInvalid | var kCGImageMetadataTypeInvalid: CGImageMetadataType { get } | iOS 8.0 |
| To | Invalid | case Invalid | iOS 9.0 |
Modified CGImageMetadataType.String
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataTypeString | var kCGImageMetadataTypeString: CGImageMetadataType { get } | iOS 8.0 |
| To | String | case String | iOS 9.0 |
Modified CGImageMetadataType.Structure
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageMetadataTypeStructure | var kCGImageMetadataTypeStructure: CGImageMetadataType { get } | iOS 8.0 |
| To | Structure | case Structure | iOS 9.0 |
Modified CGImagePropertyOrientation [enum]
| Declaration | Protocols | Introduction | Raw Value Type | |
|---|---|---|---|---|
| From | struct CGImagePropertyOrientation {
init(_ value: UInt32)
var value: UInt32
} | -- | iOS 8.1 | -- |
| To | enum CGImagePropertyOrientation : UInt32 {
case Up
case UpMirrored
case Down
case DownMirrored
case LeftMirrored
case Right
case RightMirrored
case Left
} | Equatable, Hashable, RawRepresentable | iOS 9.0 | UInt32 |
Modified CGImagePropertyOrientation.Down
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImagePropertyOrientationDown | var kCGImagePropertyOrientationDown: CGImagePropertyOrientation { get } | iOS 8.0 |
| To | Down | case Down | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImagePropertyOrientationDownMirrored | var kCGImagePropertyOrientationDownMirrored: CGImagePropertyOrientation { get } | iOS 8.0 |
| To | DownMirrored | case DownMirrored | iOS 9.0 |
Modified CGImagePropertyOrientation.Left
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImagePropertyOrientationLeft | var kCGImagePropertyOrientationLeft: CGImagePropertyOrientation { get } | iOS 8.0 |
| To | Left | case Left | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImagePropertyOrientationLeftMirrored | var kCGImagePropertyOrientationLeftMirrored: CGImagePropertyOrientation { get } | iOS 8.0 |
| To | LeftMirrored | case LeftMirrored | iOS 9.0 |
Modified CGImagePropertyOrientation.Right
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImagePropertyOrientationRight | var kCGImagePropertyOrientationRight: CGImagePropertyOrientation { get } | iOS 8.0 |
| To | Right | case Right | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImagePropertyOrientationRightMirrored | var kCGImagePropertyOrientationRightMirrored: CGImagePropertyOrientation { get } | iOS 8.0 |
| To | RightMirrored | case RightMirrored | iOS 9.0 |
Modified CGImagePropertyOrientation.Up
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImagePropertyOrientationUp | var kCGImagePropertyOrientationUp: CGImagePropertyOrientation { get } | iOS 8.0 |
| To | Up | case Up | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImagePropertyOrientationUpMirrored | var kCGImagePropertyOrientationUpMirrored: CGImagePropertyOrientation { get } | iOS 8.0 |
| To | UpMirrored | case UpMirrored | iOS 9.0 |
Modified CGImageSourceStatus [enum]
| Declaration | Protocols | Introduction | Raw Value Type | |
|---|---|---|---|---|
| From | struct CGImageSourceStatus {
init(_ value: Int32)
var value: Int32
} | -- | iOS 8.1 | -- |
| To | enum CGImageSourceStatus : Int32 {
case StatusUnexpectedEOF
case StatusInvalidData
case StatusUnknownType
case StatusReadingHeader
case StatusIncomplete
case StatusComplete
} | Equatable, Hashable, RawRepresentable | iOS 9.0 | Int32 |
Modified CGImageSourceStatus.StatusComplete
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageStatusComplete | var kCGImageStatusComplete: CGImageSourceStatus { get } | iOS 8.0 |
| To | StatusComplete | case StatusComplete | iOS 9.0 |
Modified CGImageSourceStatus.StatusIncomplete
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageStatusIncomplete | var kCGImageStatusIncomplete: CGImageSourceStatus { get } | iOS 8.0 |
| To | StatusIncomplete | case StatusIncomplete | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageStatusInvalidData | var kCGImageStatusInvalidData: CGImageSourceStatus { get } | iOS 8.0 |
| To | StatusInvalidData | case StatusInvalidData | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageStatusReadingHeader | var kCGImageStatusReadingHeader: CGImageSourceStatus { get } | iOS 8.0 |
| To | StatusReadingHeader | case StatusReadingHeader | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageStatusUnexpectedEOF | var kCGImageStatusUnexpectedEOF: CGImageSourceStatus { get } | iOS 8.0 |
| To | StatusUnexpectedEOF | case StatusUnexpectedEOF | iOS 9.0 |
| Name | Declaration | Introduction | |
|---|---|---|---|
| From | kCGImageStatusUnknownType | var kCGImageStatusUnknownType: CGImageSourceStatus { get } | iOS 8.0 |
| To | StatusUnknownType | case StatusUnknownType | iOS 9.0 |
| Declaration | |
|---|---|
| From | func CGImageDestinationAddImage(_ idst: CGImageDestination!, _ image: CGImage!, _ properties: CFDictionary!) |
| To | func CGImageDestinationAddImage(_ idst: CGImageDestination, _ image: CGImage, _ properties: CFDictionary?) |
| Declaration | |
|---|---|
| From | func CGImageDestinationAddImageAndMetadata(_ idst: CGImageDestination!, _ image: CGImage!, _ metadata: CGImageMetadata!, _ options: CFDictionary!) |
| To | func CGImageDestinationAddImageAndMetadata(_ idst: CGImageDestination, _ image: CGImage, _ metadata: CGImageMetadata?, _ options: CFDictionary?) |
| Declaration | |
|---|---|
| From | func CGImageDestinationAddImageFromSource(_ idst: CGImageDestination!, _ isrc: CGImageSource!, _ index: Int, _ properties: CFDictionary!) |
| To | func CGImageDestinationAddImageFromSource(_ idst: CGImageDestination, _ isrc: CGImageSource, _ index: Int, _ properties: CFDictionary?) |
| Declaration | |
|---|---|
| From | func CGImageDestinationCopyImageSource(_ idst: CGImageDestination!, _ isrc: CGImageSource!, _ options: CFDictionary!, _ err: UnsafeMutablePointer<Unmanaged<CFError>?>) -> Bool |
| To | func CGImageDestinationCopyImageSource(_ idst: CGImageDestination, _ isrc: CGImageSource, _ options: CFDictionary?, _ err: UnsafeMutablePointer<Unmanaged<CFError>?>) -> Bool |
| Declaration | |
|---|---|
| From | func CGImageDestinationCopyTypeIdentifiers() -> CFArray! |
| To | func CGImageDestinationCopyTypeIdentifiers() -> CFArray |
| Declaration | |
|---|---|
| From | func CGImageDestinationCreateWithData(_ data: CFMutableData!, _ type: CFString!, _ count: Int, _ options: CFDictionary!) -> CGImageDestination! |
| To | func CGImageDestinationCreateWithData(_ data: CFMutableData, _ type: CFString, _ count: Int, _ options: CFDictionary?) -> CGImageDestination? |
| Declaration | |
|---|---|
| From | func CGImageDestinationCreateWithDataConsumer(_ consumer: CGDataConsumer!, _ type: CFString!, _ count: Int, _ options: CFDictionary!) -> CGImageDestination! |
| To | func CGImageDestinationCreateWithDataConsumer(_ consumer: CGDataConsumer, _ type: CFString, _ count: Int, _ options: CFDictionary?) -> CGImageDestination? |
| Declaration | |
|---|---|
| From | func CGImageDestinationCreateWithURL(_ url: CFURL!, _ type: CFString!, _ count: Int, _ options: CFDictionary!) -> CGImageDestination! |
| To | func CGImageDestinationCreateWithURL(_ url: CFURL, _ type: CFString, _ count: Int, _ options: CFDictionary?) -> CGImageDestination? |
| Declaration | |
|---|---|
| From | func CGImageDestinationFinalize(_ idst: CGImageDestination!) -> Bool |
| To | func CGImageDestinationFinalize(_ idst: CGImageDestination) -> Bool |
| Declaration | |
|---|---|
| From | func CGImageDestinationSetProperties(_ idst: CGImageDestination!, _ properties: CFDictionary!) |
| To | func CGImageDestinationSetProperties(_ idst: CGImageDestination, _ properties: CFDictionary?) |
| Declaration | |
|---|---|
| From | func CGImageMetadataCopyStringValueWithPath(_ metadata: CGImageMetadata!, _ parent: CGImageMetadataTag!, _ path: CFString!) -> CFString! |
| To | func CGImageMetadataCopyStringValueWithPath(_ metadata: CGImageMetadata, _ parent: CGImageMetadataTag?, _ path: CFString) -> CFString? |
| Declaration | |
|---|---|
| From | func CGImageMetadataCopyTagMatchingImageProperty(_ metadata: CGImageMetadata!, _ dictionaryName: CFString!, _ propertyName: CFString!) -> CGImageMetadataTag! |
| To | func CGImageMetadataCopyTagMatchingImageProperty(_ metadata: CGImageMetadata, _ dictionaryName: CFString, _ propertyName: CFString) -> CGImageMetadataTag? |
| Declaration | |
|---|---|
| From | func CGImageMetadataCopyTags(_ metadata: CGImageMetadata!) -> CFArray! |
| To | func CGImageMetadataCopyTags(_ metadata: CGImageMetadata) -> CFArray? |
| Declaration | |
|---|---|
| From | func CGImageMetadataCopyTagWithPath(_ metadata: CGImageMetadata!, _ parent: CGImageMetadataTag!, _ path: CFString!) -> CGImageMetadataTag! |
| To | func CGImageMetadataCopyTagWithPath(_ metadata: CGImageMetadata, _ parent: CGImageMetadataTag?, _ path: CFString) -> CGImageMetadataTag? |
| Declaration | |
|---|---|
| From | func CGImageMetadataCreateFromXMPData(_ data: CFData!) -> CGImageMetadata! |
| To | func CGImageMetadataCreateFromXMPData(_ data: CFData) -> CGImageMetadata? |
| Declaration | |
|---|---|
| From | func CGImageMetadataCreateMutable() -> CGMutableImageMetadata! |
| To | func CGImageMetadataCreateMutable() -> CGMutableImageMetadata |
| Declaration | |
|---|---|
| From | func CGImageMetadataCreateMutableCopy(_ metadata: CGImageMetadata!) -> CGMutableImageMetadata! |
| To | func CGImageMetadataCreateMutableCopy(_ metadata: CGImageMetadata) -> CGMutableImageMetadata? |
| Declaration | |
|---|---|
| From | func CGImageMetadataCreateXMPData(_ metadata: CGImageMetadata!, _ options: CFDictionary!) -> CFData! |
| To | func CGImageMetadataCreateXMPData(_ metadata: CGImageMetadata, _ options: CFDictionary?) -> CFData? |
| Declaration | |
|---|---|
| From | func CGImageMetadataEnumerateTagsUsingBlock(_ metadata: CGImageMetadata!, _ rootPath: CFString!, _ options: CFDictionary!, _ block: CGImageMetadataTagBlock!) |
| To | func CGImageMetadataEnumerateTagsUsingBlock(_ metadata: CGImageMetadata, _ rootPath: CFString?, _ options: CFDictionary?, _ block: CGImageMetadataTagBlock) |
| Declaration | |
|---|---|
| From | func CGImageMetadataRegisterNamespaceForPrefix(_ metadata: CGMutableImageMetadata!, _ xmlns: CFString!, _ prefix: CFString!, _ err: UnsafeMutablePointer<Unmanaged<CFError>?>) -> Bool |
| To | func CGImageMetadataRegisterNamespaceForPrefix(_ metadata: CGMutableImageMetadata, _ xmlns: CFString, _ prefix: CFString, _ err: UnsafeMutablePointer<Unmanaged<CFError>?>) -> Bool |
| Declaration | |
|---|---|
| From | func CGImageMetadataRemoveTagWithPath(_ metadata: CGMutableImageMetadata!, _ parent: CGImageMetadataTag!, _ path: CFString!) -> Bool |
| To | func CGImageMetadataRemoveTagWithPath(_ metadata: CGMutableImageMetadata, _ parent: CGImageMetadataTag?, _ path: CFString) -> Bool |
| Declaration | |
|---|---|
| From | func CGImageMetadataSetTagWithPath(_ metadata: CGMutableImageMetadata!, _ parent: CGImageMetadataTag!, _ path: CFString!, _ tag: CGImageMetadataTag!) -> Bool |
| To | func CGImageMetadataSetTagWithPath(_ metadata: CGMutableImageMetadata, _ parent: CGImageMetadataTag?, _ path: CFString, _ tag: CGImageMetadataTag) -> Bool |
| Declaration | |
|---|---|
| From | func CGImageMetadataSetValueMatchingImageProperty(_ metadata: CGMutableImageMetadata!, _ dictionaryName: CFString!, _ propertyName: CFString!, _ value: AnyObject!) -> Bool |
| To | func CGImageMetadataSetValueMatchingImageProperty(_ metadata: CGMutableImageMetadata, _ dictionaryName: CFString, _ propertyName: CFString, _ value: AnyObject) -> Bool |
| Declaration | |
|---|---|
| From | func CGImageMetadataSetValueWithPath(_ metadata: CGMutableImageMetadata!, _ parent: CGImageMetadataTag!, _ path: CFString!, _ value: AnyObject!) -> Bool |
| To | func CGImageMetadataSetValueWithPath(_ metadata: CGMutableImageMetadata, _ parent: CGImageMetadataTag?, _ path: CFString, _ value: AnyObject) -> Bool |
Modified CGImageMetadataTagBlock
| Declaration | |
|---|---|
| From | typealias CGImageMetadataTagBlock = (CFString!, CGImageMetadataTag!) -> Bool |
| To | typealias CGImageMetadataTagBlock = (CFString, CGImageMetadataTag) -> Bool |
| Declaration | |
|---|---|
| From | func CGImageMetadataTagCopyName(_ tag: CGImageMetadataTag!) -> CFString! |
| To | func CGImageMetadataTagCopyName(_ tag: CGImageMetadataTag) -> CFString? |
| Declaration | |
|---|---|
| From | func CGImageMetadataTagCopyNamespace(_ tag: CGImageMetadataTag!) -> CFString! |
| To | func CGImageMetadataTagCopyNamespace(_ tag: CGImageMetadataTag) -> CFString? |
| Declaration | |
|---|---|
| From | func CGImageMetadataTagCopyPrefix(_ tag: CGImageMetadataTag!) -> CFString! |
| To | func CGImageMetadataTagCopyPrefix(_ tag: CGImageMetadataTag) -> CFString? |
| Declaration | |
|---|---|
| From | func CGImageMetadataTagCopyQualifiers(_ tag: CGImageMetadataTag!) -> CFArray! |
| To | func CGImageMetadataTagCopyQualifiers(_ tag: CGImageMetadataTag) -> CFArray? |
| Declaration | |
|---|---|
| From | func CGImageMetadataTagCopyValue(_ tag: CGImageMetadataTag!) -> AnyObject! |
| To | func CGImageMetadataTagCopyValue(_ tag: CGImageMetadataTag) -> AnyObject? |
| Declaration | |
|---|---|
| From | func CGImageMetadataTagCreate(_ xmlns: CFString!, _ prefix: CFString!, _ name: CFString!, _ type: CGImageMetadataType, _ value: AnyObject!) -> CGImageMetadataTag! |
| To | func CGImageMetadataTagCreate(_ xmlns: CFString, _ prefix: CFString?, _ name: CFString, _ type: CGImageMetadataType, _ value: AnyObject) -> CGImageMetadataTag? |
| Declaration | |
|---|---|
| From | func CGImageMetadataTagGetType(_ tag: CGImageMetadataTag!) -> CGImageMetadataType |
| To | func CGImageMetadataTagGetType(_ tag: CGImageMetadataTag) -> CGImageMetadataType |
Modified CGImageSourceCopyMetadataAtIndex(_: CGImageSource, _: Int, _: CFDictionary?) -> CGImageMetadata?
| Declaration | |
|---|---|
| From | func CGImageSourceCopyMetadataAtIndex(_ isrc: CGImageSource!, _ index: Int, _ options: CFDictionary!) -> CGImageMetadata! |
| To | func CGImageSourceCopyMetadataAtIndex(_ isrc: CGImageSource, _ index: Int, _ options: CFDictionary?) -> CGImageMetadata? |
| Declaration | |
|---|---|
| From | func CGImageSourceCopyProperties(_ isrc: CGImageSource!, _ options: CFDictionary!) -> CFDictionary! |
| To | func CGImageSourceCopyProperties(_ isrc: CGImageSource, _ options: CFDictionary?) -> CFDictionary? |
Modified CGImageSourceCopyPropertiesAtIndex(_: CGImageSource, _: Int, _: CFDictionary?) -> CFDictionary?
| Declaration | |
|---|---|
| From | func CGImageSourceCopyPropertiesAtIndex(_ isrc: CGImageSource!, _ index: Int, _ options: CFDictionary!) -> CFDictionary! |
| To | func CGImageSourceCopyPropertiesAtIndex(_ isrc: CGImageSource, _ index: Int, _ options: CFDictionary?) -> CFDictionary? |
| Declaration | |
|---|---|
| From | func CGImageSourceCopyTypeIdentifiers() -> CFArray! |
| To | func CGImageSourceCopyTypeIdentifiers() -> CFArray |
| Declaration | |
|---|---|
| From | func CGImageSourceCreateImageAtIndex(_ isrc: CGImageSource!, _ index: Int, _ options: CFDictionary!) -> CGImage! |
| To | func CGImageSourceCreateImageAtIndex(_ isrc: CGImageSource, _ index: Int, _ options: CFDictionary?) -> CGImage? |
| Declaration | |
|---|---|
| From | func CGImageSourceCreateIncremental(_ options: CFDictionary!) -> CGImageSource! |
| To | func CGImageSourceCreateIncremental(_ options: CFDictionary?) -> CGImageSource |
Modified CGImageSourceCreateThumbnailAtIndex(_: CGImageSource, _: Int, _: CFDictionary?) -> CGImage?
| Declaration | |
|---|---|
| From | func CGImageSourceCreateThumbnailAtIndex(_ isrc: CGImageSource!, _ index: Int, _ options: CFDictionary!) -> CGImage! |
| To | func CGImageSourceCreateThumbnailAtIndex(_ isrc: CGImageSource, _ index: Int, _ options: CFDictionary?) -> CGImage? |
| Declaration | |
|---|---|
| From | func CGImageSourceCreateWithData(_ data: CFData!, _ options: CFDictionary!) -> CGImageSource! |
| To | func CGImageSourceCreateWithData(_ data: CFData, _ options: CFDictionary?) -> CGImageSource? |
| Declaration | |
|---|---|
| From | func CGImageSourceCreateWithDataProvider(_ provider: CGDataProvider!, _ options: CFDictionary!) -> CGImageSource! |
| To | func CGImageSourceCreateWithDataProvider(_ provider: CGDataProvider, _ options: CFDictionary?) -> CGImageSource? |
| Declaration | |
|---|---|
| From | func CGImageSourceCreateWithURL(_ url: CFURL!, _ options: CFDictionary!) -> CGImageSource! |
| To | func CGImageSourceCreateWithURL(_ url: CFURL, _ options: CFDictionary?) -> CGImageSource? |
| Declaration | |
|---|---|
| From | func CGImageSourceGetCount(_ isrc: CGImageSource!) -> Int |
| To | func CGImageSourceGetCount(_ isrc: CGImageSource) -> Int |
| Declaration | |
|---|---|
| From | func CGImageSourceGetStatus(_ isrc: CGImageSource!) -> CGImageSourceStatus |
| To | func CGImageSourceGetStatus(_ isrc: CGImageSource) -> CGImageSourceStatus |
| Declaration | |
|---|---|
| From | func CGImageSourceGetStatusAtIndex(_ isrc: CGImageSource!, _ index: Int) -> CGImageSourceStatus |
| To | func CGImageSourceGetStatusAtIndex(_ isrc: CGImageSource, _ index: Int) -> CGImageSourceStatus |
| Declaration | |
|---|---|
| From | func CGImageSourceGetType(_ isrc: CGImageSource!) -> CFString! |
| To | func CGImageSourceGetType(_ isrc: CGImageSource) -> CFString? |
| Declaration | |
|---|---|
| From | func CGImageSourceRemoveCacheAtIndex(_ isrc: CGImageSource!, _ index: Int) |
| To | func CGImageSourceRemoveCacheAtIndex(_ isrc: CGImageSource, _ index: Int) |
| Declaration | |
|---|---|
| From | func CGImageSourceUpdateData(_ isrc: CGImageSource!, _ data: CFData!, _ final: Bool) |
| To | func CGImageSourceUpdateData(_ isrc: CGImageSource, _ data: CFData, _ final: Bool) |
| Declaration | |
|---|---|
| From | func CGImageSourceUpdateDataProvider(_ isrc: CGImageSource!, _ provider: CGDataProvider!, _ final: Bool) |
| To | func CGImageSourceUpdateDataProvider(_ isrc: CGImageSource, _ provider: CGDataProvider, _ final: Bool) |
Modified kCFErrorDomainCGImageMetadata
| Declaration | |
|---|---|
| From | let kCFErrorDomainCGImageMetadata: CFString! |
| To | let kCFErrorDomainCGImageMetadata: CFString |
Modified kCGImageDestinationBackgroundColor
| Declaration | |
|---|---|
| From | let kCGImageDestinationBackgroundColor: CFString! |
| To | let kCGImageDestinationBackgroundColor: CFString |
Modified kCGImageDestinationDateTime
| Declaration | |
|---|---|
| From | let kCGImageDestinationDateTime: CFString! |
| To | let kCGImageDestinationDateTime: CFString |
Modified kCGImageDestinationEmbedThumbnail
| Declaration | |
|---|---|
| From | let kCGImageDestinationEmbedThumbnail: CFString! |
| To | let kCGImageDestinationEmbedThumbnail: CFString |
Modified kCGImageDestinationImageMaxPixelSize
| Declaration | |
|---|---|
| From | let kCGImageDestinationImageMaxPixelSize: CFString! |
| To | let kCGImageDestinationImageMaxPixelSize: CFString |
| Declaration | |
|---|---|
| From | let kCGImageDestinationLossyCompressionQuality: CFString! |
| To | let kCGImageDestinationLossyCompressionQuality: CFString |
Modified kCGImageDestinationMergeMetadata
| Declaration | |
|---|---|
| From | let kCGImageDestinationMergeMetadata: CFString! |
| To | let kCGImageDestinationMergeMetadata: CFString |
Modified kCGImageDestinationMetadata
| Declaration | |
|---|---|
| From | let kCGImageDestinationMetadata: CFString! |
| To | let kCGImageDestinationMetadata: CFString |
Modified kCGImageDestinationOrientation
| Declaration | |
|---|---|
| From | let kCGImageDestinationOrientation: CFString! |
| To | let kCGImageDestinationOrientation: CFString |
Modified kCGImageMetadataEnumerateRecursively
| Declaration | |
|---|---|
| From | let kCGImageMetadataEnumerateRecursively: CFString! |
| To | let kCGImageMetadataEnumerateRecursively: CFString |
Modified kCGImageMetadataNamespaceDublinCore
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespaceDublinCore: CFString! |
| To | let kCGImageMetadataNamespaceDublinCore: CFString |
Modified kCGImageMetadataNamespaceExif
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespaceExif: CFString! |
| To | let kCGImageMetadataNamespaceExif: CFString |
Modified kCGImageMetadataNamespaceExifAux
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespaceExifAux: CFString! |
| To | let kCGImageMetadataNamespaceExifAux: CFString |
Modified kCGImageMetadataNamespaceExifEX
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespaceExifEX: CFString! |
| To | let kCGImageMetadataNamespaceExifEX: CFString |
Modified kCGImageMetadataNamespaceIPTCCore
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespaceIPTCCore: CFString! |
| To | let kCGImageMetadataNamespaceIPTCCore: CFString |
Modified kCGImageMetadataNamespacePhotoshop
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespacePhotoshop: CFString! |
| To | let kCGImageMetadataNamespacePhotoshop: CFString |
Modified kCGImageMetadataNamespaceTIFF
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespaceTIFF: CFString! |
| To | let kCGImageMetadataNamespaceTIFF: CFString |
Modified kCGImageMetadataNamespaceXMPBasic
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespaceXMPBasic: CFString! |
| To | let kCGImageMetadataNamespaceXMPBasic: CFString |
Modified kCGImageMetadataNamespaceXMPRights
| Declaration | |
|---|---|
| From | let kCGImageMetadataNamespaceXMPRights: CFString! |
| To | let kCGImageMetadataNamespaceXMPRights: CFString |
Modified kCGImageMetadataPrefixDublinCore
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixDublinCore: CFString! |
| To | let kCGImageMetadataPrefixDublinCore: CFString |
Modified kCGImageMetadataPrefixExif
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixExif: CFString! |
| To | let kCGImageMetadataPrefixExif: CFString |
Modified kCGImageMetadataPrefixExifAux
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixExifAux: CFString! |
| To | let kCGImageMetadataPrefixExifAux: CFString |
Modified kCGImageMetadataPrefixExifEX
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixExifEX: CFString! |
| To | let kCGImageMetadataPrefixExifEX: CFString |
Modified kCGImageMetadataPrefixIPTCCore
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixIPTCCore: CFString! |
| To | let kCGImageMetadataPrefixIPTCCore: CFString |
Modified kCGImageMetadataPrefixPhotoshop
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixPhotoshop: CFString! |
| To | let kCGImageMetadataPrefixPhotoshop: CFString |
Modified kCGImageMetadataPrefixTIFF
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixTIFF: CFString! |
| To | let kCGImageMetadataPrefixTIFF: CFString |
Modified kCGImageMetadataPrefixXMPBasic
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixXMPBasic: CFString! |
| To | let kCGImageMetadataPrefixXMPBasic: CFString |
Modified kCGImageMetadataPrefixXMPRights
| Declaration | |
|---|---|
| From | let kCGImageMetadataPrefixXMPRights: CFString! |
| To | let kCGImageMetadataPrefixXMPRights: CFString |
Modified kCGImageMetadataShouldExcludeGPS
| Declaration | |
|---|---|
| From | let kCGImageMetadataShouldExcludeGPS: CFString! |
| To | let kCGImageMetadataShouldExcludeGPS: CFString |
Modified kCGImageMetadataShouldExcludeXMP
| Declaration | |
|---|---|
| From | let kCGImageMetadataShouldExcludeXMP: CFString! |
| To | let kCGImageMetadataShouldExcludeXMP: CFString |
Modified kCGImageProperty8BIMDictionary
| Declaration | |
|---|---|
| From | let kCGImageProperty8BIMDictionary: CFString! |
| To | let kCGImageProperty8BIMDictionary: CFString |
Modified kCGImageProperty8BIMLayerNames
| Declaration | |
|---|---|
| From | let kCGImageProperty8BIMLayerNames: CFString! |
| To | let kCGImageProperty8BIMLayerNames: CFString |
Modified kCGImageProperty8BIMVersion
| Declaration | |
|---|---|
| From | let kCGImageProperty8BIMVersion: CFString! |
| To | let kCGImageProperty8BIMVersion: CFString |
Modified kCGImagePropertyAPNGDelayTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyAPNGDelayTime: CFString! |
| To | let kCGImagePropertyAPNGDelayTime: CFString |
Modified kCGImagePropertyAPNGLoopCount
| Declaration | |
|---|---|
| From | let kCGImagePropertyAPNGLoopCount: CFString! |
| To | let kCGImagePropertyAPNGLoopCount: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyAPNGUnclampedDelayTime: CFString! |
| To | let kCGImagePropertyAPNGUnclampedDelayTime: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFCameraSerialNumber: CFString! |
| To | let kCGImagePropertyCIFFCameraSerialNumber: CFString |
Modified kCGImagePropertyCIFFContinuousDrive
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFContinuousDrive: CFString! |
| To | let kCGImagePropertyCIFFContinuousDrive: CFString |
Modified kCGImagePropertyCIFFDescription
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFDescription: CFString! |
| To | let kCGImagePropertyCIFFDescription: CFString |
Modified kCGImagePropertyCIFFDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFDictionary: CFString! |
| To | let kCGImagePropertyCIFFDictionary: CFString |
Modified kCGImagePropertyCIFFFirmware
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFFirmware: CFString! |
| To | let kCGImagePropertyCIFFFirmware: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFFlashExposureComp: CFString! |
| To | let kCGImagePropertyCIFFFlashExposureComp: CFString |
Modified kCGImagePropertyCIFFFocusMode
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFFocusMode: CFString! |
| To | let kCGImagePropertyCIFFFocusMode: CFString |
Modified kCGImagePropertyCIFFImageFileName
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFImageFileName: CFString! |
| To | let kCGImagePropertyCIFFImageFileName: CFString |
Modified kCGImagePropertyCIFFImageName
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFImageName: CFString! |
| To | let kCGImagePropertyCIFFImageName: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFImageSerialNumber: CFString! |
| To | let kCGImagePropertyCIFFImageSerialNumber: CFString |
Modified kCGImagePropertyCIFFLensMaxMM
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFLensMaxMM: CFString! |
| To | let kCGImagePropertyCIFFLensMaxMM: CFString |
Modified kCGImagePropertyCIFFLensMinMM
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFLensMinMM: CFString! |
| To | let kCGImagePropertyCIFFLensMinMM: CFString |
Modified kCGImagePropertyCIFFLensModel
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFLensModel: CFString! |
| To | let kCGImagePropertyCIFFLensModel: CFString |
Modified kCGImagePropertyCIFFMeasuredEV
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFMeasuredEV: CFString! |
| To | let kCGImagePropertyCIFFMeasuredEV: CFString |
Modified kCGImagePropertyCIFFMeteringMode
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFMeteringMode: CFString! |
| To | let kCGImagePropertyCIFFMeteringMode: CFString |
Modified kCGImagePropertyCIFFOwnerName
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFOwnerName: CFString! |
| To | let kCGImagePropertyCIFFOwnerName: CFString |
Modified kCGImagePropertyCIFFRecordID
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFRecordID: CFString! |
| To | let kCGImagePropertyCIFFRecordID: CFString |
Modified kCGImagePropertyCIFFReleaseMethod
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFReleaseMethod: CFString! |
| To | let kCGImagePropertyCIFFReleaseMethod: CFString |
Modified kCGImagePropertyCIFFReleaseTiming
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFReleaseTiming: CFString! |
| To | let kCGImagePropertyCIFFReleaseTiming: CFString |
Modified kCGImagePropertyCIFFSelfTimingTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFSelfTimingTime: CFString! |
| To | let kCGImagePropertyCIFFSelfTimingTime: CFString |
Modified kCGImagePropertyCIFFShootingMode
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFShootingMode: CFString! |
| To | let kCGImagePropertyCIFFShootingMode: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyCIFFWhiteBalanceIndex: CFString! |
| To | let kCGImagePropertyCIFFWhiteBalanceIndex: CFString |
Modified kCGImagePropertyColorModel
| Declaration | |
|---|---|
| From | let kCGImagePropertyColorModel: CFString! |
| To | let kCGImagePropertyColorModel: CFString |
Modified kCGImagePropertyColorModelCMYK
| Declaration | |
|---|---|
| From | let kCGImagePropertyColorModelCMYK: CFString! |
| To | let kCGImagePropertyColorModelCMYK: CFString |
Modified kCGImagePropertyColorModelGray
| Declaration | |
|---|---|
| From | let kCGImagePropertyColorModelGray: CFString! |
| To | let kCGImagePropertyColorModelGray: CFString |
Modified kCGImagePropertyColorModelLab
| Declaration | |
|---|---|
| From | let kCGImagePropertyColorModelLab: CFString! |
| To | let kCGImagePropertyColorModelLab: CFString |
Modified kCGImagePropertyColorModelRGB
| Declaration | |
|---|---|
| From | let kCGImagePropertyColorModelRGB: CFString! |
| To | let kCGImagePropertyColorModelRGB: CFString |
Modified kCGImagePropertyDepth
| Declaration | |
|---|---|
| From | let kCGImagePropertyDepth: CFString! |
| To | let kCGImagePropertyDepth: CFString |
Modified kCGImagePropertyDNGBackwardVersion
| Declaration | |
|---|---|
| From | let kCGImagePropertyDNGBackwardVersion: CFString! |
| To | let kCGImagePropertyDNGBackwardVersion: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyDNGCameraSerialNumber: CFString! |
| To | let kCGImagePropertyDNGCameraSerialNumber: CFString |
Modified kCGImagePropertyDNGDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyDNGDictionary: CFString! |
| To | let kCGImagePropertyDNGDictionary: CFString |
Modified kCGImagePropertyDNGLensInfo
| Declaration | |
|---|---|
| From | let kCGImagePropertyDNGLensInfo: CFString! |
| To | let kCGImagePropertyDNGLensInfo: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyDNGLocalizedCameraModel: CFString! |
| To | let kCGImagePropertyDNGLocalizedCameraModel: CFString |
Modified kCGImagePropertyDNGUniqueCameraModel
| Declaration | |
|---|---|
| From | let kCGImagePropertyDNGUniqueCameraModel: CFString! |
| To | let kCGImagePropertyDNGUniqueCameraModel: CFString |
Modified kCGImagePropertyDNGVersion
| Declaration | |
|---|---|
| From | let kCGImagePropertyDNGVersion: CFString! |
| To | let kCGImagePropertyDNGVersion: CFString |
Modified kCGImagePropertyDPIHeight
| Declaration | |
|---|---|
| From | let kCGImagePropertyDPIHeight: CFString! |
| To | let kCGImagePropertyDPIHeight: CFString |
Modified kCGImagePropertyDPIWidth
| Declaration | |
|---|---|
| From | let kCGImagePropertyDPIWidth: CFString! |
| To | let kCGImagePropertyDPIWidth: CFString |
Modified kCGImagePropertyExifApertureValue
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifApertureValue: CFString! |
| To | let kCGImagePropertyExifApertureValue: CFString |
Modified kCGImagePropertyExifAuxDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxDictionary: CFString! |
| To | let kCGImagePropertyExifAuxDictionary: CFString |
Modified kCGImagePropertyExifAuxFirmware
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxFirmware: CFString! |
| To | let kCGImagePropertyExifAuxFirmware: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxFlashCompensation: CFString! |
| To | let kCGImagePropertyExifAuxFlashCompensation: CFString |
Modified kCGImagePropertyExifAuxImageNumber
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxImageNumber: CFString! |
| To | let kCGImagePropertyExifAuxImageNumber: CFString |
Modified kCGImagePropertyExifAuxLensID
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxLensID: CFString! |
| To | let kCGImagePropertyExifAuxLensID: CFString |
Modified kCGImagePropertyExifAuxLensInfo
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxLensInfo: CFString! |
| To | let kCGImagePropertyExifAuxLensInfo: CFString |
Modified kCGImagePropertyExifAuxLensModel
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxLensModel: CFString! |
| To | let kCGImagePropertyExifAuxLensModel: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxLensSerialNumber: CFString! |
| To | let kCGImagePropertyExifAuxLensSerialNumber: CFString |
Modified kCGImagePropertyExifAuxOwnerName
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxOwnerName: CFString! |
| To | let kCGImagePropertyExifAuxOwnerName: CFString |
Modified kCGImagePropertyExifAuxSerialNumber
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifAuxSerialNumber: CFString! |
| To | let kCGImagePropertyExifAuxSerialNumber: CFString |
Modified kCGImagePropertyExifBodySerialNumber
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifBodySerialNumber: CFString! |
| To | let kCGImagePropertyExifBodySerialNumber: CFString |
Modified kCGImagePropertyExifBrightnessValue
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifBrightnessValue: CFString! |
| To | let kCGImagePropertyExifBrightnessValue: CFString |
Modified kCGImagePropertyExifCameraOwnerName
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifCameraOwnerName: CFString! |
| To | let kCGImagePropertyExifCameraOwnerName: CFString |
Modified kCGImagePropertyExifCFAPattern
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifCFAPattern: CFString! |
| To | let kCGImagePropertyExifCFAPattern: CFString |
Modified kCGImagePropertyExifColorSpace
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifColorSpace: CFString! |
| To | let kCGImagePropertyExifColorSpace: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifComponentsConfiguration: CFString! |
| To | let kCGImagePropertyExifComponentsConfiguration: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifCompressedBitsPerPixel: CFString! |
| To | let kCGImagePropertyExifCompressedBitsPerPixel: CFString |
Modified kCGImagePropertyExifContrast
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifContrast: CFString! |
| To | let kCGImagePropertyExifContrast: CFString |
Modified kCGImagePropertyExifCustomRendered
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifCustomRendered: CFString! |
| To | let kCGImagePropertyExifCustomRendered: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifDateTimeDigitized: CFString! |
| To | let kCGImagePropertyExifDateTimeDigitized: CFString |
Modified kCGImagePropertyExifDateTimeOriginal
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifDateTimeOriginal: CFString! |
| To | let kCGImagePropertyExifDateTimeOriginal: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifDeviceSettingDescription: CFString! |
| To | let kCGImagePropertyExifDeviceSettingDescription: CFString |
Modified kCGImagePropertyExifDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifDictionary: CFString! |
| To | let kCGImagePropertyExifDictionary: CFString |
Modified kCGImagePropertyExifDigitalZoomRatio
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifDigitalZoomRatio: CFString! |
| To | let kCGImagePropertyExifDigitalZoomRatio: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifExposureBiasValue: CFString! |
| To | let kCGImagePropertyExifExposureBiasValue: CFString |
Modified kCGImagePropertyExifExposureIndex
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifExposureIndex: CFString! |
| To | let kCGImagePropertyExifExposureIndex: CFString |
Modified kCGImagePropertyExifExposureMode
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifExposureMode: CFString! |
| To | let kCGImagePropertyExifExposureMode: CFString |
Modified kCGImagePropertyExifExposureProgram
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifExposureProgram: CFString! |
| To | let kCGImagePropertyExifExposureProgram: CFString |
Modified kCGImagePropertyExifExposureTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifExposureTime: CFString! |
| To | let kCGImagePropertyExifExposureTime: CFString |
Modified kCGImagePropertyExifFileSource
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFileSource: CFString! |
| To | let kCGImagePropertyExifFileSource: CFString |
Modified kCGImagePropertyExifFlash
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFlash: CFString! |
| To | let kCGImagePropertyExifFlash: CFString |
Modified kCGImagePropertyExifFlashEnergy
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFlashEnergy: CFString! |
| To | let kCGImagePropertyExifFlashEnergy: CFString |
Modified kCGImagePropertyExifFlashPixVersion
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFlashPixVersion: CFString! |
| To | let kCGImagePropertyExifFlashPixVersion: CFString |
Modified kCGImagePropertyExifFNumber
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFNumber: CFString! |
| To | let kCGImagePropertyExifFNumber: CFString |
Modified kCGImagePropertyExifFocalLength
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFocalLength: CFString! |
| To | let kCGImagePropertyExifFocalLength: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFocalLenIn35mmFilm: CFString! |
| To | let kCGImagePropertyExifFocalLenIn35mmFilm: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFocalPlaneResolutionUnit: CFString! |
| To | let kCGImagePropertyExifFocalPlaneResolutionUnit: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFocalPlaneXResolution: CFString! |
| To | let kCGImagePropertyExifFocalPlaneXResolution: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifFocalPlaneYResolution: CFString! |
| To | let kCGImagePropertyExifFocalPlaneYResolution: CFString |
Modified kCGImagePropertyExifGainControl
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifGainControl: CFString! |
| To | let kCGImagePropertyExifGainControl: CFString |
Modified kCGImagePropertyExifGamma
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifGamma: CFString! |
| To | let kCGImagePropertyExifGamma: CFString |
Modified kCGImagePropertyExifImageUniqueID
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifImageUniqueID: CFString! |
| To | let kCGImagePropertyExifImageUniqueID: CFString |
Modified kCGImagePropertyExifISOSpeed
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifISOSpeed: CFString! |
| To | let kCGImagePropertyExifISOSpeed: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifISOSpeedLatitudeyyy: CFString! |
| To | let kCGImagePropertyExifISOSpeedLatitudeyyy: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifISOSpeedLatitudezzz: CFString! |
| To | let kCGImagePropertyExifISOSpeedLatitudezzz: CFString |
Modified kCGImagePropertyExifISOSpeedRatings
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifISOSpeedRatings: CFString! |
| To | let kCGImagePropertyExifISOSpeedRatings: CFString |
Modified kCGImagePropertyExifLensMake
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifLensMake: CFString! |
| To | let kCGImagePropertyExifLensMake: CFString |
Modified kCGImagePropertyExifLensModel
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifLensModel: CFString! |
| To | let kCGImagePropertyExifLensModel: CFString |
Modified kCGImagePropertyExifLensSerialNumber
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifLensSerialNumber: CFString! |
| To | let kCGImagePropertyExifLensSerialNumber: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifLensSpecification: CFString! |
| To | let kCGImagePropertyExifLensSpecification: CFString |
Modified kCGImagePropertyExifLightSource
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifLightSource: CFString! |
| To | let kCGImagePropertyExifLightSource: CFString |
Modified kCGImagePropertyExifMakerNote
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifMakerNote: CFString! |
| To | let kCGImagePropertyExifMakerNote: CFString |
Modified kCGImagePropertyExifMaxApertureValue
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifMaxApertureValue: CFString! |
| To | let kCGImagePropertyExifMaxApertureValue: CFString |
Modified kCGImagePropertyExifMeteringMode
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifMeteringMode: CFString! |
| To | let kCGImagePropertyExifMeteringMode: CFString |
Modified kCGImagePropertyExifOECF
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifOECF: CFString! |
| To | let kCGImagePropertyExifOECF: CFString |
Modified kCGImagePropertyExifPixelXDimension
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifPixelXDimension: CFString! |
| To | let kCGImagePropertyExifPixelXDimension: CFString |
Modified kCGImagePropertyExifPixelYDimension
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifPixelYDimension: CFString! |
| To | let kCGImagePropertyExifPixelYDimension: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifRecommendedExposureIndex: CFString! |
| To | let kCGImagePropertyExifRecommendedExposureIndex: CFString |
Modified kCGImagePropertyExifRelatedSoundFile
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifRelatedSoundFile: CFString! |
| To | let kCGImagePropertyExifRelatedSoundFile: CFString |
Modified kCGImagePropertyExifSaturation
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSaturation: CFString! |
| To | let kCGImagePropertyExifSaturation: CFString |
Modified kCGImagePropertyExifSceneCaptureType
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSceneCaptureType: CFString! |
| To | let kCGImagePropertyExifSceneCaptureType: CFString |
Modified kCGImagePropertyExifSceneType
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSceneType: CFString! |
| To | let kCGImagePropertyExifSceneType: CFString |
Modified kCGImagePropertyExifSensingMethod
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSensingMethod: CFString! |
| To | let kCGImagePropertyExifSensingMethod: CFString |
Modified kCGImagePropertyExifSensitivityType
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSensitivityType: CFString! |
| To | let kCGImagePropertyExifSensitivityType: CFString |
Modified kCGImagePropertyExifSharpness
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSharpness: CFString! |
| To | let kCGImagePropertyExifSharpness: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifShutterSpeedValue: CFString! |
| To | let kCGImagePropertyExifShutterSpeedValue: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSpatialFrequencyResponse: CFString! |
| To | let kCGImagePropertyExifSpatialFrequencyResponse: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSpectralSensitivity: CFString! |
| To | let kCGImagePropertyExifSpectralSensitivity: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifStandardOutputSensitivity: CFString! |
| To | let kCGImagePropertyExifStandardOutputSensitivity: CFString |
Modified kCGImagePropertyExifSubjectArea
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSubjectArea: CFString! |
| To | let kCGImagePropertyExifSubjectArea: CFString |
Modified kCGImagePropertyExifSubjectDistance
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSubjectDistance: CFString! |
| To | let kCGImagePropertyExifSubjectDistance: CFString |
Modified kCGImagePropertyExifSubjectDistRange
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSubjectDistRange: CFString! |
| To | let kCGImagePropertyExifSubjectDistRange: CFString |
Modified kCGImagePropertyExifSubjectLocation
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSubjectLocation: CFString! |
| To | let kCGImagePropertyExifSubjectLocation: CFString |
Modified kCGImagePropertyExifSubsecTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSubsecTime: CFString! |
| To | let kCGImagePropertyExifSubsecTime: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSubsecTimeDigitized: CFString! |
| To | let kCGImagePropertyExifSubsecTimeDigitized: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifSubsecTimeOrginal: CFString! |
| To | let kCGImagePropertyExifSubsecTimeOrginal: CFString |
Modified kCGImagePropertyExifUserComment
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifUserComment: CFString! |
| To | let kCGImagePropertyExifUserComment: CFString |
Modified kCGImagePropertyExifVersion
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifVersion: CFString! |
| To | let kCGImagePropertyExifVersion: CFString |
Modified kCGImagePropertyExifWhiteBalance
| Declaration | |
|---|---|
| From | let kCGImagePropertyExifWhiteBalance: CFString! |
| To | let kCGImagePropertyExifWhiteBalance: CFString |
Modified kCGImagePropertyFileSize
| Declaration | |
|---|---|
| From | let kCGImagePropertyFileSize: CFString! |
| To | let kCGImagePropertyFileSize: CFString |
Modified kCGImagePropertyGIFDelayTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyGIFDelayTime: CFString! |
| To | let kCGImagePropertyGIFDelayTime: CFString |
Modified kCGImagePropertyGIFDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyGIFDictionary: CFString! |
| To | let kCGImagePropertyGIFDictionary: CFString |
Modified kCGImagePropertyGIFHasGlobalColorMap
| Declaration | |
|---|---|
| From | let kCGImagePropertyGIFHasGlobalColorMap: CFString! |
| To | let kCGImagePropertyGIFHasGlobalColorMap: CFString |
Modified kCGImagePropertyGIFImageColorMap
| Declaration | |
|---|---|
| From | let kCGImagePropertyGIFImageColorMap: CFString! |
| To | let kCGImagePropertyGIFImageColorMap: CFString |
Modified kCGImagePropertyGIFLoopCount
| Declaration | |
|---|---|
| From | let kCGImagePropertyGIFLoopCount: CFString! |
| To | let kCGImagePropertyGIFLoopCount: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyGIFUnclampedDelayTime: CFString! |
| To | let kCGImagePropertyGIFUnclampedDelayTime: CFString |
Modified kCGImagePropertyGPSAltitude
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSAltitude: CFString! |
| To | let kCGImagePropertyGPSAltitude: CFString |
Modified kCGImagePropertyGPSAltitudeRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSAltitudeRef: CFString! |
| To | let kCGImagePropertyGPSAltitudeRef: CFString |
Modified kCGImagePropertyGPSAreaInformation
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSAreaInformation: CFString! |
| To | let kCGImagePropertyGPSAreaInformation: CFString |
Modified kCGImagePropertyGPSDateStamp
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDateStamp: CFString! |
| To | let kCGImagePropertyGPSDateStamp: CFString |
Modified kCGImagePropertyGPSDestBearing
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDestBearing: CFString! |
| To | let kCGImagePropertyGPSDestBearing: CFString |
Modified kCGImagePropertyGPSDestBearingRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDestBearingRef: CFString! |
| To | let kCGImagePropertyGPSDestBearingRef: CFString |
Modified kCGImagePropertyGPSDestDistance
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDestDistance: CFString! |
| To | let kCGImagePropertyGPSDestDistance: CFString |
Modified kCGImagePropertyGPSDestDistanceRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDestDistanceRef: CFString! |
| To | let kCGImagePropertyGPSDestDistanceRef: CFString |
Modified kCGImagePropertyGPSDestLatitude
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDestLatitude: CFString! |
| To | let kCGImagePropertyGPSDestLatitude: CFString |
Modified kCGImagePropertyGPSDestLatitudeRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDestLatitudeRef: CFString! |
| To | let kCGImagePropertyGPSDestLatitudeRef: CFString |
Modified kCGImagePropertyGPSDestLongitude
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDestLongitude: CFString! |
| To | let kCGImagePropertyGPSDestLongitude: CFString |
Modified kCGImagePropertyGPSDestLongitudeRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDestLongitudeRef: CFString! |
| To | let kCGImagePropertyGPSDestLongitudeRef: CFString |
Modified kCGImagePropertyGPSDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDictionary: CFString! |
| To | let kCGImagePropertyGPSDictionary: CFString |
Modified kCGImagePropertyGPSDifferental
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDifferental: CFString! |
| To | let kCGImagePropertyGPSDifferental: CFString |
Modified kCGImagePropertyGPSDOP
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSDOP: CFString! |
| To | let kCGImagePropertyGPSDOP: CFString |
Modified kCGImagePropertyGPSHPositioningError
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSHPositioningError: CFString! |
| To | let kCGImagePropertyGPSHPositioningError: CFString |
Modified kCGImagePropertyGPSImgDirection
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSImgDirection: CFString! |
| To | let kCGImagePropertyGPSImgDirection: CFString |
Modified kCGImagePropertyGPSImgDirectionRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSImgDirectionRef: CFString! |
| To | let kCGImagePropertyGPSImgDirectionRef: CFString |
Modified kCGImagePropertyGPSLatitude
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSLatitude: CFString! |
| To | let kCGImagePropertyGPSLatitude: CFString |
Modified kCGImagePropertyGPSLatitudeRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSLatitudeRef: CFString! |
| To | let kCGImagePropertyGPSLatitudeRef: CFString |
Modified kCGImagePropertyGPSLongitude
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSLongitude: CFString! |
| To | let kCGImagePropertyGPSLongitude: CFString |
Modified kCGImagePropertyGPSLongitudeRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSLongitudeRef: CFString! |
| To | let kCGImagePropertyGPSLongitudeRef: CFString |
Modified kCGImagePropertyGPSMapDatum
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSMapDatum: CFString! |
| To | let kCGImagePropertyGPSMapDatum: CFString |
Modified kCGImagePropertyGPSMeasureMode
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSMeasureMode: CFString! |
| To | let kCGImagePropertyGPSMeasureMode: CFString |
Modified kCGImagePropertyGPSProcessingMethod
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSProcessingMethod: CFString! |
| To | let kCGImagePropertyGPSProcessingMethod: CFString |
Modified kCGImagePropertyGPSSatellites
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSSatellites: CFString! |
| To | let kCGImagePropertyGPSSatellites: CFString |
Modified kCGImagePropertyGPSSpeed
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSSpeed: CFString! |
| To | let kCGImagePropertyGPSSpeed: CFString |
Modified kCGImagePropertyGPSSpeedRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSSpeedRef: CFString! |
| To | let kCGImagePropertyGPSSpeedRef: CFString |
Modified kCGImagePropertyGPSStatus
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSStatus: CFString! |
| To | let kCGImagePropertyGPSStatus: CFString |
Modified kCGImagePropertyGPSTimeStamp
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSTimeStamp: CFString! |
| To | let kCGImagePropertyGPSTimeStamp: CFString |
Modified kCGImagePropertyGPSTrack
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSTrack: CFString! |
| To | let kCGImagePropertyGPSTrack: CFString |
Modified kCGImagePropertyGPSTrackRef
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSTrackRef: CFString! |
| To | let kCGImagePropertyGPSTrackRef: CFString |
Modified kCGImagePropertyGPSVersion
| Declaration | |
|---|---|
| From | let kCGImagePropertyGPSVersion: CFString! |
| To | let kCGImagePropertyGPSVersion: CFString |
Modified kCGImagePropertyHasAlpha
| Declaration | |
|---|---|
| From | let kCGImagePropertyHasAlpha: CFString! |
| To | let kCGImagePropertyHasAlpha: CFString |
Modified kCGImagePropertyIPTCActionAdvised
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCActionAdvised: CFString! |
| To | let kCGImagePropertyIPTCActionAdvised: CFString |
Modified kCGImagePropertyIPTCByline
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCByline: CFString! |
| To | let kCGImagePropertyIPTCByline: CFString |
Modified kCGImagePropertyIPTCBylineTitle
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCBylineTitle: CFString! |
| To | let kCGImagePropertyIPTCBylineTitle: CFString |
Modified kCGImagePropertyIPTCCaptionAbstract
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCCaptionAbstract: CFString! |
| To | let kCGImagePropertyIPTCCaptionAbstract: CFString |
Modified kCGImagePropertyIPTCCategory
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCCategory: CFString! |
| To | let kCGImagePropertyIPTCCategory: CFString |
Modified kCGImagePropertyIPTCCity
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCCity: CFString! |
| To | let kCGImagePropertyIPTCCity: CFString |
Modified kCGImagePropertyIPTCContact
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContact: CFString! |
| To | let kCGImagePropertyIPTCContact: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContactInfoAddress: CFString! |
| To | let kCGImagePropertyIPTCContactInfoAddress: CFString |
Modified kCGImagePropertyIPTCContactInfoCity
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContactInfoCity: CFString! |
| To | let kCGImagePropertyIPTCContactInfoCity: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContactInfoCountry: CFString! |
| To | let kCGImagePropertyIPTCContactInfoCountry: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContactInfoEmails: CFString! |
| To | let kCGImagePropertyIPTCContactInfoEmails: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContactInfoPhones: CFString! |
| To | let kCGImagePropertyIPTCContactInfoPhones: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContactInfoPostalCode: CFString! |
| To | let kCGImagePropertyIPTCContactInfoPostalCode: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContactInfoStateProvince: CFString! |
| To | let kCGImagePropertyIPTCContactInfoStateProvince: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContactInfoWebURLs: CFString! |
| To | let kCGImagePropertyIPTCContactInfoWebURLs: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContentLocationCode: CFString! |
| To | let kCGImagePropertyIPTCContentLocationCode: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCContentLocationName: CFString! |
| To | let kCGImagePropertyIPTCContentLocationName: CFString |
Modified kCGImagePropertyIPTCCopyrightNotice
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCCopyrightNotice: CFString! |
| To | let kCGImagePropertyIPTCCopyrightNotice: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCCountryPrimaryLocationCode: CFString! |
| To | let kCGImagePropertyIPTCCountryPrimaryLocationCode: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCCountryPrimaryLocationName: CFString! |
| To | let kCGImagePropertyIPTCCountryPrimaryLocationName: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCCreatorContactInfo: CFString! |
| To | let kCGImagePropertyIPTCCreatorContactInfo: CFString |
Modified kCGImagePropertyIPTCCredit
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCCredit: CFString! |
| To | let kCGImagePropertyIPTCCredit: CFString |
Modified kCGImagePropertyIPTCDateCreated
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCDateCreated: CFString! |
| To | let kCGImagePropertyIPTCDateCreated: CFString |
Modified kCGImagePropertyIPTCDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCDictionary: CFString! |
| To | let kCGImagePropertyIPTCDictionary: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCDigitalCreationDate: CFString! |
| To | let kCGImagePropertyIPTCDigitalCreationDate: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCDigitalCreationTime: CFString! |
| To | let kCGImagePropertyIPTCDigitalCreationTime: CFString |
Modified kCGImagePropertyIPTCEditorialUpdate
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCEditorialUpdate: CFString! |
| To | let kCGImagePropertyIPTCEditorialUpdate: CFString |
Modified kCGImagePropertyIPTCEditStatus
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCEditStatus: CFString! |
| To | let kCGImagePropertyIPTCEditStatus: CFString |
Modified kCGImagePropertyIPTCExpirationDate
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCExpirationDate: CFString! |
| To | let kCGImagePropertyIPTCExpirationDate: CFString |
Modified kCGImagePropertyIPTCExpirationTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCExpirationTime: CFString! |
| To | let kCGImagePropertyIPTCExpirationTime: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCFixtureIdentifier: CFString! |
| To | let kCGImagePropertyIPTCFixtureIdentifier: CFString |
Modified kCGImagePropertyIPTCHeadline
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCHeadline: CFString! |
| To | let kCGImagePropertyIPTCHeadline: CFString |
Modified kCGImagePropertyIPTCImageOrientation
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCImageOrientation: CFString! |
| To | let kCGImagePropertyIPTCImageOrientation: CFString |
Modified kCGImagePropertyIPTCImageType
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCImageType: CFString! |
| To | let kCGImagePropertyIPTCImageType: CFString |
Modified kCGImagePropertyIPTCKeywords
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCKeywords: CFString! |
| To | let kCGImagePropertyIPTCKeywords: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCLanguageIdentifier: CFString! |
| To | let kCGImagePropertyIPTCLanguageIdentifier: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCObjectAttributeReference: CFString! |
| To | let kCGImagePropertyIPTCObjectAttributeReference: CFString |
Modified kCGImagePropertyIPTCObjectCycle
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCObjectCycle: CFString! |
| To | let kCGImagePropertyIPTCObjectCycle: CFString |
Modified kCGImagePropertyIPTCObjectName
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCObjectName: CFString! |
| To | let kCGImagePropertyIPTCObjectName: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCObjectTypeReference: CFString! |
| To | let kCGImagePropertyIPTCObjectTypeReference: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCOriginalTransmissionReference: CFString! |
| To | let kCGImagePropertyIPTCOriginalTransmissionReference: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCOriginatingProgram: CFString! |
| To | let kCGImagePropertyIPTCOriginatingProgram: CFString |
Modified kCGImagePropertyIPTCProgramVersion
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCProgramVersion: CFString! |
| To | let kCGImagePropertyIPTCProgramVersion: CFString |
Modified kCGImagePropertyIPTCProvinceState
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCProvinceState: CFString! |
| To | let kCGImagePropertyIPTCProvinceState: CFString |
Modified kCGImagePropertyIPTCReferenceDate
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCReferenceDate: CFString! |
| To | let kCGImagePropertyIPTCReferenceDate: CFString |
Modified kCGImagePropertyIPTCReferenceNumber
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCReferenceNumber: CFString! |
| To | let kCGImagePropertyIPTCReferenceNumber: CFString |
Modified kCGImagePropertyIPTCReferenceService
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCReferenceService: CFString! |
| To | let kCGImagePropertyIPTCReferenceService: CFString |
Modified kCGImagePropertyIPTCReleaseDate
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCReleaseDate: CFString! |
| To | let kCGImagePropertyIPTCReleaseDate: CFString |
Modified kCGImagePropertyIPTCReleaseTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCReleaseTime: CFString! |
| To | let kCGImagePropertyIPTCReleaseTime: CFString |
Modified kCGImagePropertyIPTCRightsUsageTerms
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCRightsUsageTerms: CFString! |
| To | let kCGImagePropertyIPTCRightsUsageTerms: CFString |
Modified kCGImagePropertyIPTCScene
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCScene: CFString! |
| To | let kCGImagePropertyIPTCScene: CFString |
Modified kCGImagePropertyIPTCSource
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCSource: CFString! |
| To | let kCGImagePropertyIPTCSource: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCSpecialInstructions: CFString! |
| To | let kCGImagePropertyIPTCSpecialInstructions: CFString |
Modified kCGImagePropertyIPTCStarRating
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCStarRating: CFString! |
| To | let kCGImagePropertyIPTCStarRating: CFString |
Modified kCGImagePropertyIPTCSubjectReference
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCSubjectReference: CFString! |
| To | let kCGImagePropertyIPTCSubjectReference: CFString |
Modified kCGImagePropertyIPTCSubLocation
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCSubLocation: CFString! |
| To | let kCGImagePropertyIPTCSubLocation: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCSupplementalCategory: CFString! |
| To | let kCGImagePropertyIPTCSupplementalCategory: CFString |
Modified kCGImagePropertyIPTCTimeCreated
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCTimeCreated: CFString! |
| To | let kCGImagePropertyIPTCTimeCreated: CFString |
Modified kCGImagePropertyIPTCUrgency
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCUrgency: CFString! |
| To | let kCGImagePropertyIPTCUrgency: CFString |
Modified kCGImagePropertyIPTCWriterEditor
| Declaration | |
|---|---|
| From | let kCGImagePropertyIPTCWriterEditor: CFString! |
| To | let kCGImagePropertyIPTCWriterEditor: CFString |
Modified kCGImagePropertyIsFloat
| Declaration | |
|---|---|
| From | let kCGImagePropertyIsFloat: CFString! |
| To | let kCGImagePropertyIsFloat: CFString |
Modified kCGImagePropertyIsIndexed
| Declaration | |
|---|---|
| From | let kCGImagePropertyIsIndexed: CFString! |
| To | let kCGImagePropertyIsIndexed: CFString |
Modified kCGImagePropertyJFIFDensityUnit
| Declaration | |
|---|---|
| From | let kCGImagePropertyJFIFDensityUnit: CFString! |
| To | let kCGImagePropertyJFIFDensityUnit: CFString |
Modified kCGImagePropertyJFIFDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyJFIFDictionary: CFString! |
| To | let kCGImagePropertyJFIFDictionary: CFString |
Modified kCGImagePropertyJFIFIsProgressive
| Declaration | |
|---|---|
| From | let kCGImagePropertyJFIFIsProgressive: CFString! |
| To | let kCGImagePropertyJFIFIsProgressive: CFString |
Modified kCGImagePropertyJFIFVersion
| Declaration | |
|---|---|
| From | let kCGImagePropertyJFIFVersion: CFString! |
| To | let kCGImagePropertyJFIFVersion: CFString |
Modified kCGImagePropertyJFIFXDensity
| Declaration | |
|---|---|
| From | let kCGImagePropertyJFIFXDensity: CFString! |
| To | let kCGImagePropertyJFIFXDensity: CFString |
Modified kCGImagePropertyJFIFYDensity
| Declaration | |
|---|---|
| From | let kCGImagePropertyJFIFYDensity: CFString! |
| To | let kCGImagePropertyJFIFYDensity: CFString |
Modified kCGImagePropertyMakerAppleDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerAppleDictionary: CFString! |
| To | let kCGImagePropertyMakerAppleDictionary: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonAspectRatioInfo: CFString! |
| To | let kCGImagePropertyMakerCanonAspectRatioInfo: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonCameraSerialNumber: CFString! |
| To | let kCGImagePropertyMakerCanonCameraSerialNumber: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonContinuousDrive: CFString! |
| To | let kCGImagePropertyMakerCanonContinuousDrive: CFString |
Modified kCGImagePropertyMakerCanonDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonDictionary: CFString! |
| To | let kCGImagePropertyMakerCanonDictionary: CFString |
Modified kCGImagePropertyMakerCanonFirmware
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonFirmware: CFString! |
| To | let kCGImagePropertyMakerCanonFirmware: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonFlashExposureComp: CFString! |
| To | let kCGImagePropertyMakerCanonFlashExposureComp: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonImageSerialNumber: CFString! |
| To | let kCGImagePropertyMakerCanonImageSerialNumber: CFString |
Modified kCGImagePropertyMakerCanonLensModel
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonLensModel: CFString! |
| To | let kCGImagePropertyMakerCanonLensModel: CFString |
Modified kCGImagePropertyMakerCanonOwnerName
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerCanonOwnerName: CFString! |
| To | let kCGImagePropertyMakerCanonOwnerName: CFString |
Modified kCGImagePropertyMakerFujiDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerFujiDictionary: CFString! |
| To | let kCGImagePropertyMakerFujiDictionary: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerMinoltaDictionary: CFString! |
| To | let kCGImagePropertyMakerMinoltaDictionary: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonCameraSerialNumber: CFString! |
| To | let kCGImagePropertyMakerNikonCameraSerialNumber: CFString |
Modified kCGImagePropertyMakerNikonColorMode
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonColorMode: CFString! |
| To | let kCGImagePropertyMakerNikonColorMode: CFString |
Modified kCGImagePropertyMakerNikonDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonDictionary: CFString! |
| To | let kCGImagePropertyMakerNikonDictionary: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonDigitalZoom: CFString! |
| To | let kCGImagePropertyMakerNikonDigitalZoom: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonFlashExposureComp: CFString! |
| To | let kCGImagePropertyMakerNikonFlashExposureComp: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonFlashSetting: CFString! |
| To | let kCGImagePropertyMakerNikonFlashSetting: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonFocusDistance: CFString! |
| To | let kCGImagePropertyMakerNikonFocusDistance: CFString |
Modified kCGImagePropertyMakerNikonFocusMode
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonFocusMode: CFString! |
| To | let kCGImagePropertyMakerNikonFocusMode: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonImageAdjustment: CFString! |
| To | let kCGImagePropertyMakerNikonImageAdjustment: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonISOSelection: CFString! |
| To | let kCGImagePropertyMakerNikonISOSelection: CFString |
Modified kCGImagePropertyMakerNikonISOSetting
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonISOSetting: CFString! |
| To | let kCGImagePropertyMakerNikonISOSetting: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonLensAdapter: CFString! |
| To | let kCGImagePropertyMakerNikonLensAdapter: CFString |
Modified kCGImagePropertyMakerNikonLensInfo
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonLensInfo: CFString! |
| To | let kCGImagePropertyMakerNikonLensInfo: CFString |
Modified kCGImagePropertyMakerNikonLensType
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonLensType: CFString! |
| To | let kCGImagePropertyMakerNikonLensType: CFString |
Modified kCGImagePropertyMakerNikonQuality
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonQuality: CFString! |
| To | let kCGImagePropertyMakerNikonQuality: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonSharpenMode: CFString! |
| To | let kCGImagePropertyMakerNikonSharpenMode: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonShootingMode: CFString! |
| To | let kCGImagePropertyMakerNikonShootingMode: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonShutterCount: CFString! |
| To | let kCGImagePropertyMakerNikonShutterCount: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerNikonWhiteBalanceMode: CFString! |
| To | let kCGImagePropertyMakerNikonWhiteBalanceMode: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerOlympusDictionary: CFString! |
| To | let kCGImagePropertyMakerOlympusDictionary: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyMakerPentaxDictionary: CFString! |
| To | let kCGImagePropertyMakerPentaxDictionary: CFString |
Modified kCGImagePropertyOrientation
| Declaration | |
|---|---|
| From | let kCGImagePropertyOrientation: CFString! |
| To | let kCGImagePropertyOrientation: CFString |
Modified kCGImagePropertyPixelHeight
| Declaration | |
|---|---|
| From | let kCGImagePropertyPixelHeight: CFString! |
| To | let kCGImagePropertyPixelHeight: CFString |
Modified kCGImagePropertyPixelWidth
| Declaration | |
|---|---|
| From | let kCGImagePropertyPixelWidth: CFString! |
| To | let kCGImagePropertyPixelWidth: CFString |
Modified kCGImagePropertyPNGAuthor
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGAuthor: CFString! |
| To | let kCGImagePropertyPNGAuthor: CFString |
Modified kCGImagePropertyPNGChromaticities
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGChromaticities: CFString! |
| To | let kCGImagePropertyPNGChromaticities: CFString |
Modified kCGImagePropertyPNGCopyright
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGCopyright: CFString! |
| To | let kCGImagePropertyPNGCopyright: CFString |
Modified kCGImagePropertyPNGCreationTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGCreationTime: CFString! |
| To | let kCGImagePropertyPNGCreationTime: CFString |
Modified kCGImagePropertyPNGDescription
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGDescription: CFString! |
| To | let kCGImagePropertyPNGDescription: CFString |
Modified kCGImagePropertyPNGDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGDictionary: CFString! |
| To | let kCGImagePropertyPNGDictionary: CFString |
Modified kCGImagePropertyPNGGamma
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGGamma: CFString! |
| To | let kCGImagePropertyPNGGamma: CFString |
Modified kCGImagePropertyPNGInterlaceType
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGInterlaceType: CFString! |
| To | let kCGImagePropertyPNGInterlaceType: CFString |
Modified kCGImagePropertyPNGModificationTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGModificationTime: CFString! |
| To | let kCGImagePropertyPNGModificationTime: CFString |
Modified kCGImagePropertyPNGSoftware
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGSoftware: CFString! |
| To | let kCGImagePropertyPNGSoftware: CFString |
Modified kCGImagePropertyPNGsRGBIntent
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGsRGBIntent: CFString! |
| To | let kCGImagePropertyPNGsRGBIntent: CFString |
Modified kCGImagePropertyPNGTitle
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGTitle: CFString! |
| To | let kCGImagePropertyPNGTitle: CFString |
Modified kCGImagePropertyPNGXPixelsPerMeter
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGXPixelsPerMeter: CFString! |
| To | let kCGImagePropertyPNGXPixelsPerMeter: CFString |
Modified kCGImagePropertyPNGYPixelsPerMeter
| Declaration | |
|---|---|
| From | let kCGImagePropertyPNGYPixelsPerMeter: CFString! |
| To | let kCGImagePropertyPNGYPixelsPerMeter: CFString |
Modified kCGImagePropertyProfileName
| Declaration | |
|---|---|
| From | let kCGImagePropertyProfileName: CFString! |
| To | let kCGImagePropertyProfileName: CFString |
Modified kCGImagePropertyRawDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyRawDictionary: CFString! |
| To | let kCGImagePropertyRawDictionary: CFString |
Modified kCGImagePropertyTIFFArtist
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFArtist: CFString! |
| To | let kCGImagePropertyTIFFArtist: CFString |
Modified kCGImagePropertyTIFFCompression
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFCompression: CFString! |
| To | let kCGImagePropertyTIFFCompression: CFString |
Modified kCGImagePropertyTIFFCopyright
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFCopyright: CFString! |
| To | let kCGImagePropertyTIFFCopyright: CFString |
Modified kCGImagePropertyTIFFDateTime
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFDateTime: CFString! |
| To | let kCGImagePropertyTIFFDateTime: CFString |
Modified kCGImagePropertyTIFFDictionary
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFDictionary: CFString! |
| To | let kCGImagePropertyTIFFDictionary: CFString |
Modified kCGImagePropertyTIFFDocumentName
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFDocumentName: CFString! |
| To | let kCGImagePropertyTIFFDocumentName: CFString |
Modified kCGImagePropertyTIFFHostComputer
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFHostComputer: CFString! |
| To | let kCGImagePropertyTIFFHostComputer: CFString |
Modified kCGImagePropertyTIFFImageDescription
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFImageDescription: CFString! |
| To | let kCGImagePropertyTIFFImageDescription: CFString |
Modified kCGImagePropertyTIFFMake
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFMake: CFString! |
| To | let kCGImagePropertyTIFFMake: CFString |
Modified kCGImagePropertyTIFFModel
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFModel: CFString! |
| To | let kCGImagePropertyTIFFModel: CFString |
Modified kCGImagePropertyTIFFOrientation
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFOrientation: CFString! |
| To | let kCGImagePropertyTIFFOrientation: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFPhotometricInterpretation: CFString! |
| To | let kCGImagePropertyTIFFPhotometricInterpretation: CFString |
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFPrimaryChromaticities: CFString! |
| To | let kCGImagePropertyTIFFPrimaryChromaticities: CFString |
Modified kCGImagePropertyTIFFResolutionUnit
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFResolutionUnit: CFString! |
| To | let kCGImagePropertyTIFFResolutionUnit: CFString |
Modified kCGImagePropertyTIFFSoftware
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFSoftware: CFString! |
| To | let kCGImagePropertyTIFFSoftware: CFString |
Modified kCGImagePropertyTIFFTransferFunction
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFTransferFunction: CFString! |
| To | let kCGImagePropertyTIFFTransferFunction: CFString |
Modified kCGImagePropertyTIFFWhitePoint
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFWhitePoint: CFString! |
| To | let kCGImagePropertyTIFFWhitePoint: CFString |
Modified kCGImagePropertyTIFFXResolution
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFXResolution: CFString! |
| To | let kCGImagePropertyTIFFXResolution: CFString |
Modified kCGImagePropertyTIFFYResolution
| Declaration | |
|---|---|
| From | let kCGImagePropertyTIFFYResolution: CFString! |
| To | let kCGImagePropertyTIFFYResolution: CFString |
| Declaration | |
|---|---|
| From | let kCGImageSourceCreateThumbnailFromImageAlways: CFString! |
| To | let kCGImageSourceCreateThumbnailFromImageAlways: CFString |
| Declaration | |
|---|---|
| From | let kCGImageSourceCreateThumbnailFromImageIfAbsent: CFString! |
| To | let kCGImageSourceCreateThumbnailFromImageIfAbsent: CFString |
| Declaration | |
|---|---|
| From | let kCGImageSourceCreateThumbnailWithTransform: CFString! |
| To | let kCGImageSourceCreateThumbnailWithTransform: CFString |
Modified kCGImageSourceShouldAllowFloat
| Declaration | |
|---|---|
| From | let kCGImageSourceShouldAllowFloat: CFString! |
| To | let kCGImageSourceShouldAllowFloat: CFString |
Modified kCGImageSourceShouldCache
| Declaration | |
|---|---|
| From | let kCGImageSourceShouldCache: CFString! |
| To | let kCGImageSourceShouldCache: CFString |
Modified kCGImageSourceShouldCacheImmediately
| Declaration | |
|---|---|
| From | let kCGImageSourceShouldCacheImmediately: CFString! |
| To | let kCGImageSourceShouldCacheImmediately: CFString |
Modified kCGImageSourceThumbnailMaxPixelSize
| Declaration | |
|---|---|
| From | let kCGImageSourceThumbnailMaxPixelSize: CFString! |
| To | let kCGImageSourceThumbnailMaxPixelSize: CFString |
Modified kCGImageSourceTypeIdentifierHint
| Declaration | |
|---|---|
| From | let kCGImageSourceTypeIdentifierHint: CFString! |
| To | let kCGImageSourceTypeIdentifierHint: CFString |