UML diagram tool with beautiful output [closed] - uml

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Is there any UML tool that enables nodes styling? For example, setting not only the background colour for the "Class" node but also paddings, custom text alignment, different font settings of class name and attributes etc.
I like the functionality of yEd designer, but when I need to share a part of my model as a picture, it looks really poor.
Re-making the same diagram in a pure graphic editor is an overkill.

You should have a look at Papyrus. Not only do you have a log of control from within the tool, you can also use CSS externally to affect the rendition of the diagrams.

If you want some pretty automatic (not hand drawn) diagrams, then MS Visio is your choice. They even support 3D objects modelled by you. But don't forget that Visio is not a fully strict modelling tool. It is pretty, but checks only some ties and rules. (It is not at all always bad, though)

Related

visual diagram editor that converts diagrams to text [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I want to be able to create and edit UML-style Diagrams with a graphical editor, and then store a textual representation of that diagram (something that can be part of a version control system).
What good tools are there to perform this kind of task?
I know that the opposite is possible (one can create a diagram using plantUML script and than convert it to a diagram image).
There are a few ways to do this.
1) Many UML tools that support export of XMI (an XML-based model interchange format). The XMI can be version controlled.
2) Tools like Sparx Systems EA allow you to use a version control system (CVS, Subversion, git etc) to change-manage model content as a feature of the app.
3) You can use a tool that uses a text-based file to store its models. Continuity does this (XML-based files) as do others.
Better to edit yourself in a text editor (like notepad++, textpad etc) with block mode selection (Alt+Selection). You can draw one block and copy-paste (or Ctrl+Drag) to create pictures.
Or google for "ascii art converter"

free tool to create feature wireframes on an existing site [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I want to create mockups of new features for an existing site. I'm looking for a simple, free, tool to help em do that. I'm not a gui designer, so I'm not looking for something that keeps the same look and feel, or that is pixel perfect, it can be just a wireframe. Better if it allows the mockups to be click-through (and any other interactive features)
I use Pencil for making mockups. It's free, open source, and cross-platform, and has a good variety of mockup widgets available. It looks like there are some web widgets available (assuming "existing site" refers to a website), there are plenty of desktop widgets, and there are basic rectangles, arrows, polygons, etc. for simple wireframes too. You won't find much in the way of interactivity, but that hasn't been a huge issue for me so far.

Text based UML Diagram Generators [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Which generator tools do you know that are able to generate UML (and perhaps other) diagrams out of text (simple ASCII) based input?
I know about http://plantuml-depend.sourceforge.net/screenshot/screenshot.html
I'm looking for something like
http://yuml.me/
https://www.websequencediagrams.com/#
Requirements:
Generator shouldn't have too many dependencies
CLI based - specify input and output file
Output names should be predictable or specifiable
Possible output formats: SVG, PNG, JPEG, PDF
Generator should be free to use, or available for purchase (no subscription)
Ideally diagram layouting can be influenced in case default layout isn't pleasant
Clean visual diagrams - pleasant to view and read
Actively maintained software
Alternatively to a CLI Tool reading ASCII input I'd also be interested in UML Libraries.
Thanks so far
Claude
As far as I know I keep the most extensive list of textual UML tools here: http://modeling-languages.com/uml-tools/#textual
Hope you'll find at least one that you like
StarUml - http://staruml.sourceforge.net/en/ is open source editor that stores result in XML file. Export to pictures is supported

Are there any libraries to create uml diagrams programmatically [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I want to create uml diagrams with table information from a database. Are there any libraries to do this?
You can either create a text-based representation of the UML model and use one of this textual UML tools to render it graphically or, use the APIs that some UML tools provide to programmatically create the UML model from, e.g., a Java program. For the latter you may want to take a look at the Eclipse Modeling Projects in Eclipse and in particular the UML2 component
UML is a big thing, but some time ago I did a similar task with graphviz. Actually, my code generated a dot file, which is the input format accepted by the graphviz utilities to draw things.
Almost any good diagramming library should be able to create UML diagrams programmatically. Depending on what type of UML diagram you need (class diagram, sequence diagram, collaboration, etc. ) the generic diagramming libraries will definitely work. See here for example:
yFiles Gallery of Diagrams
If you are looking for tools that will automatically do this for you, take a look at
DBVisualizer

Extendable Diagram Tool [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need a Diagram Tool with ability to extend set of diagram types and diagram primitives and save them as templates for future use. User-scripted exports or export formats for my diagrams would be nice, too.
For example, I want to make something like this in my game programming:
http://www.bigbluecup.com/yabb/index.php?topic=38322.0
Now I use great UML-only RationalRose-like editor StarUML. It is very comfortable, stable and I like it very much.
I can think of some options:
Ditaa
PGF/TikZ (uses LaTeX)
Graphviz
Dia
Would any of those help you out? TikZ has been my choice for diagrams since I found it. I don't know if there's anything you can't do. Check out the TikZ examples page. Sorry if I totally missed what you're looking for and provided silly suggestions!

Resources