├── .gitignore ├── LICENSE ├── QuartzHelpLibrary.h ├── QuartzHelpLibrary.m ├── QuartzHelpLibrary.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── sonson.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── QuartzHelpLibrary.xcscheme │ └── xcschememanagement.plist ├── QuartzHelpLibrary ├── QuartzHelpLibrary-Info.plist ├── QuartzHelpLibrary-Prefix.pch ├── QuartzHelpLibraryAppDelegate.h ├── QuartzHelpLibraryAppDelegate.m ├── Resources │ └── image │ │ ├── Default-Landscape.png │ │ ├── Default-Portrait.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── icon114x114.png │ │ ├── icon57x57.png │ │ └── icon72x72.png ├── SelectTestViewController.h ├── SelectTestViewController.m ├── SelectTestViewController_iPad.h ├── SelectTestViewController_iPad.m ├── Test │ ├── TestDrawCGImageFromGrayPixel.h │ ├── TestDrawCGImageFromGrayPixel.m │ ├── TestDrawCGImageFromRGBPixel.h │ ├── TestDrawCGImageFromRGBPixel.m │ ├── TestUIImageViewFromGrayPixel.h │ ├── TestUIImageViewFromGrayPixel.m │ ├── TestUIImageViewFromRGBPixel.h │ ├── TestUIImageViewFromRGBPixel.m │ ├── test.h │ ├── test.m │ ├── testImageOrientation.h │ ├── testImageOrientation.m │ ├── testTool.h │ └── testTool.m ├── TestViewControllers │ ├── ImageLoadTestViewController.h │ ├── ImageLoadTestViewController.m │ ├── ImageLoadTestViewController_iPad.h │ ├── ImageLoadTestViewController_iPad.m │ ├── OrientationResizeTestViewController.h │ ├── OrientationResizeTestViewController.m │ ├── OrientationResizeTestViewController.xib │ ├── OrientationResizeTestViewController_iPad.h │ ├── OrientationResizeTestViewController_iPad.m │ ├── OrientationResizeTestViewController_iPad.xib │ ├── OrientationTestViewController.h │ ├── OrientationTestViewController.m │ ├── OrientationTestViewController_iPad.h │ ├── OrientationTestViewController_iPad.m │ ├── QuartzHelpLibraryViewController.h │ ├── QuartzHelpLibraryViewController.m │ ├── QuartzHelpLibraryViewController_iPad.h │ ├── QuartzHelpLibraryViewController_iPad.m │ ├── UIViewController+test.h │ └── UIViewController+test.m ├── en.lproj │ ├── ImageLoadTestViewController.xib │ ├── ImageLoadTestViewController_iPad.xib │ ├── InfoPlist.strings │ ├── MainWindow-iPad.xib │ ├── MainWindow.xib │ ├── OrientationTestViewController.xib │ ├── OrientationTestViewController_iPad.xib │ ├── QuartzHelpLibraryViewController.xib │ ├── QuartzHelpLibraryViewController_iPad.xib │ ├── SelectTestViewController.xib │ ├── SelectTestViewController_iPad.xib │ ├── iossdkhack.jpg │ └── iossdkhack.png ├── main.m └── testImages │ ├── rawForTest │ ├── testImage_Gray_JPG24.raw │ ├── testImage_Gray_PNG24.raw │ ├── testImage_Gray_PNG8.raw │ ├── testImage_RGB_JPG24.raw │ ├── testImage_RGB_PNG24.raw │ └── testImage_RGB_PNG8.raw │ ├── source_gray.psd │ ├── source_rgb.psd │ ├── testImage_Gray_JPG24.jpg │ ├── testImage_Gray_PNG24.png │ ├── testImage_Gray_PNG24Alpha.png │ ├── testImage_Gray_PNG8.png │ ├── testImage_Gray_PNG8Alpha.png │ ├── testImage_RGB_JPG24.jpg │ ├── testImage_RGB_PNG24.png │ ├── testImage_RGB_PNG24Alpha.png │ └── testImage_RGB_PNG8.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ._* 3 | xcuserdata 4 | *~ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /QuartzHelpLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary.h -------------------------------------------------------------------------------- /QuartzHelpLibrary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary.m -------------------------------------------------------------------------------- /QuartzHelpLibrary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /QuartzHelpLibrary.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /QuartzHelpLibrary.xcodeproj/xcuserdata/sonson.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary.xcodeproj/xcuserdata/sonson.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /QuartzHelpLibrary.xcodeproj/xcuserdata/sonson.xcuserdatad/xcschemes/QuartzHelpLibrary.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary.xcodeproj/xcuserdata/sonson.xcuserdatad/xcschemes/QuartzHelpLibrary.xcscheme -------------------------------------------------------------------------------- /QuartzHelpLibrary.xcodeproj/xcuserdata/sonson.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary.xcodeproj/xcuserdata/sonson.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /QuartzHelpLibrary/QuartzHelpLibrary-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/QuartzHelpLibrary-Info.plist -------------------------------------------------------------------------------- /QuartzHelpLibrary/QuartzHelpLibrary-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/QuartzHelpLibrary-Prefix.pch -------------------------------------------------------------------------------- /QuartzHelpLibrary/QuartzHelpLibraryAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/QuartzHelpLibraryAppDelegate.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/QuartzHelpLibraryAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/QuartzHelpLibraryAppDelegate.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/Resources/image/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Resources/image/Default-Landscape.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/Resources/image/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Resources/image/Default-Portrait.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/Resources/image/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Resources/image/Default.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/Resources/image/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Resources/image/Default@2x.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/Resources/image/icon114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Resources/image/icon114x114.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/Resources/image/icon57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Resources/image/icon57x57.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/Resources/image/icon72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Resources/image/icon72x72.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/SelectTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/SelectTestViewController.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/SelectTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/SelectTestViewController.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/SelectTestViewController_iPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/SelectTestViewController_iPad.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/SelectTestViewController_iPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/SelectTestViewController_iPad.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/TestDrawCGImageFromGrayPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/TestDrawCGImageFromGrayPixel.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/TestDrawCGImageFromGrayPixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/TestDrawCGImageFromGrayPixel.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/TestDrawCGImageFromRGBPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/TestDrawCGImageFromRGBPixel.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/TestDrawCGImageFromRGBPixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/TestDrawCGImageFromRGBPixel.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/TestUIImageViewFromGrayPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/TestUIImageViewFromGrayPixel.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/TestUIImageViewFromGrayPixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/TestUIImageViewFromGrayPixel.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/TestUIImageViewFromRGBPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/TestUIImageViewFromRGBPixel.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/TestUIImageViewFromRGBPixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/TestUIImageViewFromRGBPixel.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/test.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/test.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/testImageOrientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/testImageOrientation.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/testImageOrientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/testImageOrientation.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/testTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/testTool.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/Test/testTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/Test/testTool.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/ImageLoadTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/ImageLoadTestViewController.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/ImageLoadTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/ImageLoadTestViewController.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/ImageLoadTestViewController_iPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/ImageLoadTestViewController_iPad.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/ImageLoadTestViewController_iPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/ImageLoadTestViewController_iPad.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController_iPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController_iPad.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController_iPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController_iPad.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationResizeTestViewController_iPad.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationTestViewController.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationTestViewController.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationTestViewController_iPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationTestViewController_iPad.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/OrientationTestViewController_iPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/OrientationTestViewController_iPad.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/QuartzHelpLibraryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/QuartzHelpLibraryViewController.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/QuartzHelpLibraryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/QuartzHelpLibraryViewController.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/QuartzHelpLibraryViewController_iPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/QuartzHelpLibraryViewController_iPad.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/QuartzHelpLibraryViewController_iPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/QuartzHelpLibraryViewController_iPad.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/UIViewController+test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/UIViewController+test.h -------------------------------------------------------------------------------- /QuartzHelpLibrary/TestViewControllers/UIViewController+test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/TestViewControllers/UIViewController+test.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/ImageLoadTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/ImageLoadTestViewController.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/ImageLoadTestViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/ImageLoadTestViewController_iPad.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/MainWindow-iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/MainWindow-iPad.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/OrientationTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/OrientationTestViewController.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/OrientationTestViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/OrientationTestViewController_iPad.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/QuartzHelpLibraryViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/QuartzHelpLibraryViewController.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/QuartzHelpLibraryViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/QuartzHelpLibraryViewController_iPad.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/SelectTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/SelectTestViewController.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/SelectTestViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/SelectTestViewController_iPad.xib -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/iossdkhack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/iossdkhack.jpg -------------------------------------------------------------------------------- /QuartzHelpLibrary/en.lproj/iossdkhack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/en.lproj/iossdkhack.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/main.m -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/rawForTest/testImage_Gray_JPG24.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/rawForTest/testImage_Gray_JPG24.raw -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/rawForTest/testImage_Gray_PNG24.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/rawForTest/testImage_Gray_PNG24.raw -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/rawForTest/testImage_Gray_PNG8.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/rawForTest/testImage_Gray_PNG8.raw -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/rawForTest/testImage_RGB_JPG24.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/rawForTest/testImage_RGB_JPG24.raw -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/rawForTest/testImage_RGB_PNG24.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/rawForTest/testImage_RGB_PNG24.raw -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/rawForTest/testImage_RGB_PNG8.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/rawForTest/testImage_RGB_PNG8.raw -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/source_gray.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/source_gray.psd -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/source_rgb.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/source_rgb.psd -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_Gray_JPG24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_Gray_JPG24.jpg -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_Gray_PNG24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_Gray_PNG24.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_Gray_PNG24Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_Gray_PNG24Alpha.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_Gray_PNG8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_Gray_PNG8.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_Gray_PNG8Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_Gray_PNG8Alpha.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_RGB_JPG24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_RGB_JPG24.jpg -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_RGB_PNG24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_RGB_PNG24.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_RGB_PNG24Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_RGB_PNG24Alpha.png -------------------------------------------------------------------------------- /QuartzHelpLibrary/testImages/testImage_RGB_PNG8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/QuartzHelpLibrary/testImages/testImage_RGB_PNG8.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonsongithub/Quartz-Help-Library/HEAD/README.md --------------------------------------------------------------------------------