├── ANImageBitmapRep ├── ANImageBitmapRep.h ├── ANImageBitmapRep.m ├── BitmapContextRep.h ├── BitmapContextRep.m ├── Compatibility │ ├── NSImage+ANImageBitmapRep.h │ ├── NSImage+ANImageBitmapRep.m │ ├── OSCommonImage.h │ ├── OSCommonImage.m │ ├── UIImage+ANImageBitmapRep.h │ └── UIImage+ANImageBitmapRep.m ├── CoreGraphics │ ├── CGContextCreator.h │ ├── CGContextCreator.m │ ├── CGImageContainer.h │ └── CGImageContainer.m └── Manipulators │ ├── BitmapContextManipulator.h │ ├── BitmapContextManipulator.m │ ├── BitmapCropManipulator.h │ ├── BitmapCropManipulator.m │ ├── BitmapDrawManipulator.h │ ├── BitmapDrawManipulator.m │ ├── BitmapRotationManipulator.h │ ├── BitmapRotationManipulator.m │ ├── BitmapScaleManipulator.h │ └── BitmapScaleManipulator.m ├── Classes ├── Blur.h ├── Blur.m ├── Blur.xib ├── BlurView.h ├── BlurView.m ├── ColorInverter.h ├── ColorInverter.m ├── ColorInverter.xib ├── ColorInverterView.h ├── ColorInverterView.m ├── Draw.h ├── Draw.m ├── Draw.xib ├── DrawView.h ├── DrawView.m ├── GetPixel.h ├── GetPixel.m ├── GetPixelDemo.h ├── GetPixelDemo.m ├── ImageBitmapRepAppDelegate.h ├── ImageBitmapRepAppDelegate.m ├── Noise.h ├── Noise.m ├── Noise.xib ├── RootViewController.h ├── RootViewController.m ├── Rotation.h ├── Rotation.m └── Rotation.xib ├── ImageBitmapRep-Info.plist ├── ImageBitmapRep.xcodeproj ├── alex.mode1v3 ├── alex.pbxuser └── project.pbxproj ├── ImageBitmapRep_Prefix.pch ├── LICENSE ├── MacImageRep ├── ANAppDelegate.h ├── ANAppDelegate.m ├── ANBlurDemo.h ├── ANBlurDemo.m ├── ANDemoView.h ├── ANDemoView.m ├── ANInverterDemo.h ├── ANInverterDemo.m ├── ANNoiseDemo.h ├── ANNoiseDemo.m ├── MacImageRep-Info.plist ├── MacImageRep-Prefix.pch ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib └── main.m ├── MainWindow.xib ├── README.md ├── RootViewController.xib ├── blurtest.jpeg ├── inverter.png ├── main.m ├── rotate_me.png ├── starrynight.png └── wheel.png /ANImageBitmapRep/ANImageBitmapRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/ANImageBitmapRep.h -------------------------------------------------------------------------------- /ANImageBitmapRep/ANImageBitmapRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/ANImageBitmapRep.m -------------------------------------------------------------------------------- /ANImageBitmapRep/BitmapContextRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/BitmapContextRep.h -------------------------------------------------------------------------------- /ANImageBitmapRep/BitmapContextRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/BitmapContextRep.m -------------------------------------------------------------------------------- /ANImageBitmapRep/Compatibility/NSImage+ANImageBitmapRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Compatibility/NSImage+ANImageBitmapRep.h -------------------------------------------------------------------------------- /ANImageBitmapRep/Compatibility/NSImage+ANImageBitmapRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Compatibility/NSImage+ANImageBitmapRep.m -------------------------------------------------------------------------------- /ANImageBitmapRep/Compatibility/OSCommonImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Compatibility/OSCommonImage.h -------------------------------------------------------------------------------- /ANImageBitmapRep/Compatibility/OSCommonImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Compatibility/OSCommonImage.m -------------------------------------------------------------------------------- /ANImageBitmapRep/Compatibility/UIImage+ANImageBitmapRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Compatibility/UIImage+ANImageBitmapRep.h -------------------------------------------------------------------------------- /ANImageBitmapRep/Compatibility/UIImage+ANImageBitmapRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Compatibility/UIImage+ANImageBitmapRep.m -------------------------------------------------------------------------------- /ANImageBitmapRep/CoreGraphics/CGContextCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/CoreGraphics/CGContextCreator.h -------------------------------------------------------------------------------- /ANImageBitmapRep/CoreGraphics/CGContextCreator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/CoreGraphics/CGContextCreator.m -------------------------------------------------------------------------------- /ANImageBitmapRep/CoreGraphics/CGImageContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/CoreGraphics/CGImageContainer.h -------------------------------------------------------------------------------- /ANImageBitmapRep/CoreGraphics/CGImageContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/CoreGraphics/CGImageContainer.m -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapContextManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapContextManipulator.h -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapContextManipulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapContextManipulator.m -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapCropManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapCropManipulator.h -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapCropManipulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapCropManipulator.m -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapDrawManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapDrawManipulator.h -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapDrawManipulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapDrawManipulator.m -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapRotationManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapRotationManipulator.h -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapRotationManipulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapRotationManipulator.m -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapScaleManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapScaleManipulator.h -------------------------------------------------------------------------------- /ANImageBitmapRep/Manipulators/BitmapScaleManipulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ANImageBitmapRep/Manipulators/BitmapScaleManipulator.m -------------------------------------------------------------------------------- /Classes/Blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Blur.h -------------------------------------------------------------------------------- /Classes/Blur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Blur.m -------------------------------------------------------------------------------- /Classes/Blur.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Blur.xib -------------------------------------------------------------------------------- /Classes/BlurView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/BlurView.h -------------------------------------------------------------------------------- /Classes/BlurView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/BlurView.m -------------------------------------------------------------------------------- /Classes/ColorInverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/ColorInverter.h -------------------------------------------------------------------------------- /Classes/ColorInverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/ColorInverter.m -------------------------------------------------------------------------------- /Classes/ColorInverter.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/ColorInverter.xib -------------------------------------------------------------------------------- /Classes/ColorInverterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/ColorInverterView.h -------------------------------------------------------------------------------- /Classes/ColorInverterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/ColorInverterView.m -------------------------------------------------------------------------------- /Classes/Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Draw.h -------------------------------------------------------------------------------- /Classes/Draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Draw.m -------------------------------------------------------------------------------- /Classes/Draw.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Draw.xib -------------------------------------------------------------------------------- /Classes/DrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/DrawView.h -------------------------------------------------------------------------------- /Classes/DrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/DrawView.m -------------------------------------------------------------------------------- /Classes/GetPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/GetPixel.h -------------------------------------------------------------------------------- /Classes/GetPixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/GetPixel.m -------------------------------------------------------------------------------- /Classes/GetPixelDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/GetPixelDemo.h -------------------------------------------------------------------------------- /Classes/GetPixelDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/GetPixelDemo.m -------------------------------------------------------------------------------- /Classes/ImageBitmapRepAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/ImageBitmapRepAppDelegate.h -------------------------------------------------------------------------------- /Classes/ImageBitmapRepAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/ImageBitmapRepAppDelegate.m -------------------------------------------------------------------------------- /Classes/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Noise.h -------------------------------------------------------------------------------- /Classes/Noise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Noise.m -------------------------------------------------------------------------------- /Classes/Noise.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Noise.xib -------------------------------------------------------------------------------- /Classes/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/RootViewController.h -------------------------------------------------------------------------------- /Classes/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/RootViewController.m -------------------------------------------------------------------------------- /Classes/Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Rotation.h -------------------------------------------------------------------------------- /Classes/Rotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Rotation.m -------------------------------------------------------------------------------- /Classes/Rotation.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/Classes/Rotation.xib -------------------------------------------------------------------------------- /ImageBitmapRep-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ImageBitmapRep-Info.plist -------------------------------------------------------------------------------- /ImageBitmapRep.xcodeproj/alex.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ImageBitmapRep.xcodeproj/alex.mode1v3 -------------------------------------------------------------------------------- /ImageBitmapRep.xcodeproj/alex.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ImageBitmapRep.xcodeproj/alex.pbxuser -------------------------------------------------------------------------------- /ImageBitmapRep.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ImageBitmapRep.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImageBitmapRep_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/ImageBitmapRep_Prefix.pch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/LICENSE -------------------------------------------------------------------------------- /MacImageRep/ANAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANAppDelegate.h -------------------------------------------------------------------------------- /MacImageRep/ANAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANAppDelegate.m -------------------------------------------------------------------------------- /MacImageRep/ANBlurDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANBlurDemo.h -------------------------------------------------------------------------------- /MacImageRep/ANBlurDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANBlurDemo.m -------------------------------------------------------------------------------- /MacImageRep/ANDemoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANDemoView.h -------------------------------------------------------------------------------- /MacImageRep/ANDemoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANDemoView.m -------------------------------------------------------------------------------- /MacImageRep/ANInverterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANInverterDemo.h -------------------------------------------------------------------------------- /MacImageRep/ANInverterDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANInverterDemo.m -------------------------------------------------------------------------------- /MacImageRep/ANNoiseDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANNoiseDemo.h -------------------------------------------------------------------------------- /MacImageRep/ANNoiseDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/ANNoiseDemo.m -------------------------------------------------------------------------------- /MacImageRep/MacImageRep-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/MacImageRep-Info.plist -------------------------------------------------------------------------------- /MacImageRep/MacImageRep-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/MacImageRep-Prefix.pch -------------------------------------------------------------------------------- /MacImageRep/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /MacImageRep/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MacImageRep/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /MacImageRep/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MacImageRep/main.m -------------------------------------------------------------------------------- /MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/MainWindow.xib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/README.md -------------------------------------------------------------------------------- /RootViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/RootViewController.xib -------------------------------------------------------------------------------- /blurtest.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/blurtest.jpeg -------------------------------------------------------------------------------- /inverter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/inverter.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/main.m -------------------------------------------------------------------------------- /rotate_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/rotate_me.png -------------------------------------------------------------------------------- /starrynight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/starrynight.png -------------------------------------------------------------------------------- /wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unixpickle/ANImageBitmapRep/HEAD/wheel.png --------------------------------------------------------------------------------