mxgraph有encode 和decode方法,既然可以通过encode编码为xml文件:
var encoder = new mxCodec();
var node = encoder.encode(graph.getModel());
那么解码成图像也可以实现:
var req = mxUtils.load('jbpm/mxgraph.xml');
var root = req.getDocumentElement();
var dec = new mxCodec(root);
dec.decode(root, graph.getModel());
graph.getModel().endUpdate();
需要注意的是:
mxgraph.xml中自定义的style在这个解码图像的js中也要写一遍,如:
var style = new Object();
style[mxConstants.STYLE_SHAPE] = mxConstants.SHAPE_IMAGE;
style[mxConstants.STYLE_PERIMETER] = mxPerimeter.RectanglePerimeter;
style[mxConstants.STYLE_IMAGE] = 'editors/images/bigicon/start_event_empty.png';
style[mxConstants.STYLE_IMAGE_WIDTH] = '48';
style[mxConstants.STYLE_IMAGE_HEIGHT] = '48';
style[mxConstants.STYLE_FONTCOLOR] = '#000000';
style[mxConstants.STYLE_VERTICAL_LABEL_POSITION] = mxConstants.ALIGN_CENTER;
graph.getStylesheet().putCellStyle('start-s', style);
完整的一个显示xml流程图的代码:
mxgraphShow.html
<!--
$Id: uiconfig.html,v 1.6 2010-01-02 09:45:14 gaudenz Exp $
Copyright (c) 2006-2010, JGraph Ltd
UIConfig example for mxGraph. This example demonstrates using a config
file to configure the toolbar and popup menu in mxEditor.
-->
<html>
<head>
<title>UIConfig example</title>
<!-- Sets the basepath for the library if not in same directory -->
<!-- Loads and initiaizes the library -->
<link rel="stylesheet" type="text/css" href="ext-3.3.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.3.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.3.0/ext-all.js"></script>
<script type="text/javascript">
mxBasePath = 'ext-3.3.0/src';
</script>
<!-- Loads and initiaizes the library -->
<script type="text/javascript" src="ext-3.3.0/mxclient-chrome.js"></script>
<script type="text/javascript" src="ext-3.3.0/mxclient-ff.js"></script>
<script type="text/javascript" src="ext-3.3.0/mxclient-ie.js"></script>
<!-- Example code -->
<script type="text/javascript">
// Program starts here. Creates a sample graph in the
// DOM node with the specified ID. This function is invoked
// from the onLoad event handler of the document (see below).
function main()
{
// Checks if the browser is supported
if (!mxClient.isBrowserSupported())
{
// Displays an error message if the browser is not supported.
mxUtils.error('Browser is not supported!', 200, false);
}
else
{
var container = document.getElementById('lala');
container.style.position = 'absolute';
container.style.overflow = 'hidden';
container.style.left = '0px';
container.style.top = '0px';
container.style.right = '0px';
container.style.bottom = '0px';
document.body.appendChild(container);
var model = new mxGraphModel();
var graph = new mxGraph(container, model);
var style = new Object();
style[mxConstants.STYLE_SHAPE] = mxConstants.SHAPE_IMAGE;
style[mxConstants.STYLE_PERIMETER] = mxPerimeter.RectanglePerimeter;
style[mxConstants.STYLE_IMAGE] = 'images/start_event_empty.png';
style[mxConstants.STYLE_IMAGE_WIDTH] = '48';
style[mxConstants.STYLE_IMAGE_HEIGHT] = '48';
style[mxConstants.STYLE_FONTCOLOR] = '#000000';
style[mxConstants.STYLE_VERTICAL_LABEL_POSITION] = mxConstants.ALIGN_CENTER;
graph.getStylesheet().putCellStyle('start-s', style);
graph.getModel().beginUpdate();
var req = mxUtils.load('mxgraph.xml');
var root = req.getDocumentElement();
var dec = new mxCodec(root);
dec.decode(root, graph.getModel());
graph.getModel().endUpdate();
}
}
</script>
</head>
<!-- Page passes the container for the graph to the grogram -->
<body onload="main();" style="margin:0px;">
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
<tr><td><div id="lala"></div></td></tr>
</table>
</body>
</html>
mxgraph.xml
<mxGraphModel>
<root>
<mxCell id="0"/>
<mxCell id="1" parent="0"/>
<mxCell id="2" style="start-s" vertex="1" parent="1">
<mxGeometry x="130" y="40" width="60" height="60" as="geometry"/>
</mxCell>
</root>
</mxGraphModel>
将附件中图片放在webRoot/images/start_event_empty.png
*******************结束的格叽格叽************************
感动比不上心动,Lysh,你心动过么?
- 大小: 1.9 KB
分享到:
相关推荐
在这个场景中,我们需要利用mxGraph前端插件来绘制流程图,并通过Java后端将XML数据转换为图片。 在前端部分,mxGraph允许用户通过JavaScript代码动态构建图形,这些图形可以是流程图、组织结构图等。用户可以...
一旦图形数据加载完毕,可以调用graph.model.cellAdded方法将XML解析出的元素添加到图中,然后使用graph.view.validateGraph更新视图以显示新添加的元素。 此外,mxGraph还提供了丰富的交互功能,如拖放、连接、...
mxGraph是一款强大的JavaScript库,专为在Web上创建和编辑图形和流程图而设计。它提供了丰富的功能,允许用户通过简单易用的API构建复杂的图形界面。基于mxGraph的工具通常用于业务流程建模、软件设计、网络架构可视...
Based on the latest web technologies, mxGraph is the ultimate component for drawing diagrams in a browser. Using open standards, mxGraph does not depend on any third-party plugins and proprietary ...
mxgraph自定义图元很难调试,这个工具可以通过svg转为xml ,通过微调达到图元定义的目的
mxGraph是一款强大的JavaScript库,专为在Web应用中创建交互式和可编辑的图形界面而设计,特别是用于绘制流程图、组织结构图、网络拓扑图等。它以其丰富的功能集、灵活性和高性能而在IT领域受到广泛欢迎。下面将详细...
7. **导入导出**:mxGraph支持XML格式的数据交换,可以将图形布局保存到文件,或者从文件加载图形,便于数据持久化和分享。 8. **API文档和社区**:mxGraph官网提供详尽的API文档,帮助开发者快速上手。同时,活跃...
mxGraph是一个JS绘图组件适用于需要在网页中设计/编辑Workflow/BPM流程图、图表、网络图和普通图形的Web应用程序。mxgraph下载包中包括用javescript写的前端程序,也包括多个和后端程序(java/C#等等)集成的例子。以下...
mxGraph 是一个 JS 绘图组件适用于需要在网页中设计/编辑 Workflow/BPM 流 程图、图表、网络图和普通图形的 Web 应用程序。mxgraph 下载包中包括用 javescript 写的前端程序,也包括多个和后端程序(java/C#等等)...
mxGraph 破解版备份 流程图 绘制
mxGraph是一款强大的JavaScript库,专用于在Web页面上创建流程图和工作流设计器。这款工具以其高度可定制性、灵活性和跨浏览器兼容性而受到广大开发者的青睐。它支持包括Internet Explorer和Firefox在内的多种主流...
MXGRAPH通常指的是一个开源的JavaScript图形库,用于创建可交互的图表和流程图,但它与音乐文件无关。如果您需要关于MXGRAPH的详细信息,我可以提供如下内容: MXGRAPH是一个强大的图形编辑框架,主要用于创建富...
7. **数据绑定与导入导出**:mxgraph支持多种数据格式的导入和导出,如JSON、XML和图片。这使得用户可以方便地在不同工具间交换数据,或者将图形数据存储在数据库中。 总的来说,"mxgraph1.02WEB图形设计"为Web开发...
**mxgraph Editor** 是一款基于JavaScript的开源图形编辑器,专为绘制流程图、工作流、拓扑图等图表设计。它使用了mxGraph库,一个功能强大的图形渲染和操作库,提供了丰富的图形编辑功能。 **mxGraph核心概念:** ...
NULL 博文链接:https://lynnlysh.iteye.com/blog/1290007
mxGraph是一款强大的JavaScript图形库,专门用于在Web应用程序中创建和编辑各种流程图、工作流图、图表、网络图以及一般的图形。它以其高度可定制性、灵活性和丰富的功能集而受到开发者的青睐。这个“mxgraph-eval-1...
在mxGraph中,你可以创建各种形状,如矩形、圆形、箭头等,并通过连接这些形状来构建网络或流程图。其核心概念包括节点(Vertices)、边(Edges)和图形(Graph)。节点代表图中的实体,边则表示它们之间的关系。...
而基于mxgraph的流程建模JavaScript框架则为开发者提供了一个强大且灵活的工具,使得在Web环境中创建交互式流程图成为可能。mxgraph是一个开源的图形库,支持多种图形绘制,包括流程图、网络拓扑图等,它以其高效...
SVG到XML mxGraph模具定义转换工具。 它是为内部使用而创建的,因此还有很多未完成的事情。 要编译并运行此程序,请使用ant或以下命令。 编译 mkdir classes javac -d classes -classpath lib/mxgraph-core.jar -...
- **其他格式**:通过mxGraph提供的工具,可以将图形转换为其他格式,如图片(PNG、SVG)或者XML。 5. **示例** - `examples`目录下的文件展示了如何使用mxGraph创建各种图形应用程序。例如: - `grapheditor....