draw.io 一款开源免费流程图绘制软件

2022-06-12 linux

这是一款免费开源的图形绘制软件,这里简单整理常见用法。

简介

draw.io 是一款免费的流程图绘制软件,简洁、方便,可以将图形保存在 Github、Google 中,也可以从 releases 中下载离线版本。

download

使用时可以同时使用 SVG、PNG 等格式的图片,只需要复制过去即可,可以参考 www.iconfont.cn 中的内容。

其它

自定义图形

详细可以参考 Create custom shapes in draw.io using the text editor 中的介绍,其原点在左上角,横线向右为 X 轴,竖线向下为 Y 轴,如下是简单实例。

<shape h="100" w="80" aspect="variable" strokewidth="inherit">
  <connections>
    <constraint x="0" y="0" perimeter="1" />
  </connections>
  <background>
    <path>
      <move x="0" y="0"/>
      <line x="80" y="0"/>
      <line x="80" y="50"/>
      <line x="55" y="50"/>
      <line x="55" y="100"/>
      <line x="0" y="100"/>
      <close/>
    </path>
  </background>
  <foreground>
    <fillstroke />
    <stroke />
  </foreground>
</shape>