Drawing diagrams with PlantUML
Flow Diagrams
Flow diagrams show the several steps that make a task or algorithm and can be used for anything from statistical analyses to cake recipes. Figure 6, which is taken from the PlantBuddy GitHub site [4], shows a PlantUML flow diagram. While the language in Figure 6's source code (Listing 6) is intuitive, you need to know how to write a while
cycle (lines 5 and 13) and how to use markers to delimit each phase of the flow. You use a colon at the beginning of a phase and semicolon at the end.
Listing 6
Flow Diagrams
01 @startuml 02 03 :read moisture level; 04 :read humidity + temperature; 05 while (sensor readings) is (invalid) 06 :wait 2s; 07 :read moisture level; 08 :read humidity + temperature; 09 :increase counter; 10 if (MAX_READING_RETRIES reached) then (yes) 11 :send controller to deep sleep; 12 endif 13 endwhile (valid) 14 :submit sensor data; 15 16 @enduml

Diagram Formatting
UML and PlantUML offer many options for controlling text formatting, as well as style and appearance.
According to the manual [5], the scale
command enlarges the generated image in several ways, including but not limited to these options:
scale 1.5 scale 200 width scale 1400*700
However, this option did not work as documented on several of my diagrams.
To format text, PlantUML supports both basic HTML tags like bold and underline, and their equivalents in Creole format, such as:
@startuml This is **bold** This is //italics// This is ""monospaced"" This is --stroked-- This is __underlined__ This is ~~waved~~
The most important formatting command in PlantUML, skinparam
(see [5] for its many attributes), lets you set fonts, background and text color, title properties, and much more. As an example, you can customize UML diagrams with skinparam
to create real templates as shown in Listing 7.
Listing 7
skinparam Customizations
01 skinparam backgroundColor transparent 02 skinparam monochrome true 03 04 skinparam titleBorderRoundCorner 15 05 skinparam titleBorderThickness 2 06 skinparam titleBackgroundColor Aqua-CadetBlue 07 08 skinparam classFontColor red 09 skinparam classFontSize 10 10 skinparam classFontName Aapex
skinparam
's only drawback is that the more you use it, the less portable your diagrams may become. This is especially true with fonts, which may not be available on all systems that will generate diagrams from your UML code.
Diagram Metadata
Besides the actual diagram, UML files can define several widgets that give context, structure, and generally make the diagrams themselves easier to understand. For brevity, Figure 7 shows all of these elements, plus it introduces a few other PlantUML features. The source code for Figure 7 is shown in Listing 8.
Listing 8
Adding Widgets
01 @startuml 02 caption Figure 1 Caption 03 title 04 <size:30><&bullhorn>Use case UML diagram<&star></size> 05 endtitle 06 07 header 08 header (not title) goes here 09 endheader 10 11 center footer You can also have a footer 12 13 legend right 14 This example shows 15 how you can add 16 <u><b>"meta-information"</b></u> 17 to any diagram 18 endlegend 19 20 left to right direction 21 skinparam packageStyle rectangle 22 actor customer 23 actor clerk 24 rectangle checkout { 25 customer -- (checkout) 26 (checkout) .> (payment) : include 27 (help) .> (checkout) : extends 28 (checkout) -- clerk 29 } 30 @enduml
In Listing 8, the actual diagram is shown in lines 20 to 29; again, you can easily understand the source code by comparing it carefully with the drawing. Lines 2 to 18 demonstrate how to define all the widgets I mentioned, from header and footer to title, legend, and captions. Line 4 requires an explanation. While the size:30
statement is self-explanatory, the &bullhorn
and &star
keywords tell PlantUML to insert the corresponding icons from the Open Iconic graphic library [6] (integrated in PlantUML) in their place.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

News
-
First Release Candidate for Linux Kernel 6.14 Now Available
Linus Torvalds has officially released the first release candidate for kernel 6.14 and it includes over 500,000 lines of modified code, making for a small release.
-
System76 Refreshes Meerkat Mini PC
If you're looking for a small form factor PC powered by Linux, System76 has exactly what you need in the Meerkat mini PC.
-
Gnome 48 Alpha Ready for Testing
The latest Gnome desktop alpha is now available with plenty of new features and improvements.
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.