New! Render PlantUML diagrams directly inside GitHub
with our official browser extension —
No server. No tokens. No tracking. Zero permissions but clipboard. —
Try it out and let us know what you think!
EPS
[EPS] (http://en.wikipedia.org/wiki/Encapsulated_PostScript) - это графический формат, изображения в котором возможно масштабировать без потери качества, даёт хорошие резултьтаты при печати.Поддержка EPS
Вы можете включить его, используя флаг-teps в командной строке.
Вы также можете использовать format="eps" в определении ant task.
<target name="main">
<plantuml dir="./src" format="eps" />
</target>
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>