When I have a plantuml file (ba.pu) like:
@startuml
Bob -> Alice : hello
@enduml
and use:
java -Djava.awt.headless=true -jar plantuml.jar -charset UTF-8 -teps ba.pu
the resulting ba.eps is an eps file, though when I have the file ditaa.pu with:
@startditaa
+--------+ +-------+ +-------+
| | --+ ditaa +--> | |
| Text | +-------+ |diagram|
|Document| |!magic!| | |
| {d}| | | | |
+---+----+ +-------+ +-------+
: ^
| Lots of work |
+-------------------------+
@endditaa
and use
java -Djava.awt.headless=true -jar plantuml.jar -charset UTF-8 -teps ditaa.pu
the resulting ditaa.eps is not an eps file but a png file.
Used version:
PlantUML Version 1.2021.8beta3
This problem has been reported against doxygen (https://github.com/doxygen/doxygen/issues/8657), but is clearly not a doxygen problem.