Skip to content

Instantly share code, notes, and snippets.

@yspkm
Created November 10, 2023 04:50
Show Gist options
  • Save yspkm/7fd9bb2a0dea7a8c75fd0e972239da20 to your computer and use it in GitHub Desktop.
Save yspkm/7fd9bb2a0dea7a8c75fd0e972239da20 to your computer and use it in GitHub Desktop.
Dot 파일 컴파일
# 설치 방법
snap install graphviz
# 그래프 이미지 생성 방법
dot -Tpng -Gdpi=300 <dot 파일명> -o <이미지 파일명> # png
dot -Tjpg -Gdpi=300 <dot 파일명> -o <이미지 파일명> # jpg
dot -Tsvg <dot 파일명> -o <이미지 파일명> # svg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment