Skip to content
Swizzle your iOS project into ASCII art.
Objective-C Ruby
Find file
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
Classes Added support to flipping device orientation to the demo. Mar 24, 2014
Demo.xcodeproj
Demo Fix: display demo correctly on 3.5'' screen May 1, 2014
IntegrationTests Fix: use UIDeviceOrientation. May 1, 2014
Screenshots
Tests.xcodeproj Only build active architectures. Mar 26, 2014
Tests Marked test pending, see #4. Mar 26, 2014
.gitignore Removed generated workspace. Mar 26, 2014
.travis.yml
ARASCIISwizzle.podspec Preparing for next development iteration. Apr 6, 2014
CHANGELOG.md Preparing for next development iteration. Apr 6, 2014
CONTRIBUTING.md Added contributing guidelines. Mar 26, 2014
Gemfile Fix Travis CI. May 1, 2014
LICENSE Initial implementation for the Artsy Hackathon, March 2014. Mar 21, 2014
Podfile Test whether UIImageView invokes the ASCII conversion. Mar 26, 2014
Podfile.lock Fix Travis CI. May 1, 2014
README.md

README.md

ARASCIISwizzle

Build Status Version Platform

ASCII-art all the things. Transforms all UIImageView's into ASCII art and replaces all fonts with Courier. Built for the Artsy.net March 2014 Hackathon. Combine with DRKonamiCode and you're in business!

Demo

Portrait of a Lady, Rogier Van Der Weyden, courtesy of the National Gallery of Art, Washington D.C., via Artsy.net

Usage

Replace All Images and Fonts

#import <ARASCIISwizzle/UIFont+ASCII.h>
#import <ARASCIISwizzle/UIImageView+ASCII.h>

- (void)toggle
{
    UIFont.ascii = ! UIFont.ascii;
    UIImageView.ascii = ! UIImageView.ascii;
}

ASCII Art API

See UIImage+ASCII.h.

#import <ARASCIISwizzle/UIImage+ASCII.h>

UIImage *image = ...

// ASCII NSString representation of the image
NSString *asciiText = image.asciiText;

// ASCII UIImage representation of the image
UIFont *font = [UIFont fontWithName:@"Courier New" size:12.0];
UIColor *color = [UIColor yellowColor];
UIImage *asciiImage = [image asciiImage:font color:color];

Combine with Konami Code

Toggle swizzling with Up Up Down Down Left Right Left Right B A gestures. See this gist.

Installation

ARASCIISwizzle is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "ARASCIISwizzle"

Testing

Try it out with CocoaPods also,

pod try "ARASCIISwizzle"

Credits

Copyright & License

ARASCIISwizzle is (c) Artsy Inc., available under the MIT license.

See the LICENSE file for more information.

Something went wrong with that request. Please try again.