EPS
EPS is a graphical format which is scalable. It means that when you zoom an image, you don't loose quality. So this format gives good printing result.
EPS Support
- You can enable it by using
-tepsflag at the command line. - By default, EPS output generates text outlines (i.e., the shapes of letters). This may have some advantages if the EPS renderer does not have access to appropriate fonts. However, this makes it impossible to select, search, or copy text from the generated diagrams. If you want to keep the original text, use the
-teps:textflag. [Ref. QA-3214] - You can also specify
format="eps"orformat="eps:text"in the ant task definition.
<target name="main">
<plantuml dir="./src" format="eps" />
</target>