• [skill][graphviz] 到底用什么画图: graphviz/inkscape/yed


    官方教程文档:http://www.graphviz.org/pdf/dotguide.pdf 

    一:在文档里抄一个简单的例子

    /home/tong/Src/copyright/onescorpion/chimpanzee/doc [git::master *] [tong@T7] [15:36]
    > cat test.gv 
    digraph G {
            subgraph cluster0 {
                    node [style=filled,color=white];
                    style=filled;
                    color=lightgrey;
                    a0 -> a1 -> a2 -> a3;
                    label = "process #1";
            }
            subgraph cluster1 {
                    node [style=filled];
                    b0 -> b1 -> b2 -> b3;
                    label = "process #2";
                    color=blue
            }
            start -> a0;
            start -> b0;
            a1 -> b3;
            b2 -> a3;
            a3 -> a0;
            a3 -> end;
            b3 -> end;
            start [shape=Mdiamond];
            end [shape=Msquare];
    }
    例子

    二:编译并运行

    /home/tong/Src/copyright/onescorpion/chimpanzee/doc [git::master *] [tong@T7] [15:39]
    > dot -T png test.gv -o test.png  
    
    /home/tong/Src/copyright/onescorpion/chimpanzee/doc [git::master *] [tong@T7] [15:39]
    > xv test.png 

    subgraph 横向排列,subgraph中node纵向排列的技巧:

    弄了好久的rank发现好像不行,链接一条不可见的线.如下:

    https://stackoverflow.com/questions/1554635/graphviz-how-to-have-a-subgraph-be-left-to-right-when-main-graph-is-top-to-bot

    ------------------------   update @ 20170811 -------------------------------

    脑图, 流程图,  关系单一的关系图. 哪怕极其庞大, 花起来都很流畅舒服.  但是关系层次复杂了之后, 自动布局就很难表现了.... 比如需要框图,线条,和复杂指向的多重关系.

    于是我找到了另一个工具, 目前刚刚开始使用.

    https://inkscape.org/en/learn/tutorials/

     https://inkscape.org/en/doc/tutorials/basic/tutorial-basic.en.html

    -----------------------  update @ 20170814 ---------------------------------


    inkscape 很专业, 但是更类似与PS. 而不是专注于画图标...

    If you want to work with photographs (raster images), GIMP is your best bet. There are lots of brush and plugin collections floating around the net, too (e.g. see here).
    If you want to create logos, diagrams and illustrations (vector images), use Inkscape.

    于是又有了这个:

    http://www.yworks.com/

    https://www.iconfinder.com/

  • 相关阅读:
    .NET中TreeView控件从数据库获取数据源
    .NET中GridView控件的全选删除
    TreeView无限极分类绑定(从数据库读取数据源)
    .NET中GridView代码更改列名
    .NET读写cookie方法
    .NET中GridView控件的高亮显示和删除前弹框提示
    Repeater控件的多层嵌套,DataList控件的多层嵌套
    .NET一些常用的语句集合(不断更新中)
    解决IE5、IE6、IE7与W3C标准的冲突,使用(IE7.js IE8.js)兼容
    kindeditor富文本编辑器ASP.NET源码下载
  • 原文地址:https://www.cnblogs.com/hugetong/p/7307172.html
Copyright © 2020-2023  润新知