guru.nidi.graphviz.engine.Graphviz.fromString()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(172)

本文整理了Java中guru.nidi.graphviz.engine.Graphviz.fromString()方法的一些代码示例,展示了Graphviz.fromString()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Graphviz.fromString()方法的具体详情如下:
包路径:guru.nidi.graphviz.engine.Graphviz
类名称:Graphviz
方法名:fromString

Graphviz.fromString介绍

暂无

代码示例

代码示例来源:origin: schemacrawler/SchemaCrawler

Graphviz.fromString(dotSource).render(format).toFile(outputFile.toFile());

代码示例来源:origin: nidi3/graphviz-java

public static Graphviz fromFile(File src) throws IOException {
  try (final InputStream in = new FileInputStream(src)) {
    return fromString(IoUtils.readStream(in));
  }
}

代码示例来源:origin: nidi3/graphviz-java

public static Graphviz fromGraph(MutableGraph graph) {
  return fromString(new Serializer(graph).serialize());
}

代码示例来源:origin: us.fatehi/schemacrawler

Graphviz.fromString(dotSource).render(format).toFile(outputFile.toFile());

代码示例来源:origin: us.fatehi/schemacrawler-integrations

Graphviz.fromString(dotSource).render(format).toFile(outputFile.toFile());

代码示例来源:origin: nidi3/graphviz-java

private static String render(String raw) {
  final int pos = raw.indexOf("@@@");
  final Options options;
  final String src;
  if (pos < 0) {
    options = Options.create().format(SVG_STANDALONE);
    src = raw;
  } else {
    options = Options.fromJson(raw.substring(0, pos));
    src = raw.substring(pos + 3);
  }
  return Graphviz.fromString(src)
      .engine(options.engine)
      .totalMemory(options.totalMemory)
      .yInvert(options.yInvert)
      .render(options.format).toString();
}

相关文章