How can I have the file in SVG if I use the -pipe option with command line from a c# program

0 votes
asked Oct 17, 2017 in Wanted features by anonymous

Hi

I have a program in c# that use the Process way to execute the plantUml.jar file.

If we use the -pipe option, and we would like to have the file in svg, is it possible.

I try with -tsvg and this is not working...

 

Thx

 

1 Answer

0 votes
answered Oct 17, 2017 by plantuml (294,960 points)

Which version of PlantUML are you using ?

You can check it with : java -jar plantuml.jar -version

We've just tested:

type test1.txt | java -jar plantuml.jar -pipe -tsvg

and this is working fine for us.

 

commented Oct 19, 2017 by Francis
I am using the last version (1.2017.18).  Finally it works, I put the -tsvg parameter before the
-pipe.  Thx for your response.
...