Documentation Archive Developer
Search

ImageIO Changes

ImageIO

Modified CGImageDestinationAddImageFromSource(CGImageDestination!, CGImageSource!, Int, CFDictionary!)
Declaration
From
func CGImageDestinationAddImageFromSource(_ idst: CGImageDestination!, _ isrc: CGImageSource!, _ index: UInt, _ properties: CFDictionary!)
To
func CGImageDestinationAddImageFromSource(_ idst: CGImageDestination!, _ isrc: CGImageSource!, _ index: Int, _ properties: CFDictionary!)

Modified CGImageDestinationCreateWithData(CFMutableData!, CFString!, Int, CFDictionary!) -> CGImageDestination!
Declaration
From
func CGImageDestinationCreateWithData(_ data: CFMutableData!, _ type: CFString!, _ count: UInt, _ options: CFDictionary!) -> CGImageDestination!
To
func CGImageDestinationCreateWithData(_ data: CFMutableData!, _ type: CFString!, _ count: Int, _ options: CFDictionary!) -> CGImageDestination!

Modified CGImageDestinationCreateWithDataConsumer(CGDataConsumer!, CFString!, Int, CFDictionary!) -> CGImageDestination!
Declaration
From
func CGImageDestinationCreateWithDataConsumer(_ consumer: CGDataConsumer!, _ type: CFString!, _ count: UInt, _ options: CFDictionary!) -> CGImageDestination!
To
func CGImageDestinationCreateWithDataConsumer(_ consumer: CGDataConsumer!, _ type: CFString!, _ count: Int, _ options: CFDictionary!) -> CGImageDestination!

Modified CGImageDestinationCreateWithURL(CFURL!, CFString!, Int, CFDictionary!) -> CGImageDestination!
Declaration
From
func CGImageDestinationCreateWithURL(_ url: CFURL!, _ type: CFString!, _ count: UInt, _ options: CFDictionary!) -> CGImageDestination!
To
func CGImageDestinationCreateWithURL(_ url: CFURL!, _ type: CFString!, _ count: Int, _ options: CFDictionary!) -> CGImageDestination!

Modified CGImageSourceCopyMetadataAtIndex(CGImageSource!, Int, CFDictionary!) -> CGImageMetadata!
Declaration
From
func CGImageSourceCopyMetadataAtIndex(_ isrc: CGImageSource!, _ index: UInt, _ options: CFDictionary!) -> CGImageMetadata!
To
func CGImageSourceCopyMetadataAtIndex(_ isrc: CGImageSource!, _ index: Int, _ options: CFDictionary!) -> CGImageMetadata!

Modified CGImageSourceCopyPropertiesAtIndex(CGImageSource!, Int, CFDictionary!) -> CFDictionary!
Declaration
From
func CGImageSourceCopyPropertiesAtIndex(_ isrc: CGImageSource!, _ index: UInt, _ options: CFDictionary!) -> CFDictionary!
To
func CGImageSourceCopyPropertiesAtIndex(_ isrc: CGImageSource!, _ index: Int, _ options: CFDictionary!) -> CFDictionary!

Modified CGImageSourceCreateImageAtIndex(CGImageSource!, Int, CFDictionary!) -> CGImage!
Declaration
From
func CGImageSourceCreateImageAtIndex(_ isrc: CGImageSource!, _ index: UInt, _ options: CFDictionary!) -> CGImage!
To
func CGImageSourceCreateImageAtIndex(_ isrc: CGImageSource!, _ index: Int, _ options: CFDictionary!) -> CGImage!

Modified CGImageSourceCreateThumbnailAtIndex(CGImageSource!, Int, CFDictionary!) -> CGImage!
Declaration
From
func CGImageSourceCreateThumbnailAtIndex(_ isrc: CGImageSource!, _ index: UInt, _ options: CFDictionary!) -> CGImage!
To
func CGImageSourceCreateThumbnailAtIndex(_ isrc: CGImageSource!, _ index: Int, _ options: CFDictionary!) -> CGImage!

Modified CGImageSourceGetCount(CGImageSource!) -> Int
Declaration
From
func CGImageSourceGetCount(_ isrc: CGImageSource!) -> UInt
To
func CGImageSourceGetCount(_ isrc: CGImageSource!) -> Int

Modified CGImageSourceGetStatusAtIndex(CGImageSource!, Int) -> CGImageSourceStatus
Declaration
From
func CGImageSourceGetStatusAtIndex(_ isrc: CGImageSource!, _ index: UInt) -> CGImageSourceStatus
To
func CGImageSourceGetStatusAtIndex(_ isrc: CGImageSource!, _ index: Int) -> CGImageSourceStatus

Modified CGImageSourceRemoveCacheAtIndex(CGImageSource!, Int)
Declaration
From
func CGImageSourceRemoveCacheAtIndex(_ isrc: CGImageSource!, _ index: UInt)
To
func CGImageSourceRemoveCacheAtIndex(_ isrc: CGImageSource!, _ index: Int)