Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Anonwhat:
ASCII Art Generator
Aug 07, 2013 @ 14:52:18

In the "something completely different" category today, anonwhat has created an image-to-ASCII art tutorial that takes in an image and, using PHP's GD functionality and a bit of logic, transforms it.

In this tutorial, we are going to create a simple web-based ASCII Art Generator. The concepts found in this tutorial can be applied to other languages. [It is] a simple ASCII Art Generator takes in an image, grayscales it, pixelates it, then prints out a character for each block on the pixelated image based on how “dark” the block is.

The tutorial walks you through the steps needed to make the simple script. It analyzes the image looking at the "blackness" (a combination of the values from imagecolorat and imagecolorsforindex). ACSII characters are then substituted for different "blackness" ranges with the result looking something like this.

tagged: ascii art image tranform blackness gd tutorial

Link: http://fuzzicode.com/create/ascii-art-generator


Trending Topics: