├── .gitignore ├── .travis.yml ├── BKAsciiImage.podspec ├── BKAsciiImage ├── BKAsciiConverter.h ├── BKAsciiConverter.m ├── BKAsciiConverter_Internal.h ├── BKAsciiConverter_Internal.m ├── BKAsciiDefinition.h ├── BKAsciiDefinition.m └── UIKit │ ├── UIImage+BKAscii.h │ └── UIImage+BKAscii.m ├── Example ├── BKAsciiImage.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── BKAsciiImage-Example.xcscheme ├── BKAsciiImage.xcworkspace │ └── contents.xcworkspacedata ├── BKAsciiImage │ ├── BKAppDelegate.h │ ├── BKAppDelegate.m │ ├── BKAsciiImage-Info.plist │ ├── BKAsciiImage-Prefix.pch │ ├── BKViewController.h │ ├── BKViewController.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── testImage.imageset │ │ │ ├── Contents.json │ │ │ └── tesImage@2x.png │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── BKAsciiImage │ │ │ │ ├── BKAsciiConverter.h │ │ │ │ ├── BKAsciiConverter_Internal.h │ │ │ │ ├── BKAsciiDefinition.h │ │ │ │ └── UIImage+BKAscii.h │ │ └── Public │ │ │ └── BKAsciiImage │ │ │ ├── BKAsciiConverter.h │ │ │ ├── BKAsciiConverter_Internal.h │ │ │ ├── BKAsciiDefinition.h │ │ │ └── UIImage+BKAscii.h │ ├── Local Podspecs │ │ └── BKAsciiImage.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-BKAsciiImage-BKAsciiImage │ │ ├── Pods-BKAsciiImage-BKAsciiImage-Private.xcconfig │ │ ├── Pods-BKAsciiImage-BKAsciiImage-dummy.m │ │ ├── Pods-BKAsciiImage-BKAsciiImage-prefix.pch │ │ └── Pods-BKAsciiImage-BKAsciiImage.xcconfig │ │ ├── Pods-BKAsciiImage │ │ ├── Pods-BKAsciiImage-acknowledgements.markdown │ │ ├── Pods-BKAsciiImage-acknowledgements.plist │ │ ├── Pods-BKAsciiImage-dummy.m │ │ ├── Pods-BKAsciiImage-environment.h │ │ ├── Pods-BKAsciiImage-resources.sh │ │ ├── Pods-BKAsciiImage.debug.xcconfig │ │ └── Pods-BKAsciiImage.release.xcconfig │ │ ├── Pods-Tests-BKAsciiImage │ │ ├── Pods-Tests-BKAsciiImage-Private.xcconfig │ │ ├── Pods-Tests-BKAsciiImage-dummy.m │ │ ├── Pods-Tests-BKAsciiImage-prefix.pch │ │ └── Pods-Tests-BKAsciiImage.xcconfig │ │ └── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md └── Screenshots ├── cmdfm_01.jpg ├── cmdfm_02.jpg ├── example.gif └── mappingExample.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/.travis.yml -------------------------------------------------------------------------------- /BKAsciiImage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage.podspec -------------------------------------------------------------------------------- /BKAsciiImage/BKAsciiConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage/BKAsciiConverter.h -------------------------------------------------------------------------------- /BKAsciiImage/BKAsciiConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage/BKAsciiConverter.m -------------------------------------------------------------------------------- /BKAsciiImage/BKAsciiConverter_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage/BKAsciiConverter_Internal.h -------------------------------------------------------------------------------- /BKAsciiImage/BKAsciiConverter_Internal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage/BKAsciiConverter_Internal.m -------------------------------------------------------------------------------- /BKAsciiImage/BKAsciiDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage/BKAsciiDefinition.h -------------------------------------------------------------------------------- /BKAsciiImage/BKAsciiDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage/BKAsciiDefinition.m -------------------------------------------------------------------------------- /BKAsciiImage/UIKit/UIImage+BKAscii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage/UIKit/UIImage+BKAscii.h -------------------------------------------------------------------------------- /BKAsciiImage/UIKit/UIImage+BKAscii.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/BKAsciiImage/UIKit/UIImage+BKAscii.m -------------------------------------------------------------------------------- /Example/BKAsciiImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/BKAsciiImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/BKAsciiImage.xcodeproj/xcshareddata/xcschemes/BKAsciiImage-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage.xcodeproj/xcshareddata/xcschemes/BKAsciiImage-Example.xcscheme -------------------------------------------------------------------------------- /Example/BKAsciiImage.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/BKAsciiImage/BKAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/BKAppDelegate.h -------------------------------------------------------------------------------- /Example/BKAsciiImage/BKAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/BKAppDelegate.m -------------------------------------------------------------------------------- /Example/BKAsciiImage/BKAsciiImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/BKAsciiImage-Info.plist -------------------------------------------------------------------------------- /Example/BKAsciiImage/BKAsciiImage-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/BKAsciiImage-Prefix.pch -------------------------------------------------------------------------------- /Example/BKAsciiImage/BKViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/BKViewController.h -------------------------------------------------------------------------------- /Example/BKAsciiImage/BKViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/BKViewController.m -------------------------------------------------------------------------------- /Example/BKAsciiImage/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/BKAsciiImage/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/BKAsciiImage/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/BKAsciiImage/Images.xcassets/testImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/Images.xcassets/testImage.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BKAsciiImage/Images.xcassets/testImage.imageset/tesImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/Images.xcassets/testImage.imageset/tesImage@2x.png -------------------------------------------------------------------------------- /Example/BKAsciiImage/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/BKAsciiImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/BKAsciiImage/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/BKAsciiImage/BKAsciiConverter.h: -------------------------------------------------------------------------------- 1 | ../../../../../BKAsciiImage/BKAsciiConverter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/BKAsciiImage/BKAsciiConverter_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../BKAsciiImage/BKAsciiConverter_Internal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/BKAsciiImage/BKAsciiDefinition.h: -------------------------------------------------------------------------------- 1 | ../../../../../BKAsciiImage/BKAsciiDefinition.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/BKAsciiImage/UIImage+BKAscii.h: -------------------------------------------------------------------------------- 1 | ../../../../../BKAsciiImage/UIKit/UIImage+BKAscii.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/BKAsciiImage/BKAsciiConverter.h: -------------------------------------------------------------------------------- 1 | ../../../../../BKAsciiImage/BKAsciiConverter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/BKAsciiImage/BKAsciiConverter_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../BKAsciiImage/BKAsciiConverter_Internal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/BKAsciiImage/BKAsciiDefinition.h: -------------------------------------------------------------------------------- 1 | ../../../../../BKAsciiImage/BKAsciiDefinition.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/BKAsciiImage/UIImage+BKAscii.h: -------------------------------------------------------------------------------- 1 | ../../../../../BKAsciiImage/UIKit/UIImage+BKAscii.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/BKAsciiImage.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Local Podspecs/BKAsciiImage.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage-BKAsciiImage/Pods-BKAsciiImage-BKAsciiImage-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage-BKAsciiImage/Pods-BKAsciiImage-BKAsciiImage-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage-BKAsciiImage/Pods-BKAsciiImage-BKAsciiImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage-BKAsciiImage/Pods-BKAsciiImage-BKAsciiImage-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage-BKAsciiImage/Pods-BKAsciiImage-BKAsciiImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage-BKAsciiImage/Pods-BKAsciiImage-BKAsciiImage-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage-BKAsciiImage/Pods-BKAsciiImage-BKAsciiImage.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-BKAsciiImage/Pods-BKAsciiImage.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-BKAsciiImage/Pods-Tests-BKAsciiImage-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests-BKAsciiImage/Pods-Tests-BKAsciiImage-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-BKAsciiImage/Pods-Tests-BKAsciiImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests-BKAsciiImage/Pods-Tests-BKAsciiImage-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-BKAsciiImage/Pods-Tests-BKAsciiImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests-BKAsciiImage/Pods-Tests-BKAsciiImage-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-BKAsciiImage/Pods-Tests-BKAsciiImage.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/cmdfm_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Screenshots/cmdfm_01.jpg -------------------------------------------------------------------------------- /Screenshots/cmdfm_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Screenshots/cmdfm_02.jpg -------------------------------------------------------------------------------- /Screenshots/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Screenshots/example.gif -------------------------------------------------------------------------------- /Screenshots/mappingExample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkoc/BKAsciiImage/HEAD/Screenshots/mappingExample.jpg --------------------------------------------------------------------------------