1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VS CodeにPlantUMLを導入する(Windows)

Posted at

環境

  • Windows11 64bit
  • VS Code(Version: 1.94.2)
  • PlantUML 拡張(Version: 2.18.1)

前提条件

PlantUML のインストール

Visual Studio MarketplaceからPlantUMLをインストールする

  1. VS Codeで、ctrl + Pを実行してQuick Openを開く
  2. Quick Open に「ext install plantuml」と入力する
  3. 「PlantUML」を選択してインストールする
    ※ 検索結果に「PlantUML Syntax」とかでてくるけど、これらは無視。シンプルに「PlantUML」を選ぶ

しなくてよいこと

他の記事では、Graphviz (dot.exe)を別途用意するようなことが書かれているが、
VS CodeのPlantUML 拡張パッケージが勝手にいろいろやってくれるらしい。

Graphvizの公式サイトにも書かれている

If you use a recent version (that is at least version 1.2020.21), you don't need to manually install GraphViz anymore !

動作確認

プレビュー表示

  1. VS Codeで、新規に.puファイルを作成する(File -> New File -> "test.pu"を作成)
  2. 以下のシーケンス図の構文を入力する
  3. コマンドパレット(CTRL + SHIFT + P)から、[PlantUML: Preview Current Diagram] を選択すると、プレビューが表示される
@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

Alice -> Bob: Another authentication Request
Alice <-- Bob: Another authentication Response
@enduml

画像で出力する

  1. 任意のpuファイルを開く
  2. コマンドパレット(CTRL + SHIFT + P)から、[PlantUML: Export Current Diagram] を選択する
  3. 保存したい拡張子を選択する

参考サイト

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?