npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

image-ascii-art

v1.5.2

Published

Convert image to ascii art

Downloads

28

Readme

image-ascii-art

Description

This is a simple web package that converts an input image to ascii art.

🚀🚀🚀 The package is published on npm 🚀🚀

It works on desktop and mobile as well, there is one demo you can find at the link below:

🚀🚀 Image Ascii Art 🚀🚀

The source code of the demo is available on GitHub:

Image Ascii Art

This demo show you how to load a default image and how to load an image from your computer to convert it to ascii art.

Video Stream version

I also made a video stream version.

🚀🚀 Video Ascii Webcam 🚀🚀

🚀🚀 Video Ascii Player 🚀🚀

The source code of the examples is available on GitHub:

Screenshots

Install packages

You can install it by typing the following command in your terminal:

npm install image-ascii-art

or

yarn add image-ascii-art

Usage

To use the package, you need to import it into your project:

import {ImageAscii} from "image-ascii-art";

Then you can create use the Component like this in Typescript/JavaScript:

<ImageAscii
    image={image!}
    parentRef={parentRef}
    artType={ArtTypeEnum.ASCII_COLOR_BG_IMAGE}
    charsPerLine={charsPerLine}
    charsPerColumn={charsPerColumn}
    fontColor={'white'}
    backgroundColor={'black'}
/>

You can also pass a pre tag reference to the component, so it can be used to get the ASCII text:

<ImageAscii
    image={image!}
    parentRef={parentRef}
    artType={ArtTypeEnum.ASCII_COLOR_BG_IMAGE}
    charsPerLine={charsPerLine}
    charsPerColumn={charsPerColumn}
    fontColor={'white'}
    backgroundColor={'black'}
    preTagRef={preTagRef}
/>

To use the component, you need to pass the following props:

  • image - The input HTMLImageElement.
  • parentRef - The reference of the parent element, to fit the ascii art in it.
  • artType - The type of the ascii art, you can choose between ASCII, ASCII_COLOR and ASCII_COLOR_BG_IMAGE.
  • charsPerLine - The number of characters per line.
  • charsPerColumn - The number of characters per column.
  • fontColor - The color of the font.
  • backgroundColor - The color of the background.
  • preTagRef - The reference of the pre tag, to get the ascii art text.

The parentRef is used to fit the ascii art in the parent element, so you need to pass the reference of the parent element like a div, you can check the example to see how to use it.

Warning
Be careful when using this package, the image must be loaded before enabling the Image Ascii component, otherwise it will not work. If you want to set the ascii art with a correct aspect ratio, follow the example at the link below: Image Ascii Art

The artType is used to choose the type of the ascii art, you can choose between ASCII, ASCII_COLOR and ASCII_COLOR_BG_IMAGE.

  • ASCII - The ascii art will be defined only by two colors the font color and the background color. (which you can set with the props fontColor and backgroundColor).
  • ASCII_COLOR - The ascii art will be printed with each character having the color of the pixel it represents (it is an extensive mode, you should use the ASCII_COLOR_BG_IMAGE mode instead).
  • ASCII_COLOR_BG_IMAGE - The ascii art will be printed with color using the original image as background for the color of the characters, you should use this mode if you want good performance instead of the ASCII_COLOR mode.

Note Be sure to import the enum ArtTypeEnum from the package, to use it in your code.

Code style

The code style used in this project is XO. You can find some changes in the .eslintrc.js file. The project is also set up to use ESLint.

GitHub Actions

Node.js CI ESLint CodeQL Node.js Package

The project is set up to run the following actions:

  • node.js.yml : Runs the tests for the Node.js project.
  • eslint.yml : Runs the ESLint linter on the project.
  • codeql.yml : Runs the CodeQL linter on the project.
  • npm-publish.yml : Publishes the package to the npm registry.

Documentations

Xo:
https://github.com/xojs/xo

ESLint:
https://eslint.org/docs/latest/user-guide/getting-started

GitHub gh-pages:
https://github.com/gitname/react-gh-pages

Links

Check the source code on github

Check the package on npm

Contributors

Quentin MOREL :

GitHub contributors