# structurizr-graphviz **Repository Path**: beyond-prototype/structurizr-graphviz ## Basic Information - **Project Name**: structurizr-graphviz - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-04 - **Last Updated**: 2023-11-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # structurizr-graphviz This library provides automatic facilities for Structurizr views. It's a wrapper around the [Graphviz tool](http://www.graphviz.org), which allows you to apply the Graphviz layout algorithm to the views in a Structurizr workspace. > You will need Graphviz installed. For example: ```java Workspace workspace = ... GraphvizAutomaticLayout graphviz = new GraphvizAutomaticLayout(); graphviz.apply(workspace); ``` The ```structurizr-graphviz``` library does the following for every view in the workspace: 1. Export the view to a DOT file. 2. Run Graphviz (via the ```dot``` command), with the output format set to SVG. 3. Parse the generated SVG to extract layout information, and apply this to the Structurizr view (element x,y positions, relationship vertices, and paper size). Once the layout has been applied, you can upload your workspace to the Structurizr cloud service/on-premises installation as usual. - [Changelog](docs/changelog.md)