Package org.gephi.io.exporter.preview

Examples of org.gephi.io.exporter.preview.PDFExporter


            layout.goAlgo();

        }
        //export the graph
        ExportController ec = Lookup.getDefault().lookup(ExportController.class);
        PDFExporter exporter = (PDFExporter) ec.getExporter("pdf");
        File lo = new File(lookupFileName);
        File file = new File(lo.getParent().concat("/outPDF.pdf"));
        try {
            ec.exportFile(file, exporter);
        } catch (IOException ex) {
View Full Code Here


        }
      

        System.out.println(H.getNodeCount() + " " + H.getEdgeCount());
        ExportController ec = Lookup.getDefault().lookup(ExportController.class);
        PDFExporter exporter = (PDFExporter) ec.getExporter("pdf");
       
        File lo = new File(lookupFileName);
        File file = new File(lo.getParent().concat("/outPDF.pdf"));
        try {
            ec.exportFile(file, exporter);
View Full Code Here

TOP

Related Classes of org.gephi.io.exporter.preview.PDFExporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.