JavaScripting

The definitive source of the best
JavaScript libraries, frameworks, and plugins.


  • ×

    Img to Ascii

    A JavaScript implementation of a image to Ascii code
    Filed under  › 

    • 🔾17%Overall
    • 387
    • 48.3 days
    • 🕩33
    • 👥1

    imgToAscii

    A JavaScript implementation of a image to ascii converter.

    Live example

    How to use

    Include the imgToAscii.js file

    <script src="src/imgToAscii.js"></script>
    

    or

    <script src="https://raw.githubusercontent.com/victorqribeiro/imgToAscii/v1.3/src/imgToAscii.js"></script>
    

    then just create a new imgToAscii object with the image address and optionaly the alphabet: (0 - simpler shades, 1 - more complex shades) - default is 0

    let ele = new imgToAscii('elefante.png');
    ele.display();
    

    You can also resize your image passing a second parameter between 0 and 1 as percentage. e.g.: 0.5 = 50% - Will reduce the size of your image in 50% both vertical and horizontal (width, height).

    let eu = new imgToAscii('eu.png',0.5);
    eu.display();
    

    To display the ASCII image with color just call the method displayColor(). You can set the background color of your image passing a color parameter to the method. e.g.: gray, white, black, #fff, rgb(10,10,10). Default is transparent.

    eu.displayColor('gray');
    

    Note that on the code above the same 'eu' image was used. Once you load an image, you can display it with or without color, without the need to reload the image data.

    Important

    The ascii art depends on a monospace font to work properly. You should consider that 1 pixel in your image is going to be translated to 1 char in Ascii. e.g.: if a image is 100 pixels wide, it's going to take 100 chars of space on your page, unless you do something about it.

    The imgToAscii should work with remote images:

    let img = new imgToAscii('http://site.com/image.png');
    

    but it might not because of cross-origin settings. Keep that in mind.


    A similar code is running on my photoEditor to generate a image of the ascii code (what?!)

    result

    result

    result

    Open Source Helpers

    Donations

    Show All