Socket
Socket
Sign inDemoInstall

aasvg

Package Overview
Dependencies
0
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aasvg

Turn ASCII art diagrams into SVG


Version published
Weekly downloads
80
increased by1.27%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

aasvg

Convert ASCII art diagrams into SVG.

This is inspired by goat but rather than a reimplementation, this code uses the original markdeep code.

Usage

Install with npm install -g aasvg.

Feed aasvg an image and it will write an SVG. For example:

$ aasvg < example.txt > example.svg

example

Character Placement

By default, this does not place text characters on a grid one-by-one as the original markdeep code did.

The --spaces command-line argument controls how text is combined. Use either --spaces=0 or --stretch to provide precise text placement.

--spaces=0 ensures that every character is placed separately; which is precise and avoids text distortion, but makes for a larger SVG that is harder to search.

--stretch can be used with --spaces set to any value. --stretch stretches text to fit, which is less widely implemented in viewers (generally you don't have to worry about this unless you are using an insane profile) and might distort the text a tiny bit because the metrics for the font used (the generic "monospace") cannot be exactly controlled.

Dark Backgrounds

This tool draws black lines and text on a transparent background. In certain settings (such as GitHub when a dark mode is enabled), this produces unfortunate results. If you inline the resulting SVG, you can perform tricks with CSS, but if you are using <img>, that isn't possible. Use the --backdrop switch to generate a mostly-white backdrop for the image.

Keywords

FAQs

Last updated on 12 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc