1'''
2Python mapping for the ImageIO framework.
3
4This module does not contain docstrings for the wrapped code, check Apple's
5documentation for details on how to use these functions and classes.
6'''
7
8import objc as _objc
9import CoreFoundation
10#from Quartz.CoreGraphics import *
11
12__bundle__ = _objc.initFrameworkWrapper("ImageIO",
13    frameworkIdentifier="com.apple.ImageIO.framework",
14    frameworkPath=_objc.pathForFramework(
15        "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ImageIO.framework"),
16    globals=globals(),
17    frameworkResourceName="Quartz.ImageIO",
18    scan_classes=False)
19