Created
November 10, 2023 04:50
-
-
Save yspkm/7fd9bb2a0dea7a8c75fd0e972239da20 to your computer and use it in GitHub Desktop.
Dot 파일 컴파일
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 설치 방법 | |
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