2

I use Ubuntu 16.04 and do not look for something like Graph_Easy which parses input, instead I look for some offline, free, WYSIWYG software that does tasks like what asciiflow does. For example these features are necessary:

  • drawing multiple type of shapes (lines, arrows, rectangles) by dragging
  • changing zoom level of page for drawing more longer/wider graphs
  • typing text

asciiflow provides a mean for resizing shapes, which is not necessary for me. Also it is better to be able to draw other shapes like circle. An open source software is appropriated.

Eliah Kagan
  • 119,640

3 Answers3

1

For almost real-time purposes (WYSIWYG) the best method I know is to use G'MIC plugin for GIMP or Krita.You can install by running this:

sudo apt install gimp-gmic

Then in the GIMP window go to Filters->G'MIC.Then a window should pop up with almost 480 filters.Expand the Arrays & tiles and click on Ascii art.Then you should have something like this :

enter image description here

Draw in the canvas and then press the Update button.

If you want to get a output of it in a text file , then check the Output ascii file checkbox and after finishing your task press Apply :

enter image description here

And of course there are more options like setting the charset(e.g uppercase letters , math symbols) , synthesis scale , Gamma correction and so on.

Hope it helps.

0

It seems that the asciiflow provided a tool which can be launched locally. See the installation section of GitHub page.

0

Some one has made a C++ version of ascii editor like the original asciiflow web version. See here: schorsch1976/AsciiFlowQT: QT Based Ascii Chart editor. This project can be build against either the QT GUI library or the wxWidgets GUI library.

I have just build one against the wxWidgets library, see the screen shots in this discussion here: This project can be built with the wxWidget library? · Issue #4 · schorsch1976/AsciiFlowQT

ollydbg23
  • 183