aivarsk / scruffy

Makes SVG shapes look hand-drawn and creates UML diagrams using yUML (http://yuml.me) syntax
319 stars 60 forks source link

Bad sequence diagram rendering #13

Open canercandan opened 9 years ago

canercandan commented 9 years ago

When I try to generate a scruffy-ed sequence diagram (I used the sample available on the README), I get a weird result with some texts failing to show, here is the command line and the resulting image:

suml -i test.suml --png --sequence --scruffy "[Patron]order food>[Waiter],[Waiter]order food>[Cook],[Waiter]serve wine>[Patron],[Cook]pickup>[Waiter],[Waiter]serve food>[Patron],[Patron]pay>[Cashier]" > test.png

test

Now same test without scruffy option:

suml -i test.suml --png --sequence "[Patron]order food>[Waiter],[Waiter]order food>[Cook],[Waiter]serve wine>[Patron],[Cook]pickup>[Waiter],[Waiter]serve food>[Patron],[Patron]pay>[Cashier]" > test.png

test

Is it a known issue ?

Thanks.