imageio

package
v0.7.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 19, 2026 License: MIT Imports: 7 Imported by: 0

Documentation

Rendered for darwin/amd64

Overview

Package imageio provides purego-based Go bindings for the macOS ImageIO framework.

Apple documentation: https://developer.apple.com/documentation/imageio

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CGAnimateImageAtURLWithBlock

func CGAnimateImageAtURLWithBlock(url unsafe.Pointer, options unsafe.Pointer, block func(uint, unsafe.Pointer, unsafe.Pointer)) int

Animate the sequence of images contained in the file at `url`. Currently supported image formats are GIF and APNG. The `options` dictionary may be used to request additional playback options; see the list of keys above for more information. The block is called on the main queue at time intervals specified by the `delay time` of the image. The animation can be stopped by setting the boolean parameter of the block to true.

func CGAnimateImageDataWithBlock

func CGAnimateImageDataWithBlock(data unsafe.Pointer, options unsafe.Pointer, block func(uint, unsafe.Pointer, unsafe.Pointer)) int

Animate the sequence of images contained in `data`. Currently supported image formats are GIF and APNG. The `options` dictionary may be used to request additional playback options; see the list of keys above for more information. The block is called on the main queue at time intervals specified by the `delay time` of the image. The animation can be stopped by setting the boolean parameter of the block to true.

func CGImageDestinationAddAuxiliaryDataInfo

func CGImageDestinationAddAuxiliaryDataInfo(idst unsafe.Pointer, auxiliaryImageDataType unsafe.Pointer, auxiliaryDataInfoDictionary unsafe.Pointer)

func CGImageDestinationAddImage

func CGImageDestinationAddImage(idst unsafe.Pointer, image unsafe.Pointer, properties unsafe.Pointer)

func CGImageDestinationAddImageAndMetadata

func CGImageDestinationAddImageAndMetadata(idst unsafe.Pointer, image unsafe.Pointer, metadata unsafe.Pointer, options unsafe.Pointer)

func CGImageDestinationAddImageFromSource

func CGImageDestinationAddImageFromSource(idst unsafe.Pointer, isrc unsafe.Pointer, index uint, properties unsafe.Pointer)

func CGImageDestinationCopyImageSource

func CGImageDestinationCopyImageSource(idst unsafe.Pointer, isrc unsafe.Pointer, options unsafe.Pointer, err unsafe.Pointer) bool

func CGImageDestinationCopyTypeIdentifiers

func CGImageDestinationCopyTypeIdentifiers() unsafe.Pointer

func CGImageDestinationCreateWithData

func CGImageDestinationCreateWithData(data unsafe.Pointer, type_ unsafe.Pointer, count uint, options unsafe.Pointer) unsafe.Pointer

func CGImageDestinationCreateWithDataConsumer

func CGImageDestinationCreateWithDataConsumer(consumer unsafe.Pointer, type_ unsafe.Pointer, count uint, options unsafe.Pointer) unsafe.Pointer

func CGImageDestinationCreateWithURL

func CGImageDestinationCreateWithURL(url unsafe.Pointer, type_ unsafe.Pointer, count uint, options unsafe.Pointer) unsafe.Pointer

func CGImageDestinationFinalize

func CGImageDestinationFinalize(idst unsafe.Pointer) bool

func CGImageDestinationGetTypeID

func CGImageDestinationGetTypeID() uint

func CGImageDestinationSetProperties

func CGImageDestinationSetProperties(idst unsafe.Pointer, properties unsafe.Pointer)

func CGImageMetadataCopyStringValueWithPath

func CGImageMetadataCopyStringValueWithPath(metadata unsafe.Pointer, parent unsafe.Pointer, path unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataCopyStringValueWithPath @abstract Searches for a specific tag in a CGImageMetadataRef and returns its string value. @discussion This is a convenience method for searching for a tag at path and extracting the string value. @param metadata A collection of metadata tags. @param parent A parent tag. If NULL, the path is relative to the root of the CGImageMetadataRef (i.e. it is not a child of another property). @param path A string with the path to the desired tag. Please consult the documentation of @link CGImageMetadataCopyTagWithPath @/link for information about path syntax. @return Returns a string from a CGImageMetadataTag located at 'path'. The tag must be of type kCGImageMetadataTypeString or kCGImageMetadataTypeAlternateText. For AlternateText tags, the element with the "x-default" language qualifier will be returned. For other types, NULL will be returned.

func CGImageMetadataCopyTagMatchingImageProperty

func CGImageMetadataCopyTagMatchingImageProperty(metadata unsafe.Pointer, dictionaryName unsafe.Pointer, propertyName unsafe.Pointer) unsafe.Pointer

*! @functiongroup Working with CGImageProperties */ @function CGImageMetadataCopyTagMatchingImageProperty @abstract Searches for a specific CGImageMetadataTag matching a kCGImageProperty constant @discussion Provides a bridge for values from CGImageCopyPropertiesAtIndex, simplifying access for properties defined in EXIF and IPTC standards, which have no notion of namespaces, prefixes, or XMP property types. Metadata Working Group guidance is factored into the mapping of CGImageProperties to XMP compatible CGImageMetadataTags. For example, kCGImagePropertyExifDateTimeOriginal will get the value of the corresponding XMP tag, which is photoshop:DateCreated. Note that property values will still be in their XMP forms, such as "YYYY-MM-DDThh:mm:ss" for DateTime, rather than the EXIF or IPTC DateTime formats. @param metadata A collection of metadata tags @param dictionaryName the metadata subdictionary to which the image property belongs, such as kCGImagePropertyExifDictionary or kCGImagePropertyIPTCDictionary. Not all dictionaries and properties are supported at this time. @param propertyName the name of the property. This must be a defined property constant corresponding to the 'dictionaryName'. For example, kCGImagePropertyTIFFOrientation, kCGImagePropertyExifDateTimeOriginal, or kCGImagePropertyIPTCKeywords. A warning will be logged if the CGImageProperty is unsupported by CGImageMetadata. @return Returns a CGImageMetadataTagRef with the appropriate namespace, prefix, tag name, and XMP value for the corresponding CGImageProperty. Returns NULL if the property could not be found.

func CGImageMetadataCopyTagWithPath

func CGImageMetadataCopyTagWithPath(metadata unsafe.Pointer, parent unsafe.Pointer, path unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataCopyTagWithPath @abstract Searches for a specific CGImageMetadataTag in a CGImageMetadataRef @discussion This is the primary function for clients to obtain specific metadata properties from an image. The 'path' mechanism provides a way to access both simple top-level properties, such as Date & Time, or complex deeply-nested properties with ease. @param metadata A collection of metadata tags. @param parent A parent tag. If NULL, the path is relative to the root of the CGImageMetadataRef (i.e. it is not a child of another property). If the parent is provided, the effective path will be the concatenation of the parent's path and the 'path' parameter. This is useful for accessing array elements or structure fields inside nested tags. @param path A string representing a path to the desired tag. Paths consist of a tag prefix (i.e. "exif") joined with a tag name (i.e. "Flash") by a colon (":"), such as CFSTR("exif:Flash"). Elements of ordered and unordered arrays are accessed via 0-based indices inside square [] brackets. Elements of alternate-text arrays are accessed by an RFC 3066 language code inside square [] brackets. Fields of a structure are delimited by a period, '.'. Qualifiers are delimited by the '?' character. Only tags with string values (kCGImageMetadataTypeString) are allowed to have qualifiers - arrays and structures may not contain qualifiers. If parent is NULL, a prefix must be specified for the first tag. Prefixes for all subsequent tags are optional. If unspecified, the prefix is inherented from the nearest parent tag with a prefix. Custom prefixes must be registered using @link CGImageMetadataRegisterNamespaceForPrefix @/link prior to use in any path-based functions. Examples: <ul> <li>'path' = CFSTR("xmp:CreateDate")</li> <li>'path' = CFSTR("exif:Flash.Fired")</li> <li>'parent' = tag at path CFSTR("exif:Flash"), path = CFSTR("exif:Fired") (equivilent to previous)</li> <li>'path' = CFSTR("exif:Flash.RedEyeMode")</li> <li>'path' = CFSTR("dc:title")</li> <li>'path' = CFSTR("dc:subject")</li> <li>'path' = CFSTR("dc:subject[2]") </li> <li>'parent' = tag at path CFSTR("dc:subject"), path = CFSTR("[2]") (equivilent to previous)</li> <li>'path' = CFSTR("dc:description[x-default])"</li> <li>'path' = CFSTR("dc.description[de])"</li> <li>'path' = CFSTR("dc.description[fr])"</li> <li>'path' = CFSTR("foo:product)"</li> <li>'path' = CFSTR("foo:product?bar:manufacturer)"</li> </ul> @return Returns a copy of CGImageMetadataTag matching 'path', or NULL if no match is found. The copy of the tag's value is shallow. Tags copied from an immutable CGImageMetadataRef are also immutable. Because this function returns a copy of the tag's value, any modification of the tag's value must be followed by a CGImageMetadataSetTagWithPath to commit the change to the metadata container.

func CGImageMetadataCopyTags

func CGImageMetadataCopyTags(metadata unsafe.Pointer) unsafe.Pointer

*! @functiongroup Retrieving CGImageMetadataTagRefs from a CGImageMetadataRef */ @function CGImageMetadataCopyTags @abstract Obtain an array of tags from a CGImageMetadataRef @return Returns an array with a shallow copy of all top-level CGImageMetadataTagRefs in a CGImageMetadataRef.

func CGImageMetadataCreateFromXMPData

func CGImageMetadataCreateFromXMPData(data unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataCreateFromXMPData @abstract Creates a collection of CGImageMetadataTags from a block of XMP data @discussion Converts XMP data into a collection of metadata tags. The data must be a complete XMP tree. XMP packet headers (<?xpacket .. ?>) are supported. @param data The XMP data. @return Returns a collection of CGImageMetadata tags. Returns NULL if an error occurred.

func CGImageMetadataCreateMutable

func CGImageMetadataCreateMutable() unsafe.Pointer

@function CGImageMetadataCreateMutable @abstract Creates an empty CGMutableImageMetadataRef

func CGImageMetadataCreateMutableCopy

func CGImageMetadataCreateMutableCopy(metadata unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataCreateMutableCopy @abstract Creates a deep mutable copy of another CGImageMetadataRef @discussion Before modifying an immutable CGImageMetadataRef (such as metadata from CGImageSourceCopyMetadataAtIndex) you must first make a copy. This function makes a deep copy of all CGImageMetadataTags and their values.

func CGImageMetadataCreateXMPData

func CGImageMetadataCreateXMPData(metadata unsafe.Pointer, options unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataCreateXMPData @abstract Serializes the CGImageMetadataRef to XMP data @discussion This converts all of the metadata tags to a block of XMP data. Common uses include creating sidecar files that contain metadata for image formats that do not support embedded XMP, or cannot be edited due to other format restrictions (such as proprietary RAW camera formats). @param metadata A collection of metadata tags. @param options should be NULL. Options are currently not used, but may be used in future release. @return Returns a CFData containing an XMP representation of the metadata. Returns NULL if an error occurred.

func CGImageMetadataEnumerateTagsUsingBlock

func CGImageMetadataEnumerateTagsUsingBlock(metadata unsafe.Pointer, rootPath unsafe.Pointer, options unsafe.Pointer, block func(unsafe.Pointer, unsafe.Pointer) bool)

@function CGImageMetadataEnumerateTagsUsingBlock @abstract Executes a given block using each tag in the metadata @discussion This function iterates over all of the tags in a CGImageMetadataRef, executing the block for each tag. The default behavior iterates over all top-level tags in the metadata. The path of the tag and the tag itself is passed to the block. The metadata cannot be modified inside the block - consider adding the tags of interest into another collection. @param metadata A collection of metadata tags. @param rootPath Iteration will occur for all children of the tag matching the root path. Please refer to CGImageMetadataCopyTagWithPath for information about path syntax. If NULL or an empty string, the block will be executed for all top-level tags in the metadata container. @param options A dictionary of options for iterating through the tags. Currently the only supported option is kCGImageMetadataEnumerateRecursively, which should be set to a CFBoolean. @param block The block that is executed for each tag in metadata.

func CGImageMetadataGetTypeID

func CGImageMetadataGetTypeID() uint

*! @functiongroup Creating and identifying CGImageMetadata containers */ @function CGImageMetadataGetTypeID @abstract Gets the type identifier for the CGImageMetadata opaque type @return the type identifier for the CGImageMetadata opaque type

func CGImageMetadataRegisterNamespaceForPrefix

func CGImageMetadataRegisterNamespaceForPrefix(metadata unsafe.Pointer, xmlns unsafe.Pointer, prefix unsafe.Pointer, err unsafe.Pointer) bool

*! @functiongroup Modifying a CGMutableImageMetadataRef */ @function CGImageMetadataRegisterNamespaceForPrefix @abstract Associates an XMP namespace URI with a prefix string. @discussion This allows ImageIO to create custom metadata when it encounters an unrecognized prefix in a path (see CGImageMetadataCopyTagWithPath for more information about path syntax). A namespace must be registered before it can be used to add custom metadata. All namespaces found in the image's metadata, or defined as a constant above, will be pre-registered. Namespaces and prefixes must be unique. @return Returns true if successful. Returns false and sets 'err' if an error or conflict occurs.

func CGImageMetadataRemoveTagWithPath

func CGImageMetadataRemoveTagWithPath(metadata unsafe.Pointer, parent unsafe.Pointer, path unsafe.Pointer) bool

@function CGImageMetadataRemoveTagWithPath @abstract Removes the tag at a specific path from a CGMutableImageMetadata container or from the parent tag @discussion Use this function to delete a metadata tag matching a specific path from a mutable metadata container. Note that if a parent tag is provided, the children of that tag reference will be modified, which may be a different reference from the tag stored in the metadata container. Since tags are normally obtained as a copy, it is typically neccesary to use CGImageMetadataSetTagWithPath to commit the changed parent object back to the metadata container (using the parent's path and NULL for the parent). @param parent A parent tag. If NULL, the path is relative to the root of the CGImageMetadataRef (i.e. it is not a child of another property). @param path A string with the path to the desired tag. Please consult the documentation of @link CGImageMetadataCopyTagWithPath @/link for information about path syntax.

func CGImageMetadataSetTagWithPath

func CGImageMetadataSetTagWithPath(metadata unsafe.Pointer, parent unsafe.Pointer, path unsafe.Pointer, tag unsafe.Pointer) bool

@function CGImageMetadataSetTagWithPath @abstract Sets the tag at a specific path in a CGMutableImageMetadata container or a parent tag @discussion This is the primary function for adding new metadata tags to a metadata container, or updating existing tags. All tags required to reach the final tag (at the end of the path) will be created, if needed. Tags will created with default types (ordered arrays). Creating tags will fail if a prefix is encountered that has not been registered. Use @link CGImageMetadataRegisterNamespaceForPrefix @/link to associate a prefix with a namespace prior to using a path-based CGImageMetadata function. Note that if a parent tag is provided, the children of that tag reference will be modified, which may be a different reference from the tag stored in the metadata container. Since tags are normally obtained as a copy, it is typically neccesary to use CGImageMetadataSetTagWithPath to commit the changed parent object back to the metadata container (using the parent's path and NULL for the parent). @param metadata A mutable collection of metadata tags. Use @link CGImageMetadataCreateMutableCopy @/link or @link CGImageMetadataCreateMutable @/link to obtain a mutable metadata container. @param parent A parent tag. If NULL, the path is relative to the root of the CGImageMetadataRef (i.e. it is not a child of another property). Note that if a parent tag is provided, the children of that tag reference will be modified, which may be a different reference from the tag stored in the metadata container. Since tags are normally obtained as a copy, it is typically neccesary to use CGImageMetadataSetTagWithPath to commit the changed parent object back to the metadata container (using the parent's path and NULL for the parent). @param path A string with the path to the desired tag. Please consult the documentation of @link CGImageMetadataCopyTagWithPath @/link for information about path syntax. @param tag The CGImageMetadataTag to be added to the metadata. The tag will be retained. @return Returns true if successful, false otherwise.

func CGImageMetadataSetValueMatchingImageProperty

func CGImageMetadataSetValueMatchingImageProperty(metadata unsafe.Pointer, dictionaryName unsafe.Pointer, propertyName unsafe.Pointer, value unsafe.Pointer) bool

@function CGImageMetadataSetValueMatchingImageProperty @abstract Sets the value of the CGImageMetadataTag matching a kCGImageProperty constant @discussion Provides a bridge for values from CGImageCopyPropertiesAtIndex, simplifying changing property values defined in EXIF and IPTC standards, which have no notion of namespaces, prefixes, or XMP property types. Metadata Working Group guidance is factored into the mapping of CGImageProperties to XMP compatible CGImageMetadataTags. For example, setting kCGImagePropertyExifDateTimeOriginal will set the value of the corresponding XMP tag, which is photoshop:DateCreated. Note that property values should still be in their XMP forms, such as "YYYY-MM-DDThh:mm:ss" for DateTime, rather than the EXIF or IPTC DateTime formats. Although this function will allow the caller to set custom values for these properties, you should consult the appropriate specifications for details about property value formats for EXIF and IPTC tags in XMP. @param metadata A mutable collection of metadata tags @param dictionaryName the metadata subdictionary to which the image property belongs, such as kCGImagePropertyExifDictionary or kCGImagePropertyIPTCDictionary. Not all dictionaries and properties are supported at this time. @param propertyName the name of the property. This must be a defined property constant corresponding to the 'dictionaryName'. For example, kCGImagePropertyTIFFOrientation, kCGImagePropertyExifDateTimeOriginal, or kCGImagePropertyIPTCKeywords. A warning will be logged if the CGImageProperty is unsupported by CGImageMetadata. @param value A CFTypeRef with the value for the tag. The same value restrictions apply as in @link CGImageMetadataTagCreate @/link. @return Returns true if successful, false otherwise.

func CGImageMetadataSetValueWithPath

func CGImageMetadataSetValueWithPath(metadata unsafe.Pointer, parent unsafe.Pointer, path unsafe.Pointer, value unsafe.Pointer) bool

@function CGImageMetadataSetValueWithPath @abstract Sets the value of the tag at a specific path in a CGMutableImageMetadataRef container or a parent tag @discussion This function is used to add new metadata values to a metadata container, or update existing tag values. All tags required to reach the final tag (at the end of the path) are created, if needed. Tags are created with default types (i.e. arrays will be ordered). Creating tags will fail if a prefix is encountered that has not been registered. Use @link CGImageMetadataRegisterNamespaceForPrefix @/link to associate a prefix with a namespace prior to using a path-based CGImageMetadata function. Examples <ul> <li>'path' = CFSTR("xmp:CreateDate"), 'value' = CFSTR("2011-09-20T14:54:47-08:00")</li> <li>'path' = CFSTR("dc:subject[0]"), 'value' = CFSTR("San Francisco")</li> <li>'path' = CFSTR("dc:subject[1]"), 'value' = CFSTR("Golden Gate Bridge")</li> <li>'path' = CFSTR("dc:description[en]") 'value' = CFSTR("my image description")</li> <li>'path' = CFSTR("dc:description[de]") 'value' = CFSTR("meine bildbeschreibung")</li> </ul> Note that if a parent tag is provided, the children of that tag reference will be modified, which may be a different reference from the tag stored in the metadata container. Since tags are normally obtained as a copy, it is typically neccesary to use CGImageMetadataSetTagWithPath to commit the changed parent object back to the metadata container (using the parent's path and NULL for the parent). @param metadata A mutable collection of metadata tags. Use @link CGImageMetadataCreateMutableCopy @/link or @link CGImageMetadataCreateMutable @/link to obtain a mutable metadata container. @param parent A parent tag. If NULL, the path is relative to the root of the CGImageMetadataRef (i.e. it is not a child of another property). @param path A string with the path to the desired tag. Please consult the documentation of @link CGImageMetadataCopyTagWithPath @/link for information about path syntax. @param value The value to be added to the CGImageMetadataTag matching the path. The tag will be retained. The restrictions for the value are the same as in @link CGImageMetadataTagCreate @/link. @return Returns true if successful, false otherwise.

func CGImageMetadataTagCopyName

func CGImageMetadataTagCopyName(tag unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataTagCopyName @abstract Returns a copy of the tag's name

func CGImageMetadataTagCopyNamespace

func CGImageMetadataTagCopyNamespace(tag unsafe.Pointer) unsafe.Pointer

*! @functiongroup Getting attributes of a CGImageMetadataTag */ @function CGImageMetadataTagCopyNamespace @abstract Returns a copy of the tag's namespace

func CGImageMetadataTagCopyPrefix

func CGImageMetadataTagCopyPrefix(tag unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataTagCopyPrefix @abstract Returns a copy of the tag's prefix

func CGImageMetadataTagCopyQualifiers

func CGImageMetadataTagCopyQualifiers(tag unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataTagCopyQualifiers @abstract Return a copy of the tag's qualifiers @discussion XMP allows properties to contain supplemental properties called qualifiers. Qualifiers are themselves CGImageMetadataTags with their own namespace, prefix, name, and value. A common use is the xml:lang qualifier for elements of an alternate-text array. @return Returns a copy of the array of qualifiers. Elements of the array are CGImageMetadataTags. Returns NULL if the tag does not have any qualifiers. The copy is shallow, the qualifiers are not deep copied.

func CGImageMetadataTagCopyValue

func CGImageMetadataTagCopyValue(tag unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataTagCopyValue @abstract Returns a shallow copy of the tag's value @discussion This function should only be used to read the tag's value. CGImageMetadataCopyTagWithPath returns a copy of the tag (including a copy of the tag's value). Therefore mutating a tag's value returned from this function may not actually mutate the value in the CGImageMetadata. It is recommended to create a new tag followed by CGImageMetadataSetTagWithPath, or use CGImageMetadataSetValueWithPath to mutate a metadata value.

func CGImageMetadataTagCreate

func CGImageMetadataTagCreate(xmlns unsafe.Pointer, prefix unsafe.Pointer, name unsafe.Pointer, type_ CGImageMetadataType, value unsafe.Pointer) unsafe.Pointer

@function CGImageMetadataTagCreate @abstract Creates a new CGImageMetadataTag @param xmlns The namespace for the tag. The value can be a common XMP namespace defined above, such as kCGImageMetadataNamespaceExif, or a CFString with a custom namespace URI. Custom namespaces must be a valid XML namespace. By convention, namespaces should end with either '/' or '#'. For example, exif uses the namespace "http://ns.adobe.com/exif/1.0/". @param prefix An abbreviation for the XML namespace. The value can be NULL if the namespace is defined as a constant. Custom prefixes must be a valid XML name. For example, the prefix used for "http://ns.adobe.com/exif/1.0/" is "exif". The XMP serialization of the tag will use the prefix. Prefixes are also important for path-based CGImageMetadata functions, such as @link CGImageMetadataCopyStringValueWithPath @/link or @link CGImageMetadataSetValueWithPath @/link. @param name The name of the tag. It must be a valid XMP name. @param type The type of the tag's value. Must be a constant from @link CGImageMetadataType @/link. @param value The value of the tag. Allowable CFTypes include CFStringRef, CFNumberRef, CFBooleanRef, CFArrayRef, and CFDictionaryRef. The CFType of 'value' must correspond to the 'type'. The elements of a CFArray must be either a CFStringRef or CGImageMetadataTagRef. The keys of a CFDictionary must be CFStringRefs with valid XMP names. The values of a CFDictionary must be either CFStringRefs or CGImageMetadataTagRefs. A shallow copy of the value is stored in the tag. Therefore, modifying a mutable value after the tag is created will not affect the tag's value. @result Returns a pointer to a new CGImageMetadataTag. Returns NULL if a tag could not be created with the specified parameters.

func CGImageMetadataTagGetTypeID

func CGImageMetadataTagGetTypeID() uint

*! @functiongroup Creating and identifying CGImageMetadataTags */ @function CGImageMetadataTagGetTypeID @abstract Gets the type identifier for the CGImageMetadataTag opaque type @return the type identifier for the CGImageMetadataTagGetTypeID opaque type

func CGImageSourceCopyAuxiliaryDataInfoAtIndex

func CGImageSourceCopyAuxiliaryDataInfoAtIndex(isrc unsafe.Pointer, index uint, auxiliaryImageDataType unsafe.Pointer) unsafe.Pointer

func CGImageSourceCopyMetadataAtIndex

func CGImageSourceCopyMetadataAtIndex(isrc unsafe.Pointer, index uint, options unsafe.Pointer) unsafe.Pointer

func CGImageSourceCopyProperties

func CGImageSourceCopyProperties(isrc unsafe.Pointer, options unsafe.Pointer) unsafe.Pointer

func CGImageSourceCopyPropertiesAtIndex

func CGImageSourceCopyPropertiesAtIndex(isrc unsafe.Pointer, index uint, options unsafe.Pointer) unsafe.Pointer

func CGImageSourceCopyTypeIdentifiers

func CGImageSourceCopyTypeIdentifiers() unsafe.Pointer

func CGImageSourceCreateImageAtIndex

func CGImageSourceCreateImageAtIndex(isrc unsafe.Pointer, index uint, options unsafe.Pointer) unsafe.Pointer

func CGImageSourceCreateIncremental

func CGImageSourceCreateIncremental(options unsafe.Pointer) unsafe.Pointer

func CGImageSourceCreateThumbnailAtIndex

func CGImageSourceCreateThumbnailAtIndex(isrc unsafe.Pointer, index uint, options unsafe.Pointer) unsafe.Pointer

func CGImageSourceCreateWithData

func CGImageSourceCreateWithData(data unsafe.Pointer, options unsafe.Pointer) unsafe.Pointer

func CGImageSourceCreateWithDataProvider

func CGImageSourceCreateWithDataProvider(provider unsafe.Pointer, options unsafe.Pointer) unsafe.Pointer

func CGImageSourceCreateWithURL

func CGImageSourceCreateWithURL(url unsafe.Pointer, options unsafe.Pointer) unsafe.Pointer

func CGImageSourceGetCount

func CGImageSourceGetCount(isrc unsafe.Pointer) uint

func CGImageSourceGetPrimaryImageIndex

func CGImageSourceGetPrimaryImageIndex(isrc unsafe.Pointer) uint

func CGImageSourceGetType

func CGImageSourceGetType(isrc unsafe.Pointer) unsafe.Pointer

func CGImageSourceGetTypeID

func CGImageSourceGetTypeID() uint

func CGImageSourceRemoveCacheAtIndex

func CGImageSourceRemoveCacheAtIndex(isrc unsafe.Pointer, index uint)

func CGImageSourceSetAllowableTypes

func CGImageSourceSetAllowableTypes(allowableTypes unsafe.Pointer) int

func CGImageSourceUpdateData

func CGImageSourceUpdateData(isrc unsafe.Pointer, data unsafe.Pointer, final bool)

func CGImageSourceUpdateDataProvider

func CGImageSourceUpdateDataProvider(isrc unsafe.Pointer, provider unsafe.Pointer, final bool)

func KCFErrorDomainCGImageMetadata

func KCFErrorDomainCGImageMetadata() uintptr

@constant kCFErrorDomainCGImageMetadata @discussion Error domain for all errors originating in ImageIO for CGImageMetadata APIs. Error codes may be interpreted using the list below.

func KCGComputeHDRStats

func KCGComputeHDRStats() uintptr

func KCGImageAnimationDelayTime

func KCGImageAnimationDelayTime() uintptr

func KCGImageAnimationLoopCount

func KCGImageAnimationLoopCount() uintptr

func KCGImageAnimationStartIndex

func KCGImageAnimationStartIndex() uintptr

func KCGImageAuxiliaryDataInfoColorSpace

func KCGImageAuxiliaryDataInfoColorSpace() uintptr

func KCGImageAuxiliaryDataInfoData

func KCGImageAuxiliaryDataInfoData() uintptr

func KCGImageAuxiliaryDataInfoDataDescription

func KCGImageAuxiliaryDataInfoDataDescription() uintptr

func KCGImageAuxiliaryDataInfoMetadata

func KCGImageAuxiliaryDataInfoMetadata() uintptr

func KCGImageAuxiliaryDataTypeDepth

func KCGImageAuxiliaryDataTypeDepth() uintptr

func KCGImageAuxiliaryDataTypeDisparity

func KCGImageAuxiliaryDataTypeDisparity() uintptr

func KCGImageAuxiliaryDataTypeHDRGainMap

func KCGImageAuxiliaryDataTypeHDRGainMap() uintptr

func KCGImageAuxiliaryDataTypeISOGainMap

func KCGImageAuxiliaryDataTypeISOGainMap() uintptr

func KCGImageAuxiliaryDataTypePortraitEffectsMatte

func KCGImageAuxiliaryDataTypePortraitEffectsMatte() uintptr

func KCGImageAuxiliaryDataTypeSemanticSegmentationGlassesMatte

func KCGImageAuxiliaryDataTypeSemanticSegmentationGlassesMatte() uintptr

func KCGImageAuxiliaryDataTypeSemanticSegmentationHairMatte

func KCGImageAuxiliaryDataTypeSemanticSegmentationHairMatte() uintptr

func KCGImageAuxiliaryDataTypeSemanticSegmentationSkinMatte

func KCGImageAuxiliaryDataTypeSemanticSegmentationSkinMatte() uintptr

func KCGImageAuxiliaryDataTypeSemanticSegmentationSkyMatte

func KCGImageAuxiliaryDataTypeSemanticSegmentationSkyMatte() uintptr

func KCGImageAuxiliaryDataTypeSemanticSegmentationTeethMatte

func KCGImageAuxiliaryDataTypeSemanticSegmentationTeethMatte() uintptr

func KCGImageDestinationBackgroundColor

func KCGImageDestinationBackgroundColor() uintptr

func KCGImageDestinationDateTime

func KCGImageDestinationDateTime() uintptr

func KCGImageDestinationEmbedThumbnail

func KCGImageDestinationEmbedThumbnail() uintptr

func KCGImageDestinationEncodeAlternateColorSpace

func KCGImageDestinationEncodeAlternateColorSpace() uintptr

func KCGImageDestinationEncodeBaseColorSpace

func KCGImageDestinationEncodeBaseColorSpace() uintptr

func KCGImageDestinationEncodeBaseIsSDR

func KCGImageDestinationEncodeBaseIsSDR() uintptr

func KCGImageDestinationEncodeBasePixelFormatRequest

func KCGImageDestinationEncodeBasePixelFormatRequest() uintptr

func KCGImageDestinationEncodeGainMapPixelFormatRequest

func KCGImageDestinationEncodeGainMapPixelFormatRequest() uintptr

func KCGImageDestinationEncodeGainMapSubsampleFactor

func KCGImageDestinationEncodeGainMapSubsampleFactor() uintptr

func KCGImageDestinationEncodeGenerateGainMapWithBaseImage

func KCGImageDestinationEncodeGenerateGainMapWithBaseImage() uintptr

func KCGImageDestinationEncodeIsBaseImage

func KCGImageDestinationEncodeIsBaseImage() uintptr

func KCGImageDestinationEncodeRequest

func KCGImageDestinationEncodeRequest() uintptr

func KCGImageDestinationEncodeRequestOptions

func KCGImageDestinationEncodeRequestOptions() uintptr

func KCGImageDestinationEncodeToISOGainmap

func KCGImageDestinationEncodeToISOGainmap() uintptr

func KCGImageDestinationEncodeToISOHDR

func KCGImageDestinationEncodeToISOHDR() uintptr

func KCGImageDestinationEncodeToSDR

func KCGImageDestinationEncodeToSDR() uintptr

func KCGImageDestinationEncodeTonemapMode

func KCGImageDestinationEncodeTonemapMode() uintptr

func KCGImageDestinationImageMaxPixelSize

func KCGImageDestinationImageMaxPixelSize() uintptr

func KCGImageDestinationLossyCompressionQuality

func KCGImageDestinationLossyCompressionQuality() uintptr

func KCGImageDestinationMergeMetadata

func KCGImageDestinationMergeMetadata() uintptr

func KCGImageDestinationMetadata

func KCGImageDestinationMetadata() uintptr

func KCGImageDestinationOptimizeColorForSharing

func KCGImageDestinationOptimizeColorForSharing() uintptr

func KCGImageDestinationOrientation

func KCGImageDestinationOrientation() uintptr

func KCGImageDestinationPreserveGainMap

func KCGImageDestinationPreserveGainMap() uintptr

func KCGImageMetadataEnumerateRecursively

func KCGImageMetadataEnumerateRecursively() uintptr

func KCGImageMetadataNamespaceDublinCore

func KCGImageMetadataNamespaceDublinCore() uintptr

func KCGImageMetadataNamespaceExif

func KCGImageMetadataNamespaceExif() uintptr

func KCGImageMetadataNamespaceExifAux

func KCGImageMetadataNamespaceExifAux() uintptr

func KCGImageMetadataNamespaceExifEX

func KCGImageMetadataNamespaceExifEX() uintptr

func KCGImageMetadataNamespaceIPTCCore

func KCGImageMetadataNamespaceIPTCCore() uintptr

func KCGImageMetadataNamespaceIPTCExtension

func KCGImageMetadataNamespaceIPTCExtension() uintptr

func KCGImageMetadataNamespacePhotoshop

func KCGImageMetadataNamespacePhotoshop() uintptr

func KCGImageMetadataNamespaceTIFF

func KCGImageMetadataNamespaceTIFF() uintptr

func KCGImageMetadataNamespaceXMPBasic

func KCGImageMetadataNamespaceXMPBasic() uintptr

func KCGImageMetadataNamespaceXMPRights

func KCGImageMetadataNamespaceXMPRights() uintptr

func KCGImageMetadataPrefixDublinCore

func KCGImageMetadataPrefixDublinCore() uintptr

func KCGImageMetadataPrefixExif

func KCGImageMetadataPrefixExif() uintptr

func KCGImageMetadataPrefixExifAux

func KCGImageMetadataPrefixExifAux() uintptr

func KCGImageMetadataPrefixExifEX

func KCGImageMetadataPrefixExifEX() uintptr

func KCGImageMetadataPrefixIPTCCore

func KCGImageMetadataPrefixIPTCCore() uintptr

func KCGImageMetadataPrefixIPTCExtension

func KCGImageMetadataPrefixIPTCExtension() uintptr

func KCGImageMetadataPrefixPhotoshop

func KCGImageMetadataPrefixPhotoshop() uintptr

func KCGImageMetadataPrefixTIFF

func KCGImageMetadataPrefixTIFF() uintptr

func KCGImageMetadataPrefixXMPBasic

func KCGImageMetadataPrefixXMPBasic() uintptr

func KCGImageMetadataPrefixXMPRights

func KCGImageMetadataPrefixXMPRights() uintptr

func KCGImageMetadataShouldExcludeGPS

func KCGImageMetadataShouldExcludeGPS() uintptr

func KCGImageMetadataShouldExcludeXMP

func KCGImageMetadataShouldExcludeXMP() uintptr

func KCGImageProperty8BIMDictionary

func KCGImageProperty8BIMDictionary() uintptr

func KCGImageProperty8BIMLayerNames

func KCGImageProperty8BIMLayerNames() uintptr

func KCGImageProperty8BIMVersion

func KCGImageProperty8BIMVersion() uintptr

func KCGImagePropertyAPNGCanvasPixelHeight

func KCGImagePropertyAPNGCanvasPixelHeight() uintptr

func KCGImagePropertyAPNGCanvasPixelWidth

func KCGImagePropertyAPNGCanvasPixelWidth() uintptr

func KCGImagePropertyAPNGDelayTime

func KCGImagePropertyAPNGDelayTime() uintptr

func KCGImagePropertyAPNGFrameInfoArray

func KCGImagePropertyAPNGFrameInfoArray() uintptr

func KCGImagePropertyAPNGLoopCount

func KCGImagePropertyAPNGLoopCount() uintptr

func KCGImagePropertyAPNGUnclampedDelayTime

func KCGImagePropertyAPNGUnclampedDelayTime() uintptr

func KCGImagePropertyASTCBlockSize

func KCGImagePropertyASTCBlockSize() uintptr

func KCGImagePropertyASTCBlockSize4x4

func KCGImagePropertyASTCBlockSize4x4() uintptr

func KCGImagePropertyASTCBlockSize8x8

func KCGImagePropertyASTCBlockSize8x8() uintptr

func KCGImagePropertyASTCEncoder

func KCGImagePropertyASTCEncoder() uintptr

func KCGImagePropertyAVISDictionary

func KCGImagePropertyAVISDictionary() uintptr

func KCGImagePropertyAuxiliaryData

func KCGImagePropertyAuxiliaryData() uintptr

func KCGImagePropertyAuxiliaryDataType

func KCGImagePropertyAuxiliaryDataType() uintptr

func KCGImagePropertyBCEncoder

func KCGImagePropertyBCEncoder() uintptr

func KCGImagePropertyBCFormat

func KCGImagePropertyBCFormat() uintptr

func KCGImagePropertyBytesPerRow

func KCGImagePropertyBytesPerRow() uintptr

func KCGImagePropertyCIFFCameraSerialNumber

func KCGImagePropertyCIFFCameraSerialNumber() uintptr

func KCGImagePropertyCIFFContinuousDrive

func KCGImagePropertyCIFFContinuousDrive() uintptr

func KCGImagePropertyCIFFDescription

func KCGImagePropertyCIFFDescription() uintptr

func KCGImagePropertyCIFFDictionary

func KCGImagePropertyCIFFDictionary() uintptr

func KCGImagePropertyCIFFFirmware

func KCGImagePropertyCIFFFirmware() uintptr

func KCGImagePropertyCIFFFlashExposureComp

func KCGImagePropertyCIFFFlashExposureComp() uintptr

func KCGImagePropertyCIFFFocusMode

func KCGImagePropertyCIFFFocusMode() uintptr

func KCGImagePropertyCIFFImageFileName

func KCGImagePropertyCIFFImageFileName() uintptr

func KCGImagePropertyCIFFImageName

func KCGImagePropertyCIFFImageName() uintptr

func KCGImagePropertyCIFFImageSerialNumber

func KCGImagePropertyCIFFImageSerialNumber() uintptr

func KCGImagePropertyCIFFLensMaxMM

func KCGImagePropertyCIFFLensMaxMM() uintptr

func KCGImagePropertyCIFFLensMinMM

func KCGImagePropertyCIFFLensMinMM() uintptr

func KCGImagePropertyCIFFLensModel

func KCGImagePropertyCIFFLensModel() uintptr

func KCGImagePropertyCIFFMeasuredEV

func KCGImagePropertyCIFFMeasuredEV() uintptr

func KCGImagePropertyCIFFMeteringMode

func KCGImagePropertyCIFFMeteringMode() uintptr

func KCGImagePropertyCIFFOwnerName

func KCGImagePropertyCIFFOwnerName() uintptr

func KCGImagePropertyCIFFRecordID

func KCGImagePropertyCIFFRecordID() uintptr

func KCGImagePropertyCIFFReleaseMethod

func KCGImagePropertyCIFFReleaseMethod() uintptr

func KCGImagePropertyCIFFReleaseTiming

func KCGImagePropertyCIFFReleaseTiming() uintptr

func KCGImagePropertyCIFFSelfTimingTime

func KCGImagePropertyCIFFSelfTimingTime() uintptr

func KCGImagePropertyCIFFShootingMode

func KCGImagePropertyCIFFShootingMode() uintptr

func KCGImagePropertyCIFFWhiteBalanceIndex

func KCGImagePropertyCIFFWhiteBalanceIndex() uintptr

func KCGImagePropertyColorModel

func KCGImagePropertyColorModel() uintptr

func KCGImagePropertyColorModelCMYK

func KCGImagePropertyColorModelCMYK() uintptr

func KCGImagePropertyColorModelGray

func KCGImagePropertyColorModelGray() uintptr

func KCGImagePropertyColorModelLab

func KCGImagePropertyColorModelLab() uintptr

func KCGImagePropertyColorModelRGB

func KCGImagePropertyColorModelRGB() uintptr

func KCGImagePropertyDNGActiveArea

func KCGImagePropertyDNGActiveArea() uintptr

func KCGImagePropertyDNGAnalogBalance

func KCGImagePropertyDNGAnalogBalance() uintptr

func KCGImagePropertyDNGAntiAliasStrength

func KCGImagePropertyDNGAntiAliasStrength() uintptr

func KCGImagePropertyDNGAsShotICCProfile

func KCGImagePropertyDNGAsShotICCProfile() uintptr

func KCGImagePropertyDNGAsShotNeutral

func KCGImagePropertyDNGAsShotNeutral() uintptr

func KCGImagePropertyDNGAsShotPreProfileMatrix

func KCGImagePropertyDNGAsShotPreProfileMatrix() uintptr

func KCGImagePropertyDNGAsShotProfileName

func KCGImagePropertyDNGAsShotProfileName() uintptr

func KCGImagePropertyDNGAsShotWhiteXY

func KCGImagePropertyDNGAsShotWhiteXY() uintptr

func KCGImagePropertyDNGBackwardVersion

func KCGImagePropertyDNGBackwardVersion() uintptr

func KCGImagePropertyDNGBaselineExposure

func KCGImagePropertyDNGBaselineExposure() uintptr

func KCGImagePropertyDNGBaselineExposureOffset

func KCGImagePropertyDNGBaselineExposureOffset() uintptr

func KCGImagePropertyDNGBaselineNoise

func KCGImagePropertyDNGBaselineNoise() uintptr

func KCGImagePropertyDNGBaselineSharpness

func KCGImagePropertyDNGBaselineSharpness() uintptr

func KCGImagePropertyDNGBayerGreenSplit

func KCGImagePropertyDNGBayerGreenSplit() uintptr

func KCGImagePropertyDNGBestQualityScale

func KCGImagePropertyDNGBestQualityScale() uintptr

func KCGImagePropertyDNGBlackLevel

func KCGImagePropertyDNGBlackLevel() uintptr

func KCGImagePropertyDNGBlackLevelDeltaH

func KCGImagePropertyDNGBlackLevelDeltaH() uintptr

func KCGImagePropertyDNGBlackLevelDeltaV

func KCGImagePropertyDNGBlackLevelDeltaV() uintptr

func KCGImagePropertyDNGBlackLevelRepeatDim

func KCGImagePropertyDNGBlackLevelRepeatDim() uintptr

func KCGImagePropertyDNGCFALayout

func KCGImagePropertyDNGCFALayout() uintptr

func KCGImagePropertyDNGCFAPlaneColor

func KCGImagePropertyDNGCFAPlaneColor() uintptr

func KCGImagePropertyDNGCalibrationIlluminant1

func KCGImagePropertyDNGCalibrationIlluminant1() uintptr

func KCGImagePropertyDNGCalibrationIlluminant2

func KCGImagePropertyDNGCalibrationIlluminant2() uintptr

func KCGImagePropertyDNGCameraCalibration1

func KCGImagePropertyDNGCameraCalibration1() uintptr

func KCGImagePropertyDNGCameraCalibration2

func KCGImagePropertyDNGCameraCalibration2() uintptr

func KCGImagePropertyDNGCameraCalibrationSignature

func KCGImagePropertyDNGCameraCalibrationSignature() uintptr

func KCGImagePropertyDNGCameraSerialNumber

func KCGImagePropertyDNGCameraSerialNumber() uintptr

func KCGImagePropertyDNGChromaBlurRadius

func KCGImagePropertyDNGChromaBlurRadius() uintptr

func KCGImagePropertyDNGColorMatrix1

func KCGImagePropertyDNGColorMatrix1() uintptr

func KCGImagePropertyDNGColorMatrix2

func KCGImagePropertyDNGColorMatrix2() uintptr

func KCGImagePropertyDNGColorimetricReference

func KCGImagePropertyDNGColorimetricReference() uintptr

func KCGImagePropertyDNGCurrentICCProfile

func KCGImagePropertyDNGCurrentICCProfile() uintptr

func KCGImagePropertyDNGCurrentPreProfileMatrix

func KCGImagePropertyDNGCurrentPreProfileMatrix() uintptr

func KCGImagePropertyDNGDefaultBlackRender

func KCGImagePropertyDNGDefaultBlackRender() uintptr

func KCGImagePropertyDNGDefaultCropOrigin

func KCGImagePropertyDNGDefaultCropOrigin() uintptr

func KCGImagePropertyDNGDefaultCropSize

func KCGImagePropertyDNGDefaultCropSize() uintptr

func KCGImagePropertyDNGDefaultScale

func KCGImagePropertyDNGDefaultScale() uintptr

func KCGImagePropertyDNGDefaultUserCrop

func KCGImagePropertyDNGDefaultUserCrop() uintptr

func KCGImagePropertyDNGDictionary

func KCGImagePropertyDNGDictionary() uintptr

func KCGImagePropertyDNGExtraCameraProfiles

func KCGImagePropertyDNGExtraCameraProfiles() uintptr

func KCGImagePropertyDNGFixVignetteRadial

func KCGImagePropertyDNGFixVignetteRadial() uintptr

func KCGImagePropertyDNGForwardMatrix1

func KCGImagePropertyDNGForwardMatrix1() uintptr

func KCGImagePropertyDNGForwardMatrix2

func KCGImagePropertyDNGForwardMatrix2() uintptr

func KCGImagePropertyDNGLensInfo

func KCGImagePropertyDNGLensInfo() uintptr

func KCGImagePropertyDNGLinearResponseLimit

func KCGImagePropertyDNGLinearResponseLimit() uintptr

func KCGImagePropertyDNGLinearizationTable

func KCGImagePropertyDNGLinearizationTable() uintptr

func KCGImagePropertyDNGLocalizedCameraModel

func KCGImagePropertyDNGLocalizedCameraModel() uintptr

func KCGImagePropertyDNGMakerNoteSafety

func KCGImagePropertyDNGMakerNoteSafety() uintptr

func KCGImagePropertyDNGMaskedAreas

func KCGImagePropertyDNGMaskedAreas() uintptr

func KCGImagePropertyDNGNewRawImageDigest

func KCGImagePropertyDNGNewRawImageDigest() uintptr

func KCGImagePropertyDNGNoiseProfile

func KCGImagePropertyDNGNoiseProfile() uintptr

func KCGImagePropertyDNGNoiseReductionApplied

func KCGImagePropertyDNGNoiseReductionApplied() uintptr

func KCGImagePropertyDNGOpcodeList1

func KCGImagePropertyDNGOpcodeList1() uintptr

func KCGImagePropertyDNGOpcodeList2

func KCGImagePropertyDNGOpcodeList2() uintptr

func KCGImagePropertyDNGOpcodeList3

func KCGImagePropertyDNGOpcodeList3() uintptr

func KCGImagePropertyDNGOriginalBestQualityFinalSize

func KCGImagePropertyDNGOriginalBestQualityFinalSize() uintptr

func KCGImagePropertyDNGOriginalDefaultCropSize

func KCGImagePropertyDNGOriginalDefaultCropSize() uintptr

func KCGImagePropertyDNGOriginalDefaultFinalSize

func KCGImagePropertyDNGOriginalDefaultFinalSize() uintptr

func KCGImagePropertyDNGOriginalRawFileData

func KCGImagePropertyDNGOriginalRawFileData() uintptr

func KCGImagePropertyDNGOriginalRawFileDigest

func KCGImagePropertyDNGOriginalRawFileDigest() uintptr

func KCGImagePropertyDNGOriginalRawFileName

func KCGImagePropertyDNGOriginalRawFileName() uintptr

func KCGImagePropertyDNGPreviewApplicationName

func KCGImagePropertyDNGPreviewApplicationName() uintptr

func KCGImagePropertyDNGPreviewApplicationVersion

func KCGImagePropertyDNGPreviewApplicationVersion() uintptr

func KCGImagePropertyDNGPreviewColorSpace

func KCGImagePropertyDNGPreviewColorSpace() uintptr

func KCGImagePropertyDNGPreviewDateTime

func KCGImagePropertyDNGPreviewDateTime() uintptr

func KCGImagePropertyDNGPreviewSettingsDigest

func KCGImagePropertyDNGPreviewSettingsDigest() uintptr

func KCGImagePropertyDNGPreviewSettingsName

func KCGImagePropertyDNGPreviewSettingsName() uintptr

func KCGImagePropertyDNGPrivateData

func KCGImagePropertyDNGPrivateData() uintptr

func KCGImagePropertyDNGProfileCalibrationSignature

func KCGImagePropertyDNGProfileCalibrationSignature() uintptr

func KCGImagePropertyDNGProfileCopyright

func KCGImagePropertyDNGProfileCopyright() uintptr

func KCGImagePropertyDNGProfileEmbedPolicy

func KCGImagePropertyDNGProfileEmbedPolicy() uintptr

func KCGImagePropertyDNGProfileHueSatMapData1

func KCGImagePropertyDNGProfileHueSatMapData1() uintptr

func KCGImagePropertyDNGProfileHueSatMapData2

func KCGImagePropertyDNGProfileHueSatMapData2() uintptr

func KCGImagePropertyDNGProfileHueSatMapDims

func KCGImagePropertyDNGProfileHueSatMapDims() uintptr

func KCGImagePropertyDNGProfileHueSatMapEncoding

func KCGImagePropertyDNGProfileHueSatMapEncoding() uintptr

func KCGImagePropertyDNGProfileLookTableData

func KCGImagePropertyDNGProfileLookTableData() uintptr

func KCGImagePropertyDNGProfileLookTableDims

func KCGImagePropertyDNGProfileLookTableDims() uintptr

func KCGImagePropertyDNGProfileLookTableEncoding

func KCGImagePropertyDNGProfileLookTableEncoding() uintptr

func KCGImagePropertyDNGProfileName

func KCGImagePropertyDNGProfileName() uintptr

func KCGImagePropertyDNGProfileToneCurve

func KCGImagePropertyDNGProfileToneCurve() uintptr

func KCGImagePropertyDNGRawDataUniqueID

func KCGImagePropertyDNGRawDataUniqueID() uintptr

func KCGImagePropertyDNGRawImageDigest

func KCGImagePropertyDNGRawImageDigest() uintptr

func KCGImagePropertyDNGRawToPreviewGain

func KCGImagePropertyDNGRawToPreviewGain() uintptr

func KCGImagePropertyDNGReductionMatrix1

func KCGImagePropertyDNGReductionMatrix1() uintptr

func KCGImagePropertyDNGReductionMatrix2

func KCGImagePropertyDNGReductionMatrix2() uintptr

func KCGImagePropertyDNGRowInterleaveFactor

func KCGImagePropertyDNGRowInterleaveFactor() uintptr

func KCGImagePropertyDNGShadowScale

func KCGImagePropertyDNGShadowScale() uintptr

func KCGImagePropertyDNGSubTileBlockSize

func KCGImagePropertyDNGSubTileBlockSize() uintptr

func KCGImagePropertyDNGUniqueCameraModel

func KCGImagePropertyDNGUniqueCameraModel() uintptr

func KCGImagePropertyDNGVersion

func KCGImagePropertyDNGVersion() uintptr

func KCGImagePropertyDNGWarpFisheye

func KCGImagePropertyDNGWarpFisheye() uintptr

func KCGImagePropertyDNGWarpRectilinear

func KCGImagePropertyDNGWarpRectilinear() uintptr

func KCGImagePropertyDNGWhiteLevel

func KCGImagePropertyDNGWhiteLevel() uintptr

func KCGImagePropertyDPIHeight

func KCGImagePropertyDPIHeight() uintptr

func KCGImagePropertyDPIWidth

func KCGImagePropertyDPIWidth() uintptr

func KCGImagePropertyDepth

func KCGImagePropertyDepth() uintptr

func KCGImagePropertyEncoder

func KCGImagePropertyEncoder() uintptr

func KCGImagePropertyExifApertureValue

func KCGImagePropertyExifApertureValue() uintptr

func KCGImagePropertyExifAuxDictionary

func KCGImagePropertyExifAuxDictionary() uintptr

func KCGImagePropertyExifAuxFirmware

func KCGImagePropertyExifAuxFirmware() uintptr

func KCGImagePropertyExifAuxFlashCompensation

func KCGImagePropertyExifAuxFlashCompensation() uintptr

func KCGImagePropertyExifAuxImageNumber

func KCGImagePropertyExifAuxImageNumber() uintptr

func KCGImagePropertyExifAuxLensID

func KCGImagePropertyExifAuxLensID() uintptr

func KCGImagePropertyExifAuxLensInfo

func KCGImagePropertyExifAuxLensInfo() uintptr

func KCGImagePropertyExifAuxLensModel

func KCGImagePropertyExifAuxLensModel() uintptr

func KCGImagePropertyExifAuxLensSerialNumber

func KCGImagePropertyExifAuxLensSerialNumber() uintptr

func KCGImagePropertyExifAuxOwnerName

func KCGImagePropertyExifAuxOwnerName() uintptr

func KCGImagePropertyExifAuxSerialNumber

func KCGImagePropertyExifAuxSerialNumber() uintptr

func KCGImagePropertyExifBodySerialNumber

func KCGImagePropertyExifBodySerialNumber() uintptr

func KCGImagePropertyExifBrightnessValue

func KCGImagePropertyExifBrightnessValue() uintptr

func KCGImagePropertyExifCFAPattern

func KCGImagePropertyExifCFAPattern() uintptr

func KCGImagePropertyExifCameraOwnerName

func KCGImagePropertyExifCameraOwnerName() uintptr

func KCGImagePropertyExifColorSpace

func KCGImagePropertyExifColorSpace() uintptr

func KCGImagePropertyExifComponentsConfiguration

func KCGImagePropertyExifComponentsConfiguration() uintptr

func KCGImagePropertyExifCompositeImage

func KCGImagePropertyExifCompositeImage() uintptr

func KCGImagePropertyExifCompressedBitsPerPixel

func KCGImagePropertyExifCompressedBitsPerPixel() uintptr

func KCGImagePropertyExifContrast

func KCGImagePropertyExifContrast() uintptr

func KCGImagePropertyExifCustomRendered

func KCGImagePropertyExifCustomRendered() uintptr

func KCGImagePropertyExifDateTimeDigitized

func KCGImagePropertyExifDateTimeDigitized() uintptr

func KCGImagePropertyExifDateTimeOriginal

func KCGImagePropertyExifDateTimeOriginal() uintptr

func KCGImagePropertyExifDeviceSettingDescription

func KCGImagePropertyExifDeviceSettingDescription() uintptr

func KCGImagePropertyExifDictionary

func KCGImagePropertyExifDictionary() uintptr

func KCGImagePropertyExifDigitalZoomRatio

func KCGImagePropertyExifDigitalZoomRatio() uintptr

func KCGImagePropertyExifExposureBiasValue

func KCGImagePropertyExifExposureBiasValue() uintptr

func KCGImagePropertyExifExposureIndex

func KCGImagePropertyExifExposureIndex() uintptr

func KCGImagePropertyExifExposureMode

func KCGImagePropertyExifExposureMode() uintptr

func KCGImagePropertyExifExposureProgram

func KCGImagePropertyExifExposureProgram() uintptr

func KCGImagePropertyExifExposureTime

func KCGImagePropertyExifExposureTime() uintptr

func KCGImagePropertyExifFNumber

func KCGImagePropertyExifFNumber() uintptr

func KCGImagePropertyExifFileSource

func KCGImagePropertyExifFileSource() uintptr

func KCGImagePropertyExifFlash

func KCGImagePropertyExifFlash() uintptr

func KCGImagePropertyExifFlashEnergy

func KCGImagePropertyExifFlashEnergy() uintptr

func KCGImagePropertyExifFlashPixVersion

func KCGImagePropertyExifFlashPixVersion() uintptr

func KCGImagePropertyExifFocalLenIn35mmFilm

func KCGImagePropertyExifFocalLenIn35mmFilm() uintptr

func KCGImagePropertyExifFocalLength

func KCGImagePropertyExifFocalLength() uintptr

func KCGImagePropertyExifFocalPlaneResolutionUnit

func KCGImagePropertyExifFocalPlaneResolutionUnit() uintptr

func KCGImagePropertyExifFocalPlaneXResolution

func KCGImagePropertyExifFocalPlaneXResolution() uintptr

func KCGImagePropertyExifFocalPlaneYResolution

func KCGImagePropertyExifFocalPlaneYResolution() uintptr

func KCGImagePropertyExifGainControl

func KCGImagePropertyExifGainControl() uintptr

func KCGImagePropertyExifGamma

func KCGImagePropertyExifGamma() uintptr

func KCGImagePropertyExifISOSpeed

func KCGImagePropertyExifISOSpeed() uintptr

func KCGImagePropertyExifISOSpeedLatitudeyyy

func KCGImagePropertyExifISOSpeedLatitudeyyy() uintptr

func KCGImagePropertyExifISOSpeedLatitudezzz

func KCGImagePropertyExifISOSpeedLatitudezzz() uintptr

func KCGImagePropertyExifISOSpeedRatings

func KCGImagePropertyExifISOSpeedRatings() uintptr

func KCGImagePropertyExifImageUniqueID

func KCGImagePropertyExifImageUniqueID() uintptr

func KCGImagePropertyExifLensMake

func KCGImagePropertyExifLensMake() uintptr

func KCGImagePropertyExifLensModel

func KCGImagePropertyExifLensModel() uintptr

func KCGImagePropertyExifLensSerialNumber

func KCGImagePropertyExifLensSerialNumber() uintptr

func KCGImagePropertyExifLensSpecification

func KCGImagePropertyExifLensSpecification() uintptr

func KCGImagePropertyExifLightSource

func KCGImagePropertyExifLightSource() uintptr

func KCGImagePropertyExifMakerNote

func KCGImagePropertyExifMakerNote() uintptr

func KCGImagePropertyExifMaxApertureValue

func KCGImagePropertyExifMaxApertureValue() uintptr

func KCGImagePropertyExifMeteringMode

func KCGImagePropertyExifMeteringMode() uintptr

func KCGImagePropertyExifOECF

func KCGImagePropertyExifOECF() uintptr

func KCGImagePropertyExifOffsetTime

func KCGImagePropertyExifOffsetTime() uintptr

func KCGImagePropertyExifOffsetTimeDigitized

func KCGImagePropertyExifOffsetTimeDigitized() uintptr

func KCGImagePropertyExifOffsetTimeOriginal

func KCGImagePropertyExifOffsetTimeOriginal() uintptr

func KCGImagePropertyExifPixelXDimension

func KCGImagePropertyExifPixelXDimension() uintptr

func KCGImagePropertyExifPixelYDimension

func KCGImagePropertyExifPixelYDimension() uintptr

func KCGImagePropertyExifRecommendedExposureIndex

func KCGImagePropertyExifRecommendedExposureIndex() uintptr

func KCGImagePropertyExifRelatedSoundFile

func KCGImagePropertyExifRelatedSoundFile() uintptr

func KCGImagePropertyExifSaturation

func KCGImagePropertyExifSaturation() uintptr

func KCGImagePropertyExifSceneCaptureType

func KCGImagePropertyExifSceneCaptureType() uintptr

func KCGImagePropertyExifSceneType

func KCGImagePropertyExifSceneType() uintptr

func KCGImagePropertyExifSensingMethod

func KCGImagePropertyExifSensingMethod() uintptr

func KCGImagePropertyExifSensitivityType

func KCGImagePropertyExifSensitivityType() uintptr

func KCGImagePropertyExifSharpness

func KCGImagePropertyExifSharpness() uintptr

func KCGImagePropertyExifShutterSpeedValue

func KCGImagePropertyExifShutterSpeedValue() uintptr

func KCGImagePropertyExifSourceExposureTimesOfCompositeImage

func KCGImagePropertyExifSourceExposureTimesOfCompositeImage() uintptr

func KCGImagePropertyExifSourceImageNumberOfCompositeImage

func KCGImagePropertyExifSourceImageNumberOfCompositeImage() uintptr

func KCGImagePropertyExifSpatialFrequencyResponse

func KCGImagePropertyExifSpatialFrequencyResponse() uintptr

func KCGImagePropertyExifSpectralSensitivity

func KCGImagePropertyExifSpectralSensitivity() uintptr

func KCGImagePropertyExifStandardOutputSensitivity

func KCGImagePropertyExifStandardOutputSensitivity() uintptr

func KCGImagePropertyExifSubjectArea

func KCGImagePropertyExifSubjectArea() uintptr

func KCGImagePropertyExifSubjectDistRange

func KCGImagePropertyExifSubjectDistRange() uintptr

func KCGImagePropertyExifSubjectDistance

func KCGImagePropertyExifSubjectDistance() uintptr

func KCGImagePropertyExifSubjectLocation

func KCGImagePropertyExifSubjectLocation() uintptr

func KCGImagePropertyExifSubsecTime

func KCGImagePropertyExifSubsecTime() uintptr

func KCGImagePropertyExifSubsecTimeDigitized

func KCGImagePropertyExifSubsecTimeDigitized() uintptr

func KCGImagePropertyExifSubsecTimeOrginal

func KCGImagePropertyExifSubsecTimeOrginal() uintptr

func KCGImagePropertyExifSubsecTimeOriginal

func KCGImagePropertyExifSubsecTimeOriginal() uintptr

func KCGImagePropertyExifUserComment

func KCGImagePropertyExifUserComment() uintptr

func KCGImagePropertyExifVersion

func KCGImagePropertyExifVersion() uintptr

func KCGImagePropertyExifWhiteBalance

func KCGImagePropertyExifWhiteBalance() uintptr

func KCGImagePropertyFileContentsDictionary

func KCGImagePropertyFileContentsDictionary() uintptr

func KCGImagePropertyFileSize

func KCGImagePropertyFileSize() uintptr

func KCGImagePropertyGIFCanvasPixelHeight

func KCGImagePropertyGIFCanvasPixelHeight() uintptr

func KCGImagePropertyGIFCanvasPixelWidth

func KCGImagePropertyGIFCanvasPixelWidth() uintptr

func KCGImagePropertyGIFDelayTime

func KCGImagePropertyGIFDelayTime() uintptr

func KCGImagePropertyGIFDictionary

func KCGImagePropertyGIFDictionary() uintptr

func KCGImagePropertyGIFFrameInfoArray

func KCGImagePropertyGIFFrameInfoArray() uintptr

func KCGImagePropertyGIFHasGlobalColorMap

func KCGImagePropertyGIFHasGlobalColorMap() uintptr

func KCGImagePropertyGIFImageColorMap

func KCGImagePropertyGIFImageColorMap() uintptr

func KCGImagePropertyGIFLoopCount

func KCGImagePropertyGIFLoopCount() uintptr

func KCGImagePropertyGIFUnclampedDelayTime

func KCGImagePropertyGIFUnclampedDelayTime() uintptr

func KCGImagePropertyGPSAltitude

func KCGImagePropertyGPSAltitude() uintptr

func KCGImagePropertyGPSAltitudeRef

func KCGImagePropertyGPSAltitudeRef() uintptr

func KCGImagePropertyGPSAreaInformation

func KCGImagePropertyGPSAreaInformation() uintptr

func KCGImagePropertyGPSDOP

func KCGImagePropertyGPSDOP() uintptr

func KCGImagePropertyGPSDateStamp

func KCGImagePropertyGPSDateStamp() uintptr

func KCGImagePropertyGPSDestBearing

func KCGImagePropertyGPSDestBearing() uintptr

func KCGImagePropertyGPSDestBearingRef

func KCGImagePropertyGPSDestBearingRef() uintptr

func KCGImagePropertyGPSDestDistance

func KCGImagePropertyGPSDestDistance() uintptr

func KCGImagePropertyGPSDestDistanceRef

func KCGImagePropertyGPSDestDistanceRef() uintptr

func KCGImagePropertyGPSDestLatitude

func KCGImagePropertyGPSDestLatitude() uintptr

func KCGImagePropertyGPSDestLatitudeRef

func KCGImagePropertyGPSDestLatitudeRef() uintptr

func KCGImagePropertyGPSDestLongitude

func KCGImagePropertyGPSDestLongitude() uintptr

func KCGImagePropertyGPSDestLongitudeRef

func KCGImagePropertyGPSDestLongitudeRef() uintptr

func KCGImagePropertyGPSDictionary

func KCGImagePropertyGPSDictionary() uintptr

func KCGImagePropertyGPSDifferental

func KCGImagePropertyGPSDifferental() uintptr

func KCGImagePropertyGPSHPositioningError

func KCGImagePropertyGPSHPositioningError() uintptr

func KCGImagePropertyGPSImgDirection

func KCGImagePropertyGPSImgDirection() uintptr

func KCGImagePropertyGPSImgDirectionRef

func KCGImagePropertyGPSImgDirectionRef() uintptr

func KCGImagePropertyGPSLatitude

func KCGImagePropertyGPSLatitude() uintptr

func KCGImagePropertyGPSLatitudeRef

func KCGImagePropertyGPSLatitudeRef() uintptr

func KCGImagePropertyGPSLongitude

func KCGImagePropertyGPSLongitude() uintptr

func KCGImagePropertyGPSLongitudeRef

func KCGImagePropertyGPSLongitudeRef() uintptr

func KCGImagePropertyGPSMapDatum

func KCGImagePropertyGPSMapDatum() uintptr

func KCGImagePropertyGPSMeasureMode

func KCGImagePropertyGPSMeasureMode() uintptr

func KCGImagePropertyGPSProcessingMethod

func KCGImagePropertyGPSProcessingMethod() uintptr

func KCGImagePropertyGPSSatellites

func KCGImagePropertyGPSSatellites() uintptr

func KCGImagePropertyGPSSpeed

func KCGImagePropertyGPSSpeed() uintptr

func KCGImagePropertyGPSSpeedRef

func KCGImagePropertyGPSSpeedRef() uintptr

func KCGImagePropertyGPSStatus

func KCGImagePropertyGPSStatus() uintptr

func KCGImagePropertyGPSTimeStamp

func KCGImagePropertyGPSTimeStamp() uintptr

func KCGImagePropertyGPSTrack

func KCGImagePropertyGPSTrack() uintptr

func KCGImagePropertyGPSTrackRef

func KCGImagePropertyGPSTrackRef() uintptr

func KCGImagePropertyGPSVersion

func KCGImagePropertyGPSVersion() uintptr

func KCGImagePropertyGroupImageBaseline

func KCGImagePropertyGroupImageBaseline() uintptr

func KCGImagePropertyGroupImageDisparityAdjustment

func KCGImagePropertyGroupImageDisparityAdjustment() uintptr

func KCGImagePropertyGroupImageIndexLeft

func KCGImagePropertyGroupImageIndexLeft() uintptr

func KCGImagePropertyGroupImageIndexMonoscopic

func KCGImagePropertyGroupImageIndexMonoscopic() uintptr

func KCGImagePropertyGroupImageIndexRight

func KCGImagePropertyGroupImageIndexRight() uintptr

func KCGImagePropertyGroupImageIsAlternateImage

func KCGImagePropertyGroupImageIsAlternateImage() uintptr

func KCGImagePropertyGroupImageIsLeftImage

func KCGImagePropertyGroupImageIsLeftImage() uintptr

func KCGImagePropertyGroupImageIsMonoscopicImage

func KCGImagePropertyGroupImageIsMonoscopicImage() uintptr

func KCGImagePropertyGroupImageIsRightImage

func KCGImagePropertyGroupImageIsRightImage() uintptr

func KCGImagePropertyGroupImageStereoAggressors

func KCGImagePropertyGroupImageStereoAggressors() uintptr

func KCGImagePropertyGroupImagesAlternate

func KCGImagePropertyGroupImagesAlternate() uintptr

func KCGImagePropertyGroupIndex

func KCGImagePropertyGroupIndex() uintptr

func KCGImagePropertyGroupMonoscopicImageLocation

func KCGImagePropertyGroupMonoscopicImageLocation() uintptr

func KCGImagePropertyGroupType

func KCGImagePropertyGroupType() uintptr

func KCGImagePropertyGroupTypeAlternate

func KCGImagePropertyGroupTypeAlternate() uintptr

func KCGImagePropertyGroupTypeStereoPair

func KCGImagePropertyGroupTypeStereoPair() uintptr

func KCGImagePropertyGroups

func KCGImagePropertyGroups() uintptr

func KCGImagePropertyHEICSCanvasPixelHeight

func KCGImagePropertyHEICSCanvasPixelHeight() uintptr

func KCGImagePropertyHEICSCanvasPixelWidth

func KCGImagePropertyHEICSCanvasPixelWidth() uintptr

func KCGImagePropertyHEICSDelayTime

func KCGImagePropertyHEICSDelayTime() uintptr

func KCGImagePropertyHEICSDictionary

func KCGImagePropertyHEICSDictionary() uintptr

func KCGImagePropertyHEICSFrameInfoArray

func KCGImagePropertyHEICSFrameInfoArray() uintptr

func KCGImagePropertyHEICSLoopCount

func KCGImagePropertyHEICSLoopCount() uintptr

func KCGImagePropertyHEICSUnclampedDelayTime

func KCGImagePropertyHEICSUnclampedDelayTime() uintptr

func KCGImagePropertyHEIFDictionary

func KCGImagePropertyHEIFDictionary() uintptr

func KCGImagePropertyHasAlpha

func KCGImagePropertyHasAlpha() uintptr

func KCGImagePropertyHeight

func KCGImagePropertyHeight() uintptr

func KCGImagePropertyIPTCActionAdvised

func KCGImagePropertyIPTCActionAdvised() uintptr

func KCGImagePropertyIPTCByline

func KCGImagePropertyIPTCByline() uintptr

func KCGImagePropertyIPTCBylineTitle

func KCGImagePropertyIPTCBylineTitle() uintptr

func KCGImagePropertyIPTCCaptionAbstract

func KCGImagePropertyIPTCCaptionAbstract() uintptr

func KCGImagePropertyIPTCCategory

func KCGImagePropertyIPTCCategory() uintptr

func KCGImagePropertyIPTCCity

func KCGImagePropertyIPTCCity() uintptr

func KCGImagePropertyIPTCContact

func KCGImagePropertyIPTCContact() uintptr

func KCGImagePropertyIPTCContactInfoAddress

func KCGImagePropertyIPTCContactInfoAddress() uintptr

func KCGImagePropertyIPTCContactInfoCity

func KCGImagePropertyIPTCContactInfoCity() uintptr

func KCGImagePropertyIPTCContactInfoCountry

func KCGImagePropertyIPTCContactInfoCountry() uintptr

func KCGImagePropertyIPTCContactInfoEmails

func KCGImagePropertyIPTCContactInfoEmails() uintptr

func KCGImagePropertyIPTCContactInfoPhones

func KCGImagePropertyIPTCContactInfoPhones() uintptr

func KCGImagePropertyIPTCContactInfoPostalCode

func KCGImagePropertyIPTCContactInfoPostalCode() uintptr

func KCGImagePropertyIPTCContactInfoStateProvince

func KCGImagePropertyIPTCContactInfoStateProvince() uintptr

func KCGImagePropertyIPTCContactInfoWebURLs

func KCGImagePropertyIPTCContactInfoWebURLs() uintptr

func KCGImagePropertyIPTCContentLocationCode

func KCGImagePropertyIPTCContentLocationCode() uintptr

func KCGImagePropertyIPTCContentLocationName

func KCGImagePropertyIPTCContentLocationName() uintptr

func KCGImagePropertyIPTCCopyrightNotice

func KCGImagePropertyIPTCCopyrightNotice() uintptr

func KCGImagePropertyIPTCCountryPrimaryLocationCode

func KCGImagePropertyIPTCCountryPrimaryLocationCode() uintptr

func KCGImagePropertyIPTCCountryPrimaryLocationName

func KCGImagePropertyIPTCCountryPrimaryLocationName() uintptr

func KCGImagePropertyIPTCCreatorContactInfo

func KCGImagePropertyIPTCCreatorContactInfo() uintptr

func KCGImagePropertyIPTCCredit

func KCGImagePropertyIPTCCredit() uintptr

func KCGImagePropertyIPTCDateCreated

func KCGImagePropertyIPTCDateCreated() uintptr

func KCGImagePropertyIPTCDictionary

func KCGImagePropertyIPTCDictionary() uintptr

func KCGImagePropertyIPTCDigitalCreationDate

func KCGImagePropertyIPTCDigitalCreationDate() uintptr

func KCGImagePropertyIPTCDigitalCreationTime

func KCGImagePropertyIPTCDigitalCreationTime() uintptr

func KCGImagePropertyIPTCEditStatus

func KCGImagePropertyIPTCEditStatus() uintptr

func KCGImagePropertyIPTCEditorialUpdate

func KCGImagePropertyIPTCEditorialUpdate() uintptr

func KCGImagePropertyIPTCExpirationDate

func KCGImagePropertyIPTCExpirationDate() uintptr

func KCGImagePropertyIPTCExpirationTime

func KCGImagePropertyIPTCExpirationTime() uintptr

func KCGImagePropertyIPTCExtAboutCvTerm

func KCGImagePropertyIPTCExtAboutCvTerm() uintptr

func KCGImagePropertyIPTCExtAboutCvTermCvId

func KCGImagePropertyIPTCExtAboutCvTermCvId() uintptr

func KCGImagePropertyIPTCExtAboutCvTermId

func KCGImagePropertyIPTCExtAboutCvTermId() uintptr

func KCGImagePropertyIPTCExtAboutCvTermName

func KCGImagePropertyIPTCExtAboutCvTermName() uintptr

func KCGImagePropertyIPTCExtAboutCvTermRefinedAbout

func KCGImagePropertyIPTCExtAboutCvTermRefinedAbout() uintptr

func KCGImagePropertyIPTCExtAddlModelInfo

func KCGImagePropertyIPTCExtAddlModelInfo() uintptr

func KCGImagePropertyIPTCExtArtworkCircaDateCreated

func KCGImagePropertyIPTCExtArtworkCircaDateCreated() uintptr

func KCGImagePropertyIPTCExtArtworkContentDescription

func KCGImagePropertyIPTCExtArtworkContentDescription() uintptr

func KCGImagePropertyIPTCExtArtworkContributionDescription

func KCGImagePropertyIPTCExtArtworkContributionDescription() uintptr

func KCGImagePropertyIPTCExtArtworkCopyrightNotice

func KCGImagePropertyIPTCExtArtworkCopyrightNotice() uintptr

func KCGImagePropertyIPTCExtArtworkCopyrightOwnerID

func KCGImagePropertyIPTCExtArtworkCopyrightOwnerID() uintptr

func KCGImagePropertyIPTCExtArtworkCopyrightOwnerName

func KCGImagePropertyIPTCExtArtworkCopyrightOwnerName() uintptr

func KCGImagePropertyIPTCExtArtworkCreator

func KCGImagePropertyIPTCExtArtworkCreator() uintptr

func KCGImagePropertyIPTCExtArtworkCreatorID

func KCGImagePropertyIPTCExtArtworkCreatorID() uintptr

func KCGImagePropertyIPTCExtArtworkDateCreated

func KCGImagePropertyIPTCExtArtworkDateCreated() uintptr

func KCGImagePropertyIPTCExtArtworkLicensorID

func KCGImagePropertyIPTCExtArtworkLicensorID() uintptr

func KCGImagePropertyIPTCExtArtworkLicensorName

func KCGImagePropertyIPTCExtArtworkLicensorName() uintptr

func KCGImagePropertyIPTCExtArtworkOrObject

func KCGImagePropertyIPTCExtArtworkOrObject() uintptr

func KCGImagePropertyIPTCExtArtworkPhysicalDescription

func KCGImagePropertyIPTCExtArtworkPhysicalDescription() uintptr

func KCGImagePropertyIPTCExtArtworkSource

func KCGImagePropertyIPTCExtArtworkSource() uintptr

func KCGImagePropertyIPTCExtArtworkSourceInvURL

func KCGImagePropertyIPTCExtArtworkSourceInvURL() uintptr

func KCGImagePropertyIPTCExtArtworkSourceInventoryNo

func KCGImagePropertyIPTCExtArtworkSourceInventoryNo() uintptr

func KCGImagePropertyIPTCExtArtworkStylePeriod

func KCGImagePropertyIPTCExtArtworkStylePeriod() uintptr

func KCGImagePropertyIPTCExtArtworkTitle

func KCGImagePropertyIPTCExtArtworkTitle() uintptr

func KCGImagePropertyIPTCExtAudioBitrate

func KCGImagePropertyIPTCExtAudioBitrate() uintptr

func KCGImagePropertyIPTCExtAudioBitrateMode

func KCGImagePropertyIPTCExtAudioBitrateMode() uintptr

func KCGImagePropertyIPTCExtAudioChannelCount

func KCGImagePropertyIPTCExtAudioChannelCount() uintptr

func KCGImagePropertyIPTCExtCircaDateCreated

func KCGImagePropertyIPTCExtCircaDateCreated() uintptr

func KCGImagePropertyIPTCExtContainerFormat

func KCGImagePropertyIPTCExtContainerFormat() uintptr

func KCGImagePropertyIPTCExtContainerFormatIdentifier

func KCGImagePropertyIPTCExtContainerFormatIdentifier() uintptr

func KCGImagePropertyIPTCExtContainerFormatName

func KCGImagePropertyIPTCExtContainerFormatName() uintptr

func KCGImagePropertyIPTCExtContributor

func KCGImagePropertyIPTCExtContributor() uintptr

func KCGImagePropertyIPTCExtContributorIdentifier

func KCGImagePropertyIPTCExtContributorIdentifier() uintptr

func KCGImagePropertyIPTCExtContributorName

func KCGImagePropertyIPTCExtContributorName() uintptr

func KCGImagePropertyIPTCExtContributorRole

func KCGImagePropertyIPTCExtContributorRole() uintptr

func KCGImagePropertyIPTCExtControlledVocabularyTerm

func KCGImagePropertyIPTCExtControlledVocabularyTerm() uintptr

func KCGImagePropertyIPTCExtCopyrightYear

func KCGImagePropertyIPTCExtCopyrightYear() uintptr

func KCGImagePropertyIPTCExtCreator

func KCGImagePropertyIPTCExtCreator() uintptr

func KCGImagePropertyIPTCExtCreatorIdentifier

func KCGImagePropertyIPTCExtCreatorIdentifier() uintptr

func KCGImagePropertyIPTCExtCreatorName

func KCGImagePropertyIPTCExtCreatorName() uintptr

func KCGImagePropertyIPTCExtCreatorRole

func KCGImagePropertyIPTCExtCreatorRole() uintptr

func KCGImagePropertyIPTCExtDataOnScreen

func KCGImagePropertyIPTCExtDataOnScreen() uintptr

func KCGImagePropertyIPTCExtDataOnScreenRegion

func KCGImagePropertyIPTCExtDataOnScreenRegion() uintptr

func KCGImagePropertyIPTCExtDataOnScreenRegionD

func KCGImagePropertyIPTCExtDataOnScreenRegionD() uintptr

func KCGImagePropertyIPTCExtDataOnScreenRegionH

func KCGImagePropertyIPTCExtDataOnScreenRegionH() uintptr

func KCGImagePropertyIPTCExtDataOnScreenRegionText

func KCGImagePropertyIPTCExtDataOnScreenRegionText() uintptr

func KCGImagePropertyIPTCExtDataOnScreenRegionUnit

func KCGImagePropertyIPTCExtDataOnScreenRegionUnit() uintptr

func KCGImagePropertyIPTCExtDataOnScreenRegionW

func KCGImagePropertyIPTCExtDataOnScreenRegionW() uintptr

func KCGImagePropertyIPTCExtDataOnScreenRegionX

func KCGImagePropertyIPTCExtDataOnScreenRegionX() uintptr

func KCGImagePropertyIPTCExtDataOnScreenRegionY

func KCGImagePropertyIPTCExtDataOnScreenRegionY() uintptr

func KCGImagePropertyIPTCExtDigitalImageGUID

func KCGImagePropertyIPTCExtDigitalImageGUID() uintptr

func KCGImagePropertyIPTCExtDigitalSourceFileType

func KCGImagePropertyIPTCExtDigitalSourceFileType() uintptr

func KCGImagePropertyIPTCExtDigitalSourceType

func KCGImagePropertyIPTCExtDigitalSourceType() uintptr

func KCGImagePropertyIPTCExtDopesheet

func KCGImagePropertyIPTCExtDopesheet() uintptr
func KCGImagePropertyIPTCExtDopesheetLink() uintptr
func KCGImagePropertyIPTCExtDopesheetLinkLink() uintptr

func KCGImagePropertyIPTCExtDopesheetLinkLinkQualifier

func KCGImagePropertyIPTCExtDopesheetLinkLinkQualifier() uintptr

func KCGImagePropertyIPTCExtEmbdEncRightsExpr

func KCGImagePropertyIPTCExtEmbdEncRightsExpr() uintptr

func KCGImagePropertyIPTCExtEmbeddedEncodedRightsExpr

func KCGImagePropertyIPTCExtEmbeddedEncodedRightsExpr() uintptr

func KCGImagePropertyIPTCExtEmbeddedEncodedRightsExprLangID

func KCGImagePropertyIPTCExtEmbeddedEncodedRightsExprLangID() uintptr

func KCGImagePropertyIPTCExtEmbeddedEncodedRightsExprType

func KCGImagePropertyIPTCExtEmbeddedEncodedRightsExprType() uintptr

func KCGImagePropertyIPTCExtEpisode

func KCGImagePropertyIPTCExtEpisode() uintptr

func KCGImagePropertyIPTCExtEpisodeIdentifier

func KCGImagePropertyIPTCExtEpisodeIdentifier() uintptr

func KCGImagePropertyIPTCExtEpisodeName

func KCGImagePropertyIPTCExtEpisodeName() uintptr

func KCGImagePropertyIPTCExtEpisodeNumber

func KCGImagePropertyIPTCExtEpisodeNumber() uintptr

func KCGImagePropertyIPTCExtEvent

func KCGImagePropertyIPTCExtEvent() uintptr
func KCGImagePropertyIPTCExtExternalMetadataLink() uintptr

func KCGImagePropertyIPTCExtFeedIdentifier

func KCGImagePropertyIPTCExtFeedIdentifier() uintptr

func KCGImagePropertyIPTCExtGenre

func KCGImagePropertyIPTCExtGenre() uintptr

func KCGImagePropertyIPTCExtGenreCvId

func KCGImagePropertyIPTCExtGenreCvId() uintptr

func KCGImagePropertyIPTCExtGenreCvTermId

func KCGImagePropertyIPTCExtGenreCvTermId() uintptr

func KCGImagePropertyIPTCExtGenreCvTermName

func KCGImagePropertyIPTCExtGenreCvTermName() uintptr

func KCGImagePropertyIPTCExtGenreCvTermRefinedAbout

func KCGImagePropertyIPTCExtGenreCvTermRefinedAbout() uintptr

func KCGImagePropertyIPTCExtHeadline

func KCGImagePropertyIPTCExtHeadline() uintptr

func KCGImagePropertyIPTCExtIPTCLastEdited

func KCGImagePropertyIPTCExtIPTCLastEdited() uintptr

func KCGImagePropertyIPTCExtLinkedEncRightsExpr

func KCGImagePropertyIPTCExtLinkedEncRightsExpr() uintptr

func KCGImagePropertyIPTCExtLinkedEncodedRightsExpr

func KCGImagePropertyIPTCExtLinkedEncodedRightsExpr() uintptr

func KCGImagePropertyIPTCExtLinkedEncodedRightsExprLangID

func KCGImagePropertyIPTCExtLinkedEncodedRightsExprLangID() uintptr

func KCGImagePropertyIPTCExtLinkedEncodedRightsExprType

func KCGImagePropertyIPTCExtLinkedEncodedRightsExprType() uintptr

func KCGImagePropertyIPTCExtLocationCity

func KCGImagePropertyIPTCExtLocationCity() uintptr

func KCGImagePropertyIPTCExtLocationCountryCode

func KCGImagePropertyIPTCExtLocationCountryCode() uintptr

func KCGImagePropertyIPTCExtLocationCountryName

func KCGImagePropertyIPTCExtLocationCountryName() uintptr

func KCGImagePropertyIPTCExtLocationCreated

func KCGImagePropertyIPTCExtLocationCreated() uintptr

func KCGImagePropertyIPTCExtLocationGPSAltitude

func KCGImagePropertyIPTCExtLocationGPSAltitude() uintptr

func KCGImagePropertyIPTCExtLocationGPSLatitude

func KCGImagePropertyIPTCExtLocationGPSLatitude() uintptr

func KCGImagePropertyIPTCExtLocationGPSLongitude

func KCGImagePropertyIPTCExtLocationGPSLongitude() uintptr

func KCGImagePropertyIPTCExtLocationIdentifier

func KCGImagePropertyIPTCExtLocationIdentifier() uintptr

func KCGImagePropertyIPTCExtLocationLocationId

func KCGImagePropertyIPTCExtLocationLocationId() uintptr

func KCGImagePropertyIPTCExtLocationLocationName

func KCGImagePropertyIPTCExtLocationLocationName() uintptr

func KCGImagePropertyIPTCExtLocationProvinceState

func KCGImagePropertyIPTCExtLocationProvinceState() uintptr

func KCGImagePropertyIPTCExtLocationShown

func KCGImagePropertyIPTCExtLocationShown() uintptr

func KCGImagePropertyIPTCExtLocationSublocation

func KCGImagePropertyIPTCExtLocationSublocation() uintptr

func KCGImagePropertyIPTCExtLocationWorldRegion

func KCGImagePropertyIPTCExtLocationWorldRegion() uintptr

func KCGImagePropertyIPTCExtMaxAvailHeight

func KCGImagePropertyIPTCExtMaxAvailHeight() uintptr

func KCGImagePropertyIPTCExtMaxAvailWidth

func KCGImagePropertyIPTCExtMaxAvailWidth() uintptr

func KCGImagePropertyIPTCExtModelAge

func KCGImagePropertyIPTCExtModelAge() uintptr

func KCGImagePropertyIPTCExtOrganisationInImageCode

func KCGImagePropertyIPTCExtOrganisationInImageCode() uintptr

func KCGImagePropertyIPTCExtOrganisationInImageName

func KCGImagePropertyIPTCExtOrganisationInImageName() uintptr

func KCGImagePropertyIPTCExtPersonHeard

func KCGImagePropertyIPTCExtPersonHeard() uintptr

func KCGImagePropertyIPTCExtPersonHeardIdentifier

func KCGImagePropertyIPTCExtPersonHeardIdentifier() uintptr

func KCGImagePropertyIPTCExtPersonHeardName

func KCGImagePropertyIPTCExtPersonHeardName() uintptr

func KCGImagePropertyIPTCExtPersonInImage

func KCGImagePropertyIPTCExtPersonInImage() uintptr

func KCGImagePropertyIPTCExtPersonInImageCharacteristic

func KCGImagePropertyIPTCExtPersonInImageCharacteristic() uintptr

func KCGImagePropertyIPTCExtPersonInImageCvTermCvId

func KCGImagePropertyIPTCExtPersonInImageCvTermCvId() uintptr

func KCGImagePropertyIPTCExtPersonInImageCvTermId

func KCGImagePropertyIPTCExtPersonInImageCvTermId() uintptr

func KCGImagePropertyIPTCExtPersonInImageCvTermName

func KCGImagePropertyIPTCExtPersonInImageCvTermName() uintptr

func KCGImagePropertyIPTCExtPersonInImageCvTermRefinedAbout

func KCGImagePropertyIPTCExtPersonInImageCvTermRefinedAbout() uintptr

func KCGImagePropertyIPTCExtPersonInImageDescription

func KCGImagePropertyIPTCExtPersonInImageDescription() uintptr

func KCGImagePropertyIPTCExtPersonInImageId

func KCGImagePropertyIPTCExtPersonInImageId() uintptr

func KCGImagePropertyIPTCExtPersonInImageName

func KCGImagePropertyIPTCExtPersonInImageName() uintptr

func KCGImagePropertyIPTCExtPersonInImageWDetails

func KCGImagePropertyIPTCExtPersonInImageWDetails() uintptr

func KCGImagePropertyIPTCExtProductInImage

func KCGImagePropertyIPTCExtProductInImage() uintptr

func KCGImagePropertyIPTCExtProductInImageDescription

func KCGImagePropertyIPTCExtProductInImageDescription() uintptr

func KCGImagePropertyIPTCExtProductInImageGTIN

func KCGImagePropertyIPTCExtProductInImageGTIN() uintptr

func KCGImagePropertyIPTCExtProductInImageName

func KCGImagePropertyIPTCExtProductInImageName() uintptr

func KCGImagePropertyIPTCExtPublicationEvent

func KCGImagePropertyIPTCExtPublicationEvent() uintptr

func KCGImagePropertyIPTCExtPublicationEventDate

func KCGImagePropertyIPTCExtPublicationEventDate() uintptr

func KCGImagePropertyIPTCExtPublicationEventIdentifier

func KCGImagePropertyIPTCExtPublicationEventIdentifier() uintptr

func KCGImagePropertyIPTCExtPublicationEventName

func KCGImagePropertyIPTCExtPublicationEventName() uintptr

func KCGImagePropertyIPTCExtRating

func KCGImagePropertyIPTCExtRating() uintptr

func KCGImagePropertyIPTCExtRatingRatingRegion

func KCGImagePropertyIPTCExtRatingRatingRegion() uintptr

func KCGImagePropertyIPTCExtRatingRegionCity

func KCGImagePropertyIPTCExtRatingRegionCity() uintptr

func KCGImagePropertyIPTCExtRatingRegionCountryCode

func KCGImagePropertyIPTCExtRatingRegionCountryCode() uintptr

func KCGImagePropertyIPTCExtRatingRegionCountryName

func KCGImagePropertyIPTCExtRatingRegionCountryName() uintptr

func KCGImagePropertyIPTCExtRatingRegionGPSAltitude

func KCGImagePropertyIPTCExtRatingRegionGPSAltitude() uintptr

func KCGImagePropertyIPTCExtRatingRegionGPSLatitude

func KCGImagePropertyIPTCExtRatingRegionGPSLatitude() uintptr

func KCGImagePropertyIPTCExtRatingRegionGPSLongitude

func KCGImagePropertyIPTCExtRatingRegionGPSLongitude() uintptr

func KCGImagePropertyIPTCExtRatingRegionIdentifier

func KCGImagePropertyIPTCExtRatingRegionIdentifier() uintptr

func KCGImagePropertyIPTCExtRatingRegionLocationId

func KCGImagePropertyIPTCExtRatingRegionLocationId() uintptr

func KCGImagePropertyIPTCExtRatingRegionLocationName

func KCGImagePropertyIPTCExtRatingRegionLocationName() uintptr

func KCGImagePropertyIPTCExtRatingRegionProvinceState

func KCGImagePropertyIPTCExtRatingRegionProvinceState() uintptr

func KCGImagePropertyIPTCExtRatingRegionSublocation

func KCGImagePropertyIPTCExtRatingRegionSublocation() uintptr

func KCGImagePropertyIPTCExtRatingRegionWorldRegion

func KCGImagePropertyIPTCExtRatingRegionWorldRegion() uintptr

func KCGImagePropertyIPTCExtRatingScaleMaxValue

func KCGImagePropertyIPTCExtRatingScaleMaxValue() uintptr

func KCGImagePropertyIPTCExtRatingScaleMinValue

func KCGImagePropertyIPTCExtRatingScaleMinValue() uintptr
func KCGImagePropertyIPTCExtRatingSourceLink() uintptr

func KCGImagePropertyIPTCExtRatingValue

func KCGImagePropertyIPTCExtRatingValue() uintptr
func KCGImagePropertyIPTCExtRatingValueLogoLink() uintptr

func KCGImagePropertyIPTCExtRegistryEntryRole

func KCGImagePropertyIPTCExtRegistryEntryRole() uintptr

func KCGImagePropertyIPTCExtRegistryID

func KCGImagePropertyIPTCExtRegistryID() uintptr

func KCGImagePropertyIPTCExtRegistryItemID

func KCGImagePropertyIPTCExtRegistryItemID() uintptr

func KCGImagePropertyIPTCExtRegistryOrganisationID

func KCGImagePropertyIPTCExtRegistryOrganisationID() uintptr

func KCGImagePropertyIPTCExtReleaseReady

func KCGImagePropertyIPTCExtReleaseReady() uintptr

func KCGImagePropertyIPTCExtSeason

func KCGImagePropertyIPTCExtSeason() uintptr

func KCGImagePropertyIPTCExtSeasonIdentifier

func KCGImagePropertyIPTCExtSeasonIdentifier() uintptr

func KCGImagePropertyIPTCExtSeasonName

func KCGImagePropertyIPTCExtSeasonName() uintptr

func KCGImagePropertyIPTCExtSeasonNumber

func KCGImagePropertyIPTCExtSeasonNumber() uintptr

func KCGImagePropertyIPTCExtSeries

func KCGImagePropertyIPTCExtSeries() uintptr

func KCGImagePropertyIPTCExtSeriesIdentifier

func KCGImagePropertyIPTCExtSeriesIdentifier() uintptr

func KCGImagePropertyIPTCExtSeriesName

func KCGImagePropertyIPTCExtSeriesName() uintptr

func KCGImagePropertyIPTCExtShownEvent

func KCGImagePropertyIPTCExtShownEvent() uintptr

func KCGImagePropertyIPTCExtShownEventIdentifier

func KCGImagePropertyIPTCExtShownEventIdentifier() uintptr

func KCGImagePropertyIPTCExtShownEventName

func KCGImagePropertyIPTCExtShownEventName() uintptr

func KCGImagePropertyIPTCExtStorylineIdentifier

func KCGImagePropertyIPTCExtStorylineIdentifier() uintptr

func KCGImagePropertyIPTCExtStreamReady

func KCGImagePropertyIPTCExtStreamReady() uintptr

func KCGImagePropertyIPTCExtStylePeriod

func KCGImagePropertyIPTCExtStylePeriod() uintptr

func KCGImagePropertyIPTCExtSupplyChainSource

func KCGImagePropertyIPTCExtSupplyChainSource() uintptr

func KCGImagePropertyIPTCExtSupplyChainSourceIdentifier

func KCGImagePropertyIPTCExtSupplyChainSourceIdentifier() uintptr

func KCGImagePropertyIPTCExtSupplyChainSourceName

func KCGImagePropertyIPTCExtSupplyChainSourceName() uintptr

func KCGImagePropertyIPTCExtTemporalCoverage

func KCGImagePropertyIPTCExtTemporalCoverage() uintptr

func KCGImagePropertyIPTCExtTemporalCoverageFrom

func KCGImagePropertyIPTCExtTemporalCoverageFrom() uintptr

func KCGImagePropertyIPTCExtTemporalCoverageTo

func KCGImagePropertyIPTCExtTemporalCoverageTo() uintptr

func KCGImagePropertyIPTCExtTranscript

func KCGImagePropertyIPTCExtTranscript() uintptr
func KCGImagePropertyIPTCExtTranscriptLink() uintptr
func KCGImagePropertyIPTCExtTranscriptLinkLink() uintptr

func KCGImagePropertyIPTCExtTranscriptLinkLinkQualifier

func KCGImagePropertyIPTCExtTranscriptLinkLinkQualifier() uintptr

func KCGImagePropertyIPTCExtVideoBitrate

func KCGImagePropertyIPTCExtVideoBitrate() uintptr

func KCGImagePropertyIPTCExtVideoBitrateMode

func KCGImagePropertyIPTCExtVideoBitrateMode() uintptr

func KCGImagePropertyIPTCExtVideoDisplayAspectRatio

func KCGImagePropertyIPTCExtVideoDisplayAspectRatio() uintptr

func KCGImagePropertyIPTCExtVideoEncodingProfile

func KCGImagePropertyIPTCExtVideoEncodingProfile() uintptr

func KCGImagePropertyIPTCExtVideoShotType

func KCGImagePropertyIPTCExtVideoShotType() uintptr

func KCGImagePropertyIPTCExtVideoShotTypeIdentifier

func KCGImagePropertyIPTCExtVideoShotTypeIdentifier() uintptr

func KCGImagePropertyIPTCExtVideoShotTypeName

func KCGImagePropertyIPTCExtVideoShotTypeName() uintptr

func KCGImagePropertyIPTCExtVideoStreamsCount

func KCGImagePropertyIPTCExtVideoStreamsCount() uintptr

func KCGImagePropertyIPTCExtVisualColor

func KCGImagePropertyIPTCExtVisualColor() uintptr

func KCGImagePropertyIPTCExtWorkflowTag

func KCGImagePropertyIPTCExtWorkflowTag() uintptr

func KCGImagePropertyIPTCExtWorkflowTagCvId

func KCGImagePropertyIPTCExtWorkflowTagCvId() uintptr

func KCGImagePropertyIPTCExtWorkflowTagCvTermId

func KCGImagePropertyIPTCExtWorkflowTagCvTermId() uintptr

func KCGImagePropertyIPTCExtWorkflowTagCvTermName

func KCGImagePropertyIPTCExtWorkflowTagCvTermName() uintptr

func KCGImagePropertyIPTCExtWorkflowTagCvTermRefinedAbout

func KCGImagePropertyIPTCExtWorkflowTagCvTermRefinedAbout() uintptr

func KCGImagePropertyIPTCFixtureIdentifier

func KCGImagePropertyIPTCFixtureIdentifier() uintptr

func KCGImagePropertyIPTCHeadline

func KCGImagePropertyIPTCHeadline() uintptr

func KCGImagePropertyIPTCImageOrientation

func KCGImagePropertyIPTCImageOrientation() uintptr

func KCGImagePropertyIPTCImageType

func KCGImagePropertyIPTCImageType() uintptr

func KCGImagePropertyIPTCKeywords

func KCGImagePropertyIPTCKeywords() uintptr

func KCGImagePropertyIPTCLanguageIdentifier

func KCGImagePropertyIPTCLanguageIdentifier() uintptr

func KCGImagePropertyIPTCObjectAttributeReference

func KCGImagePropertyIPTCObjectAttributeReference() uintptr

func KCGImagePropertyIPTCObjectCycle

func KCGImagePropertyIPTCObjectCycle() uintptr

func KCGImagePropertyIPTCObjectName

func KCGImagePropertyIPTCObjectName() uintptr

func KCGImagePropertyIPTCObjectTypeReference

func KCGImagePropertyIPTCObjectTypeReference() uintptr

func KCGImagePropertyIPTCOriginalTransmissionReference

func KCGImagePropertyIPTCOriginalTransmissionReference() uintptr

func KCGImagePropertyIPTCOriginatingProgram

func KCGImagePropertyIPTCOriginatingProgram() uintptr

func KCGImagePropertyIPTCProgramVersion

func KCGImagePropertyIPTCProgramVersion() uintptr

func KCGImagePropertyIPTCProvinceState

func KCGImagePropertyIPTCProvinceState() uintptr

func KCGImagePropertyIPTCReferenceDate

func KCGImagePropertyIPTCReferenceDate() uintptr

func KCGImagePropertyIPTCReferenceNumber

func KCGImagePropertyIPTCReferenceNumber() uintptr

func KCGImagePropertyIPTCReferenceService

func KCGImagePropertyIPTCReferenceService() uintptr

func KCGImagePropertyIPTCReleaseDate

func KCGImagePropertyIPTCReleaseDate() uintptr

func KCGImagePropertyIPTCReleaseTime

func KCGImagePropertyIPTCReleaseTime() uintptr

func KCGImagePropertyIPTCRightsUsageTerms

func KCGImagePropertyIPTCRightsUsageTerms() uintptr

func KCGImagePropertyIPTCScene

func KCGImagePropertyIPTCScene() uintptr

func KCGImagePropertyIPTCSource

func KCGImagePropertyIPTCSource() uintptr

func KCGImagePropertyIPTCSpecialInstructions

func KCGImagePropertyIPTCSpecialInstructions() uintptr

func KCGImagePropertyIPTCStarRating

func KCGImagePropertyIPTCStarRating() uintptr

func KCGImagePropertyIPTCSubLocation

func KCGImagePropertyIPTCSubLocation() uintptr

func KCGImagePropertyIPTCSubjectReference

func KCGImagePropertyIPTCSubjectReference() uintptr

func KCGImagePropertyIPTCSupplementalCategory

func KCGImagePropertyIPTCSupplementalCategory() uintptr

func KCGImagePropertyIPTCTimeCreated

func KCGImagePropertyIPTCTimeCreated() uintptr

func KCGImagePropertyIPTCUrgency

func KCGImagePropertyIPTCUrgency() uintptr

func KCGImagePropertyIPTCWriterEditor

func KCGImagePropertyIPTCWriterEditor() uintptr

func KCGImagePropertyImageCount

func KCGImagePropertyImageCount() uintptr

func KCGImagePropertyImageIndex

func KCGImagePropertyImageIndex() uintptr

func KCGImagePropertyImages

func KCGImagePropertyImages() uintptr

func KCGImagePropertyIsFloat

func KCGImagePropertyIsFloat() uintptr

func KCGImagePropertyIsIndexed

func KCGImagePropertyIsIndexed() uintptr

func KCGImagePropertyJFIFDensityUnit

func KCGImagePropertyJFIFDensityUnit() uintptr

func KCGImagePropertyJFIFDictionary

func KCGImagePropertyJFIFDictionary() uintptr

func KCGImagePropertyJFIFIsProgressive

func KCGImagePropertyJFIFIsProgressive() uintptr

func KCGImagePropertyJFIFVersion

func KCGImagePropertyJFIFVersion() uintptr

func KCGImagePropertyJFIFXDensity

func KCGImagePropertyJFIFXDensity() uintptr

func KCGImagePropertyJFIFYDensity

func KCGImagePropertyJFIFYDensity() uintptr

func KCGImagePropertyMakerAppleDictionary

func KCGImagePropertyMakerAppleDictionary() uintptr

func KCGImagePropertyMakerCanonAspectRatioInfo

func KCGImagePropertyMakerCanonAspectRatioInfo() uintptr

func KCGImagePropertyMakerCanonCameraSerialNumber

func KCGImagePropertyMakerCanonCameraSerialNumber() uintptr

func KCGImagePropertyMakerCanonContinuousDrive

func KCGImagePropertyMakerCanonContinuousDrive() uintptr

func KCGImagePropertyMakerCanonDictionary

func KCGImagePropertyMakerCanonDictionary() uintptr

func KCGImagePropertyMakerCanonFirmware

func KCGImagePropertyMakerCanonFirmware() uintptr

func KCGImagePropertyMakerCanonFlashExposureComp

func KCGImagePropertyMakerCanonFlashExposureComp() uintptr

func KCGImagePropertyMakerCanonImageSerialNumber

func KCGImagePropertyMakerCanonImageSerialNumber() uintptr

func KCGImagePropertyMakerCanonLensModel

func KCGImagePropertyMakerCanonLensModel() uintptr

func KCGImagePropertyMakerCanonOwnerName

func KCGImagePropertyMakerCanonOwnerName() uintptr

func KCGImagePropertyMakerFujiDictionary

func KCGImagePropertyMakerFujiDictionary() uintptr

func KCGImagePropertyMakerMinoltaDictionary

func KCGImagePropertyMakerMinoltaDictionary() uintptr

func KCGImagePropertyMakerNikonCameraSerialNumber

func KCGImagePropertyMakerNikonCameraSerialNumber() uintptr

func KCGImagePropertyMakerNikonColorMode

func KCGImagePropertyMakerNikonColorMode() uintptr

func KCGImagePropertyMakerNikonDictionary

func KCGImagePropertyMakerNikonDictionary() uintptr

func KCGImagePropertyMakerNikonDigitalZoom

func KCGImagePropertyMakerNikonDigitalZoom() uintptr

func KCGImagePropertyMakerNikonFlashExposureComp

func KCGImagePropertyMakerNikonFlashExposureComp() uintptr

func KCGImagePropertyMakerNikonFlashSetting

func KCGImagePropertyMakerNikonFlashSetting() uintptr

func KCGImagePropertyMakerNikonFocusDistance

func KCGImagePropertyMakerNikonFocusDistance() uintptr

func KCGImagePropertyMakerNikonFocusMode

func KCGImagePropertyMakerNikonFocusMode() uintptr

func KCGImagePropertyMakerNikonISOSelection

func KCGImagePropertyMakerNikonISOSelection() uintptr

func KCGImagePropertyMakerNikonISOSetting

func KCGImagePropertyMakerNikonISOSetting() uintptr

func KCGImagePropertyMakerNikonImageAdjustment

func KCGImagePropertyMakerNikonImageAdjustment() uintptr

func KCGImagePropertyMakerNikonLensAdapter

func KCGImagePropertyMakerNikonLensAdapter() uintptr

func KCGImagePropertyMakerNikonLensInfo

func KCGImagePropertyMakerNikonLensInfo() uintptr

func KCGImagePropertyMakerNikonLensType

func KCGImagePropertyMakerNikonLensType() uintptr

func KCGImagePropertyMakerNikonQuality

func KCGImagePropertyMakerNikonQuality() uintptr

func KCGImagePropertyMakerNikonSharpenMode

func KCGImagePropertyMakerNikonSharpenMode() uintptr

func KCGImagePropertyMakerNikonShootingMode

func KCGImagePropertyMakerNikonShootingMode() uintptr

func KCGImagePropertyMakerNikonShutterCount

func KCGImagePropertyMakerNikonShutterCount() uintptr

func KCGImagePropertyMakerNikonWhiteBalanceMode

func KCGImagePropertyMakerNikonWhiteBalanceMode() uintptr

func KCGImagePropertyMakerOlympusDictionary

func KCGImagePropertyMakerOlympusDictionary() uintptr

func KCGImagePropertyMakerPentaxDictionary

func KCGImagePropertyMakerPentaxDictionary() uintptr

func KCGImagePropertyNamedColorSpace

func KCGImagePropertyNamedColorSpace() uintptr

func KCGImagePropertyOpenEXRAspectRatio

func KCGImagePropertyOpenEXRAspectRatio() uintptr

func KCGImagePropertyOpenEXRCompression

func KCGImagePropertyOpenEXRCompression() uintptr

func KCGImagePropertyOpenEXRDictionary

func KCGImagePropertyOpenEXRDictionary() uintptr

func KCGImagePropertyOrientation

func KCGImagePropertyOrientation() uintptr

func KCGImagePropertyPNGAuthor

func KCGImagePropertyPNGAuthor() uintptr

func KCGImagePropertyPNGChromaticities

func KCGImagePropertyPNGChromaticities() uintptr

func KCGImagePropertyPNGComment

func KCGImagePropertyPNGComment() uintptr

func KCGImagePropertyPNGCompressionFilter

func KCGImagePropertyPNGCompressionFilter() uintptr

func KCGImagePropertyPNGCopyright

func KCGImagePropertyPNGCopyright() uintptr

func KCGImagePropertyPNGCreationTime

func KCGImagePropertyPNGCreationTime() uintptr

func KCGImagePropertyPNGDescription

func KCGImagePropertyPNGDescription() uintptr

func KCGImagePropertyPNGDictionary

func KCGImagePropertyPNGDictionary() uintptr

func KCGImagePropertyPNGDisclaimer

func KCGImagePropertyPNGDisclaimer() uintptr

func KCGImagePropertyPNGGamma

func KCGImagePropertyPNGGamma() uintptr

func KCGImagePropertyPNGInterlaceType

func KCGImagePropertyPNGInterlaceType() uintptr

func KCGImagePropertyPNGModificationTime

func KCGImagePropertyPNGModificationTime() uintptr

func KCGImagePropertyPNGPixelsAspectRatio

func KCGImagePropertyPNGPixelsAspectRatio() uintptr

func KCGImagePropertyPNGSoftware

func KCGImagePropertyPNGSoftware() uintptr

func KCGImagePropertyPNGSource

func KCGImagePropertyPNGSource() uintptr

func KCGImagePropertyPNGTitle

func KCGImagePropertyPNGTitle() uintptr

func KCGImagePropertyPNGTransparency

func KCGImagePropertyPNGTransparency() uintptr

func KCGImagePropertyPNGWarning

func KCGImagePropertyPNGWarning() uintptr

func KCGImagePropertyPNGXPixelsPerMeter

func KCGImagePropertyPNGXPixelsPerMeter() uintptr

func KCGImagePropertyPNGYPixelsPerMeter

func KCGImagePropertyPNGYPixelsPerMeter() uintptr

func KCGImagePropertyPNGsRGBIntent

func KCGImagePropertyPNGsRGBIntent() uintptr

func KCGImagePropertyPVREncoder

func KCGImagePropertyPVREncoder() uintptr

func KCGImagePropertyPixelFormat

func KCGImagePropertyPixelFormat() uintptr

func KCGImagePropertyPixelHeight

func KCGImagePropertyPixelHeight() uintptr

func KCGImagePropertyPixelWidth

func KCGImagePropertyPixelWidth() uintptr

func KCGImagePropertyPrimaryImage

func KCGImagePropertyPrimaryImage() uintptr

func KCGImagePropertyProfileName

func KCGImagePropertyProfileName() uintptr

func KCGImagePropertyRawDictionary

func KCGImagePropertyRawDictionary() uintptr

func KCGImagePropertyTGACompression

func KCGImagePropertyTGACompression() uintptr

func KCGImagePropertyTGADictionary

func KCGImagePropertyTGADictionary() uintptr

func KCGImagePropertyTIFFArtist

func KCGImagePropertyTIFFArtist() uintptr

func KCGImagePropertyTIFFCompression

func KCGImagePropertyTIFFCompression() uintptr

func KCGImagePropertyTIFFCopyright

func KCGImagePropertyTIFFCopyright() uintptr

func KCGImagePropertyTIFFDateTime

func KCGImagePropertyTIFFDateTime() uintptr

func KCGImagePropertyTIFFDictionary

func KCGImagePropertyTIFFDictionary() uintptr

func KCGImagePropertyTIFFDocumentName

func KCGImagePropertyTIFFDocumentName() uintptr

func KCGImagePropertyTIFFHostComputer

func KCGImagePropertyTIFFHostComputer() uintptr

func KCGImagePropertyTIFFImageDescription

func KCGImagePropertyTIFFImageDescription() uintptr

func KCGImagePropertyTIFFMake

func KCGImagePropertyTIFFMake() uintptr

func KCGImagePropertyTIFFModel

func KCGImagePropertyTIFFModel() uintptr

func KCGImagePropertyTIFFOrientation

func KCGImagePropertyTIFFOrientation() uintptr

func KCGImagePropertyTIFFPhotometricInterpretation

func KCGImagePropertyTIFFPhotometricInterpretation() uintptr

func KCGImagePropertyTIFFPrimaryChromaticities

func KCGImagePropertyTIFFPrimaryChromaticities() uintptr

func KCGImagePropertyTIFFResolutionUnit

func KCGImagePropertyTIFFResolutionUnit() uintptr

func KCGImagePropertyTIFFSoftware

func KCGImagePropertyTIFFSoftware() uintptr

func KCGImagePropertyTIFFTileLength

func KCGImagePropertyTIFFTileLength() uintptr

func KCGImagePropertyTIFFTileWidth

func KCGImagePropertyTIFFTileWidth() uintptr

func KCGImagePropertyTIFFTransferFunction

func KCGImagePropertyTIFFTransferFunction() uintptr

func KCGImagePropertyTIFFWhitePoint

func KCGImagePropertyTIFFWhitePoint() uintptr

func KCGImagePropertyTIFFXPosition

func KCGImagePropertyTIFFXPosition() uintptr

func KCGImagePropertyTIFFXResolution

func KCGImagePropertyTIFFXResolution() uintptr

func KCGImagePropertyTIFFYPosition

func KCGImagePropertyTIFFYPosition() uintptr

func KCGImagePropertyTIFFYResolution

func KCGImagePropertyTIFFYResolution() uintptr

func KCGImagePropertyThumbnailImages

func KCGImagePropertyThumbnailImages() uintptr

func KCGImagePropertyWebPCanvasPixelHeight

func KCGImagePropertyWebPCanvasPixelHeight() uintptr

func KCGImagePropertyWebPCanvasPixelWidth

func KCGImagePropertyWebPCanvasPixelWidth() uintptr

func KCGImagePropertyWebPDelayTime

func KCGImagePropertyWebPDelayTime() uintptr

func KCGImagePropertyWebPDictionary

func KCGImagePropertyWebPDictionary() uintptr

func KCGImagePropertyWebPFrameInfoArray

func KCGImagePropertyWebPFrameInfoArray() uintptr

func KCGImagePropertyWebPLoopCount

func KCGImagePropertyWebPLoopCount() uintptr

func KCGImagePropertyWebPUnclampedDelayTime

func KCGImagePropertyWebPUnclampedDelayTime() uintptr

func KCGImagePropertyWidth

func KCGImagePropertyWidth() uintptr

func KCGImageProviderPreferredTileHeight

func KCGImageProviderPreferredTileHeight() uintptr

func KCGImageProviderPreferredTileWidth

func KCGImageProviderPreferredTileWidth() uintptr

func KCGImageSourceCreateThumbnailFromImageAlways

func KCGImageSourceCreateThumbnailFromImageAlways() uintptr

func KCGImageSourceCreateThumbnailFromImageIfAbsent

func KCGImageSourceCreateThumbnailFromImageIfAbsent() uintptr

func KCGImageSourceCreateThumbnailWithTransform

func KCGImageSourceCreateThumbnailWithTransform() uintptr

func KCGImageSourceDecodeRequest

func KCGImageSourceDecodeRequest() uintptr

func KCGImageSourceDecodeRequestOptions

func KCGImageSourceDecodeRequestOptions() uintptr

func KCGImageSourceDecodeToHDR

func KCGImageSourceDecodeToHDR() uintptr

func KCGImageSourceDecodeToSDR

func KCGImageSourceDecodeToSDR() uintptr

func KCGImageSourceGenerateImageSpecificLumaScaling

func KCGImageSourceGenerateImageSpecificLumaScaling() uintptr

func KCGImageSourceShouldAllowFloat

func KCGImageSourceShouldAllowFloat() uintptr

func KCGImageSourceShouldCache

func KCGImageSourceShouldCache() uintptr

func KCGImageSourceShouldCacheImmediately

func KCGImageSourceShouldCacheImmediately() uintptr

func KCGImageSourceSubsampleFactor

func KCGImageSourceSubsampleFactor() uintptr

func KCGImageSourceThumbnailMaxPixelSize

func KCGImageSourceThumbnailMaxPixelSize() uintptr

func KCGImageSourceTypeIdentifierHint

func KCGImageSourceTypeIdentifierHint() uintptr

func KIIOCameraExtrinsics_CoordinateSystemID

func KIIOCameraExtrinsics_CoordinateSystemID() uintptr

func KIIOCameraExtrinsics_Position

func KIIOCameraExtrinsics_Position() uintptr

func KIIOCameraExtrinsics_Rotation

func KIIOCameraExtrinsics_Rotation() uintptr

func KIIOCameraModelType_GenericPinhole

func KIIOCameraModelType_GenericPinhole() uintptr

func KIIOCameraModelType_SimplifiedPinhole

func KIIOCameraModelType_SimplifiedPinhole() uintptr

func KIIOCameraModel_Intrinsics

func KIIOCameraModel_Intrinsics() uintptr

func KIIOCameraModel_ModelType

func KIIOCameraModel_ModelType() uintptr

func KIIOMetadata_CameraExtrinsicsKey

func KIIOMetadata_CameraExtrinsicsKey() uintptr

func KIIOMetadata_CameraModelKey

func KIIOMetadata_CameraModelKey() uintptr

func KIIOMonoscopicImageLocation_Center

func KIIOMonoscopicImageLocation_Center() uintptr

func KIIOMonoscopicImageLocation_Left

func KIIOMonoscopicImageLocation_Left() uintptr

func KIIOMonoscopicImageLocation_Right

func KIIOMonoscopicImageLocation_Right() uintptr

func KIIOMonoscopicImageLocation_Unspecified

func KIIOMonoscopicImageLocation_Unspecified() uintptr

func KIIOStereoAggressors_Severity

func KIIOStereoAggressors_Severity() uintptr

func KIIOStereoAggressors_SubTypeURI

func KIIOStereoAggressors_SubTypeURI() uintptr

func KIIOStereoAggressors_Type

func KIIOStereoAggressors_Type() uintptr

func SymbolAvailable

func SymbolAvailable(symbol string) bool

SymbolAvailable reports whether the named C symbol was bound when the library loaded. Calling a generated wrapper whose symbol is unavailable dereferences a nil function variable and panics.

Types

type Acl_entry_id_t

type Acl_entry_id_t int64
const (
	ACL_FIRST_ENTRY Acl_entry_id_t = 0
	ACL_NEXT_ENTRY  Acl_entry_id_t = -1
	ACL_LAST_ENTRY  Acl_entry_id_t = -2
)

func (Acl_entry_id_t) String

func (e Acl_entry_id_t) String() string

type Acl_flag_t

type Acl_flag_t int64
const (
	ACL_FLAG_DEFER_INHERIT      Acl_flag_t = 1
	ACL_FLAG_NO_INHERIT         Acl_flag_t = 131072
	ACL_ENTRY_INHERITED         Acl_flag_t = 16
	ACL_ENTRY_FILE_INHERIT      Acl_flag_t = 32
	ACL_ENTRY_DIRECTORY_INHERIT Acl_flag_t = 64
	ACL_ENTRY_LIMIT_INHERIT     Acl_flag_t = 128
	ACL_ENTRY_ONLY_INHERIT      Acl_flag_t = 256
)

func (Acl_flag_t) String

func (e Acl_flag_t) String() string

type Acl_perm_t

type Acl_perm_t int64
const (
	ACL_READ_DATA           Acl_perm_t = 2
	ACL_LIST_DIRECTORY      Acl_perm_t = 2
	ACL_WRITE_DATA          Acl_perm_t = 4
	ACL_ADD_FILE            Acl_perm_t = 4
	ACL_EXECUTE             Acl_perm_t = 8
	ACL_SEARCH              Acl_perm_t = 8
	ACL_DELETE              Acl_perm_t = 16
	ACL_APPEND_DATA         Acl_perm_t = 32
	ACL_ADD_SUBDIRECTORY    Acl_perm_t = 32
	ACL_DELETE_CHILD        Acl_perm_t = 64
	ACL_READ_ATTRIBUTES     Acl_perm_t = 128
	ACL_WRITE_ATTRIBUTES    Acl_perm_t = 256
	ACL_READ_EXTATTRIBUTES  Acl_perm_t = 512
	ACL_WRITE_EXTATTRIBUTES Acl_perm_t = 1024
	ACL_READ_SECURITY       Acl_perm_t = 2048
	ACL_WRITE_SECURITY      Acl_perm_t = 4096
	ACL_CHANGE_OWNER        Acl_perm_t = 8192
	ACL_SYNCHRONIZE         Acl_perm_t = 1048576
)

func (Acl_perm_t) String

func (e Acl_perm_t) String() string

type Acl_tag_t

type Acl_tag_t int64
const (
	ACL_UNDEFINED_TAG  Acl_tag_t = 0
	ACL_EXTENDED_ALLOW Acl_tag_t = 1
	ACL_EXTENDED_DENY  Acl_tag_t = 2
)

func (Acl_tag_t) String

func (e Acl_tag_t) String() string

type Acl_type_t

type Acl_type_t int64
const (
	ACL_TYPE_EXTENDED Acl_type_t = 256
	ACL_TYPE_ACCESS   Acl_type_t = 0
	ACL_TYPE_DEFAULT  Acl_type_t = 1
	ACL_TYPE_AFS      Acl_type_t = 2
	ACL_TYPE_CODA     Acl_type_t = 3
	ACL_TYPE_NTFS     Acl_type_t = 4
	ACL_TYPE_NWFS     Acl_type_t = 5
)

func (Acl_type_t) String

func (e Acl_type_t) String() string

type CGImageAnimationStatus

type CGImageAnimationStatus int64
const (
	KCGImageAnimationStatus_ParameterError       CGImageAnimationStatus = -22140
	KCGImageAnimationStatus_CorruptInputImage    CGImageAnimationStatus = -22141
	KCGImageAnimationStatus_UnsupportedFormat    CGImageAnimationStatus = -22142
	KCGImageAnimationStatus_IncompleteInputImage CGImageAnimationStatus = -22143
	KCGImageAnimationStatus_AllocationFailure    CGImageAnimationStatus = -22144
)

func (CGImageAnimationStatus) String

func (e CGImageAnimationStatus) String() string

type CGImageDestination

type CGImageDestination struct{}

CGImageDestination is an opaque type.

type CGImageMetadata

type CGImageMetadata struct{}

@typedef CGImageMetadataRef @abstract an immutable container for CGImageMetadataTags CGImageMetadata is an opaque type.

type CGImageMetadataErrors

type CGImageMetadataErrors int64
const (
	KCGImageMetadataErrorUnknown              CGImageMetadataErrors = 0
	KCGImageMetadataErrorUnsupportedFormat    CGImageMetadataErrors = 1
	KCGImageMetadataErrorBadArgument          CGImageMetadataErrors = 2
	KCGImageMetadataErrorConflictingArguments CGImageMetadataErrors = 3
	KCGImageMetadataErrorPrefixConflict       CGImageMetadataErrors = 4
)

func (CGImageMetadataErrors) String

func (e CGImageMetadataErrors) String() string

type CGImageMetadataTag

type CGImageMetadataTag struct{}

@typedef CGImageMetadataTagRef @abstract an individual metadata tag @discussion A CGImageMetadataTag encapsulates an EXIF, IPTC, or XMP property. All tags contain a namespace, prefix, name, type, and value. Please see @link CGImageMetadataTagCreate @/link for more details. CGImageMetadataTag is an opaque type.

type CGImageMetadataType

type CGImageMetadataType int64
const (
	KCGImageMetadataTypeInvalid        CGImageMetadataType = -1
	KCGImageMetadataTypeDefault        CGImageMetadataType = 0
	KCGImageMetadataTypeString         CGImageMetadataType = 1
	KCGImageMetadataTypeArrayUnordered CGImageMetadataType = 2
	KCGImageMetadataTypeArrayOrdered   CGImageMetadataType = 3
	KCGImageMetadataTypeAlternateArray CGImageMetadataType = 4
	KCGImageMetadataTypeAlternateText  CGImageMetadataType = 5
	KCGImageMetadataTypeStructure      CGImageMetadataType = 6
)

func CGImageMetadataTagGetType

func CGImageMetadataTagGetType(tag unsafe.Pointer) CGImageMetadataType

@function CGImageMetadataTagGetType @abstract Get the type of the CGImageMetadataTag @return Returns a CGImageMetadataType constant for the CGImageMetadataTag. This is primarily used to determine how to interpret the tag's value.

func (CGImageMetadataType) String

func (e CGImageMetadataType) String() string

type CGImagePropertyOrientation

type CGImagePropertyOrientation int64
const (
	KCGImagePropertyOrientationUp            CGImagePropertyOrientation = 1
	KCGImagePropertyOrientationUpMirrored    CGImagePropertyOrientation = 2
	KCGImagePropertyOrientationDown          CGImagePropertyOrientation = 3
	KCGImagePropertyOrientationDownMirrored  CGImagePropertyOrientation = 4
	KCGImagePropertyOrientationLeftMirrored  CGImagePropertyOrientation = 5
	KCGImagePropertyOrientationRight         CGImagePropertyOrientation = 6
	KCGImagePropertyOrientationRightMirrored CGImagePropertyOrientation = 7
	KCGImagePropertyOrientationLeft          CGImagePropertyOrientation = 8
)

func (CGImagePropertyOrientation) String

type CGImagePropertyTGACompression

type CGImagePropertyTGACompression int64
const (
	KCGImageTGACompressionNone CGImagePropertyTGACompression = 0
	KCGImageTGACompressionRLE  CGImagePropertyTGACompression = 1
)

func (CGImagePropertyTGACompression) String

type CGImageSource

type CGImageSource struct{}

CGImageSource is an opaque type.

type CGImageSourceStatus

type CGImageSourceStatus int64
const (
	KCGImageStatusUnexpectedEOF CGImageSourceStatus = -5
	KCGImageStatusInvalidData   CGImageSourceStatus = -4
	KCGImageStatusUnknownType   CGImageSourceStatus = -3
	KCGImageStatusReadingHeader CGImageSourceStatus = -2
	KCGImageStatusIncomplete    CGImageSourceStatus = -1
	KCGImageStatusComplete      CGImageSourceStatus = 0
)

func CGImageSourceGetStatus

func CGImageSourceGetStatus(isrc unsafe.Pointer) CGImageSourceStatus

func CGImageSourceGetStatusAtIndex

func CGImageSourceGetStatusAtIndex(isrc unsafe.Pointer, index uint) CGImageSourceStatus

func (CGImageSourceStatus) String

func (e CGImageSourceStatus) String() string

type Clockid_t

type Clockid_t int64

func (Clockid_t) String

func (e Clockid_t) String() string

type Dispatch_autorelease_frequency_t

type Dispatch_autorelease_frequency_t uint64
const (
	DISPATCH_AUTORELEASE_FREQUENCY_INHERIT   Dispatch_autorelease_frequency_t = 0
	DISPATCH_AUTORELEASE_FREQUENCY_WORK_ITEM Dispatch_autorelease_frequency_t = 1
	DISPATCH_AUTORELEASE_FREQUENCY_NEVER     Dispatch_autorelease_frequency_t = 2
)

func (Dispatch_autorelease_frequency_t) String

type Dispatch_block_flags_t

type Dispatch_block_flags_t uint64
const (
	DISPATCH_BLOCK_BARRIER           Dispatch_block_flags_t = 1
	DISPATCH_BLOCK_DETACHED          Dispatch_block_flags_t = 2
	DISPATCH_BLOCK_ASSIGN_CURRENT    Dispatch_block_flags_t = 4
	DISPATCH_BLOCK_NO_QOS_CLASS      Dispatch_block_flags_t = 8
	DISPATCH_BLOCK_INHERIT_QOS_CLASS Dispatch_block_flags_t = 16
	DISPATCH_BLOCK_ENFORCE_QOS_CLASS Dispatch_block_flags_t = 32
)

func (Dispatch_block_flags_t) String

func (e Dispatch_block_flags_t) String() string

type EvCmd

type EvCmd int64
const (
	EVNOP   EvCmd = 0
	EVHIDE  EvCmd = 1
	EVSHOW  EvCmd = 2
	EVMOVE  EvCmd = 3
	EVLEVEL EvCmd = 4
)

func (EvCmd) String

func (e EvCmd) String() string

type Filesec_property_t

type Filesec_property_t int64
const (
	FILESEC_OWNER         Filesec_property_t = 1
	FILESEC_GROUP         Filesec_property_t = 2
	FILESEC_UUID          Filesec_property_t = 3
	FILESEC_MODE          Filesec_property_t = 4
	FILESEC_ACL           Filesec_property_t = 5
	FILESEC_GRPUUID       Filesec_property_t = 6
	FILESEC_ACL_RAW       Filesec_property_t = 100
	FILESEC_ACL_ALLOCSIZE Filesec_property_t = 101
)

func (Filesec_property_t) String

func (e Filesec_property_t) String() string

type Idtype_t

type Idtype_t int64
const (
	P_ALL  Idtype_t = 0
	P_PID  Idtype_t = 1
	P_PGID Idtype_t = 2
)

func (Idtype_t) String

func (e Idtype_t) String() string

type Ipc_info_object_type_t

type Ipc_info_object_type_t int64
const (
	IPC_OTYPE_NONE                 Ipc_info_object_type_t = 0
	IPC_OTYPE_THREAD_CONTROL       Ipc_info_object_type_t = 1
	IPC_OTYPE_TASK_CONTROL         Ipc_info_object_type_t = 2
	IPC_OTYPE_HOST                 Ipc_info_object_type_t = 3
	IPC_OTYPE_HOST_PRIV            Ipc_info_object_type_t = 4
	IPC_OTYPE_PROCESSOR            Ipc_info_object_type_t = 5
	IPC_OTYPE_PROCESSOR_SET        Ipc_info_object_type_t = 6
	IPC_OTYPE_PROCESSOR_SET_NAME   Ipc_info_object_type_t = 7
	IPC_OTYPE_TIMER                Ipc_info_object_type_t = 8
	IPC_OTYPE_PORT_SUBST_ONCE      Ipc_info_object_type_t = 9
	IPC_OTYPE_MIG                  Ipc_info_object_type_t = 10
	IPC_OTYPE_MEMORY_OBJECT        Ipc_info_object_type_t = 11
	IPC_OTYPE_XMM_PAGER            Ipc_info_object_type_t = 12
	IPC_OTYPE_XMM_KERNEL           Ipc_info_object_type_t = 13
	IPC_OTYPE_XMM_REPLY            Ipc_info_object_type_t = 14
	IPC_OTYPE_UND_REPLY            Ipc_info_object_type_t = 15
	IPC_OTYPE_HOST_NOTIFY          Ipc_info_object_type_t = 16
	IPC_OTYPE_HOST_SECURITY        Ipc_info_object_type_t = 17
	IPC_OTYPE_LEDGER               Ipc_info_object_type_t = 18
	IPC_OTYPE_MAIN_DEVICE          Ipc_info_object_type_t = 19
	IPC_OTYPE_TASK_NAME            Ipc_info_object_type_t = 20
	IPC_OTYPE_SUBSYSTEM            Ipc_info_object_type_t = 21
	IPC_OTYPE_IO_DONE_QUEUE        Ipc_info_object_type_t = 22
	IPC_OTYPE_SEMAPHORE            Ipc_info_object_type_t = 23
	IPC_OTYPE_LOCK_SET             Ipc_info_object_type_t = 24
	IPC_OTYPE_CLOCK                Ipc_info_object_type_t = 25
	IPC_OTYPE_CLOCK_CTRL           Ipc_info_object_type_t = 26
	IPC_OTYPE_IOKIT_IDENT          Ipc_info_object_type_t = 27
	IPC_OTYPE_NAMED_ENTRY          Ipc_info_object_type_t = 28
	IPC_OTYPE_IOKIT_CONNECT        Ipc_info_object_type_t = 29
	IPC_OTYPE_IOKIT_OBJECT         Ipc_info_object_type_t = 30
	IPC_OTYPE_UPL                  Ipc_info_object_type_t = 31
	IPC_OTYPE_MEM_OBJ_CONTROL      Ipc_info_object_type_t = 32
	IPC_OTYPE_AU_SESSIONPORT       Ipc_info_object_type_t = 33
	IPC_OTYPE_FILEPORT             Ipc_info_object_type_t = 34
	IPC_OTYPE_LABELH               Ipc_info_object_type_t = 35
	IPC_OTYPE_TASK_RESUME          Ipc_info_object_type_t = 36
	IPC_OTYPE_VOUCHER              Ipc_info_object_type_t = 37
	IPC_OTYPE_VOUCHER_ATTR_CONTROL Ipc_info_object_type_t = 38
	IPC_OTYPE_WORK_INTERVAL        Ipc_info_object_type_t = 39
	IPC_OTYPE_UX_HANDLER           Ipc_info_object_type_t = 40
	IPC_OTYPE_UEXT_OBJECT          Ipc_info_object_type_t = 41
	IPC_OTYPE_ARCADE_REG           Ipc_info_object_type_t = 42
	IPC_OTYPE_EVENTLINK            Ipc_info_object_type_t = 43
	IPC_OTYPE_TASK_INSPECT         Ipc_info_object_type_t = 44
	IPC_OTYPE_TASK_READ            Ipc_info_object_type_t = 45
	IPC_OTYPE_THREAD_INSPECT       Ipc_info_object_type_t = 46
	IPC_OTYPE_THREAD_READ          Ipc_info_object_type_t = 47
	IPC_OTYPE_SUID_CRED            Ipc_info_object_type_t = 48
	IPC_OTYPE_HYPERVISOR           Ipc_info_object_type_t = 49
	IPC_OTYPE_TASK_ID_TOKEN        Ipc_info_object_type_t = 50
	IPC_OTYPE_TASK_FATAL           Ipc_info_object_type_t = 51
	IPC_OTYPE_KCDATA               Ipc_info_object_type_t = 52
	IPC_OTYPE_EXCLAVES_RESOURCE    Ipc_info_object_type_t = 53
	IPC_OTYPE_THREAD_RESUME        Ipc_info_object_type_t = 54
	IPC_OTYPE_UNKNOWN              Ipc_info_object_type_t = 4294967295
)

func (Ipc_info_object_type_t) String

func (e Ipc_info_object_type_t) String() string

type Mach_vm_range_flags_t

type Mach_vm_range_flags_t int64
const (
	MACH_VM_RANGE_NONE Mach_vm_range_flags_t = 0
)

func (Mach_vm_range_flags_t) String

func (e Mach_vm_range_flags_t) String() string

type Mach_vm_range_flavor_t

type Mach_vm_range_flavor_t int64
const (
	MACH_VM_RANGE_FLAVOR_INVALID Mach_vm_range_flavor_t = 0
	MACH_VM_RANGE_FLAVOR_V1      Mach_vm_range_flavor_t = 1
)

func (Mach_vm_range_flavor_t) String

func (e Mach_vm_range_flavor_t) String() string

type Mach_vm_range_tag_t

type Mach_vm_range_tag_t int64
const (
	MACH_VM_RANGE_DEFAULT Mach_vm_range_tag_t = 0
	MACH_VM_RANGE_DATA    Mach_vm_range_tag_t = 1
	MACH_VM_RANGE_FIXED   Mach_vm_range_tag_t = 2
)

func (Mach_vm_range_tag_t) String

func (e Mach_vm_range_tag_t) String() string

type Mpo_flags_t

type Mpo_flags_t int64
const (
	MPO_PORT                            Mpo_flags_t = 0
	MPO_SERVICE_PORT                    Mpo_flags_t = 1024
	MPO_CONNECTION_PORT                 Mpo_flags_t = 2048
	MPO_REPLY_PORT                      Mpo_flags_t = 4096
	MPO_WEAK_REPLY_PORT                 Mpo_flags_t = 16384
	MPO_NOTIFICATION_PORT               Mpo_flags_t = 17408
	MPO_EXCEPTION_PORT                  Mpo_flags_t = 32768
	MPO_CONNECTION_PORT_WITH_PORT_ARRAY Mpo_flags_t = 65536
)

func (Mpo_flags_t) String

func (e Mpo_flags_t) String() string

type NXMouseButton

type NXMouseButton int64
const (
	NX_OneButton   NXMouseButton = 0
	NX_LeftButton  NXMouseButton = 1
	NX_RightButton NXMouseButton = 2
)

func (NXMouseButton) String

func (e NXMouseButton) String() string

type Os_clockid_t

type Os_clockid_t int64
const (
	OS_CLOCK_MACH_ABSOLUTE_TIME Os_clockid_t = 32
)

func (Os_clockid_t) String

func (e Os_clockid_t) String() string

type Ptrauth_key

type Ptrauth_key int64
const (
	Ptrauth_key_none                     Ptrauth_key = -1
	Ptrauth_key_asia                     Ptrauth_key = 0
	Ptrauth_key_asib                     Ptrauth_key = 1
	Ptrauth_key_asda                     Ptrauth_key = 2
	Ptrauth_key_asdb                     Ptrauth_key = 3
	Ptrauth_key_process_independent_code Ptrauth_key = 0
	Ptrauth_key_process_dependent_code   Ptrauth_key = 1
	Ptrauth_key_process_independent_data Ptrauth_key = 2
	Ptrauth_key_process_dependent_data   Ptrauth_key = 3
	Ptrauth_key_return_address           Ptrauth_key = 1
	Ptrauth_key_frame_pointer            Ptrauth_key = 3
	Ptrauth_key_function_pointer         Ptrauth_key = 0
	Ptrauth_key_block_function           Ptrauth_key = 0
	Ptrauth_key_cxx_vtable_pointer       Ptrauth_key = 2
	Ptrauth_key_method_list_pointer      Ptrauth_key = 2
	Ptrauth_key_objc_isa_pointer         Ptrauth_key = 2
	Ptrauth_key_objc_super_pointer       Ptrauth_key = 2
	Ptrauth_key_objc_sel_pointer         Ptrauth_key = 3
	Ptrauth_key_objc_class_ro_pointer    Ptrauth_key = 2
	Ptrauth_key_block_descriptor_pointer Ptrauth_key = 2
	Ptrauth_key_init_fini_pointer        Ptrauth_key = 0
)

func (Ptrauth_key) String

func (e Ptrauth_key) String() string

type Qos_class_t

type Qos_class_t uint32
const (
	QOS_CLASS_USER_INTERACTIVE Qos_class_t = 33
	QOS_CLASS_USER_INITIATED   Qos_class_t = 25
	QOS_CLASS_DEFAULT          Qos_class_t = 21
	QOS_CLASS_UTILITY          Qos_class_t = 17
	QOS_CLASS_BACKGROUND       Qos_class_t = 9
	QOS_CLASS_UNSPECIFIED      Qos_class_t = 0
)

func (Qos_class_t) String

func (e Qos_class_t) String() string

type Virtual_memory_guard_exception_code_t

type Virtual_memory_guard_exception_code_t int64
const (
	KGUARD_EXC_DEALLOC_GAP                   Virtual_memory_guard_exception_code_t = 1
	KGUARD_EXC_RECLAIM_COPYIO_FAILURE        Virtual_memory_guard_exception_code_t = 2
	KGUARD_EXC_RECLAIM_INDEX_FAILURE         Virtual_memory_guard_exception_code_t = 4
	KGUARD_EXC_RECLAIM_DEALLOCATE_FAILURE    Virtual_memory_guard_exception_code_t = 8
	KGUARD_EXC_RECLAIM_ACCOUNTING_FAILURE    Virtual_memory_guard_exception_code_t = 9
	KGUARD_EXC_SEC_IOPL_ON_EXEC_PAGE         Virtual_memory_guard_exception_code_t = 10
	KGUARD_EXC_SEC_EXEC_ON_IOPL_PAGE         Virtual_memory_guard_exception_code_t = 11
	KGUARD_EXC_SEC_UPL_WRITE_ON_EXEC_REGION  Virtual_memory_guard_exception_code_t = 12
	KGUARD_EXC_LARGE_ALLOCATION_TELEMETRY    Virtual_memory_guard_exception_code_t = 13
	KGUARD_EXC_SEC_ACCESS_FAULT              Virtual_memory_guard_exception_code_t = 98
	KGUARD_EXC_SEC_ASYNC_ACCESS_FAULT        Virtual_memory_guard_exception_code_t = 99
	KGUARD_EXC_SEC_COPY_DENIED               Virtual_memory_guard_exception_code_t = 100
	KGUARD_EXC_SEC_SHARING_DENIED            Virtual_memory_guard_exception_code_t = 101
	KGUARD_EXC_MTE_SYNC_FAULT                Virtual_memory_guard_exception_code_t = 200
	KGUARD_EXC_MTE_ASYNC_USER_FAULT          Virtual_memory_guard_exception_code_t = 201
	KGUARD_EXC_MTE_ASYNC_KERN_FAULT          Virtual_memory_guard_exception_code_t = 202
	KGUARD_EXC_GUARD_OBJECT_ASYNC_USER_FAULT Virtual_memory_guard_exception_code_t = 203
	KGUARD_EXC_GUARD_OBJECT_ASYNC_KERN_FAULT Virtual_memory_guard_exception_code_t = 204
)

func (Virtual_memory_guard_exception_code_t) String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL