
Alter.js is a vanilla JavaScript plugin that converts any text strings into PNG images using HTML5 canvas API.
See Also:
- Convert Text Into Fancy/Artistic Unicode Alphabets – Unicoder.js
- Create Morphing ASCII Art Text Using Pure JavaScript – AsciiMorph
- Convert Text Into Emotes – Emotify
How to use it:
Create a textarea to accept the text input.
<canvas id="canv"></canvas> <textarea id="text" onkeyup="grow(this)" placeholder="Text"></textarea> <button id="submit">Submit</button>
Create an empty <img> tag to display the converted image.
<img id="image">
Download and place the Alter.js script at the bottom of the webpage.
<script src="scripts.js"></script>







