# kevin graphvis **Repository Path**: PhoenixWing321/kevin_graphvis ## Basic Information - **Project Name**: kevin graphvis - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-12 - **Last Updated**: 2024-07-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 安装 官网下载,比如: https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/11.0.0/windows_10_cmake_Release_graphviz-install-11.0.0-win64.exe # 配置 默认安装时已经添加了路径: 添加Path路径:`C:\Program Files\Graphviz\bin` # 测试 在命令行中输入: `dot -v` # 画图 ``` dot -Tjpg -o ./student.jpg ./student.dot ``` # 中文乱码 - log详细模式 -v ``` dot -Tjpg -o ./student.jpg ./student.dot -v ``` # 微软的网站上查询字体的英文名 https://learn.microsoft.com/en-us/typography/font-list/ # graphViz官网 https://www.graphviz.org/doc/info/shapes.html # 方向:rankdir ``` digraph { rankdir="BT" a -> b -> c; } ``` # 插件 - VScode 预览插件: Graphviz(dot) language supported and preview