|
36 | 36 | import com.sun.hotspot.igv.graph.Diagram;
|
37 | 37 | import com.sun.hotspot.igv.graph.Figure;
|
38 | 38 | import com.sun.hotspot.igv.graph.services.DiagramProvider;
|
39 |
| -import com.sun.hotspot.igv.svg.BatikSVG; |
40 | 39 | import com.sun.hotspot.igv.util.LookupHistory;
|
41 | 40 | import com.sun.hotspot.igv.util.RangeSlider;
|
42 | 41 | import com.sun.hotspot.igv.view.actions.*;
|
|
48 | 47 | import java.beans.PropertyChangeEvent;
|
49 | 48 | import java.beans.PropertyChangeListener;
|
50 | 49 | import java.io.*;
|
| 50 | +import java.nio.charset.StandardCharsets; |
51 | 51 | import java.util.List;
|
52 | 52 | import java.util.*;
|
53 | 53 | import javax.swing.*;
|
54 | 54 | import javax.swing.border.Border;
|
| 55 | +import org.apache.batik.dom.GenericDOMImplementation; |
| 56 | +import org.apache.batik.svggen.SVGGeneratorContext; |
| 57 | +import org.apache.batik.svggen.SVGGraphics2D; |
| 58 | +import com.lowagie.text.Document; |
| 59 | +import com.lowagie.text.Rectangle; |
| 60 | +import com.lowagie.text.pdf.PdfWriter; |
| 61 | +import com.lowagie.text.pdf.PdfContentByte; |
| 62 | +import com.lowagie.text.pdf.PdfTemplate; |
| 63 | +import com.lowagie.text.pdf.PdfGraphics2D; |
| 64 | +import org.w3c.dom.DOMImplementation; |
55 | 65 | import org.openide.DialogDisplayer;
|
56 | 66 | import org.openide.NotifyDescriptor;
|
57 | 67 | import org.openide.actions.RedoAction;
|
@@ -103,30 +113,14 @@ public final class EditorTopComponent extends TopComponent implements PropertyCh
|
103 | 113 | @Override
|
104 | 114 | public void export(File f) {
|
105 | 115 |
|
106 |
| - Graphics2D svgGenerator = BatikSVG.createGraphicsObject(); |
107 |
| - |
108 |
| - if (svgGenerator == null) { |
109 |
| - NotifyDescriptor message = new NotifyDescriptor.Message("For export to SVG files the Batik SVG Toolkit must be intalled.", NotifyDescriptor.ERROR_MESSAGE); |
110 |
| - DialogDisplayer.getDefault().notifyLater(message); |
| 116 | + String lcFileName = f.getName().toLowerCase(); |
| 117 | + if (lcFileName.endsWith(".pdf")) { |
| 118 | + exportToPDF(scene, f); |
| 119 | + } else if (lcFileName.endsWith(".svg")) { |
| 120 | + exportToSVG(scene, f); |
111 | 121 | } else {
|
112 |
| - scene.paint(svgGenerator); |
113 |
| - FileOutputStream os = null; |
114 |
| - try { |
115 |
| - os = new FileOutputStream(f); |
116 |
| - Writer out = new OutputStreamWriter(os, UTF_8); |
117 |
| - BatikSVG.printToStream(svgGenerator, out, true); |
118 |
| - } catch (FileNotFoundException e) { |
119 |
| - NotifyDescriptor message = new NotifyDescriptor.Message("For export to SVG files the Batik SVG Toolkit must be intalled.", NotifyDescriptor.ERROR_MESSAGE); |
120 |
| - DialogDisplayer.getDefault().notifyLater(message); |
121 |
| - } finally { |
122 |
| - if (os != null) { |
123 |
| - try { |
124 |
| - os.close(); |
125 |
| - } catch (IOException e) { |
126 |
| - } |
127 |
| - } |
128 |
| - } |
129 |
| - |
| 122 | + NotifyDescriptor message = new NotifyDescriptor.Message("Unknown image file extension: expected either '.pdf' or '.svg'", NotifyDescriptor.ERROR_MESSAGE); |
| 123 | + DialogDisplayer.getDefault().notifyLater(message); |
130 | 124 | }
|
131 | 125 | }
|
132 | 126 | };
|
@@ -639,5 +633,47 @@ public UndoRedo getUndoRedo() {
|
639 | 633 | @Override
|
640 | 634 | protected Object writeReplace() throws ObjectStreamException {
|
641 | 635 | throw new NotSerializableException();
|
642 |
| -} |
| 636 | + } |
| 637 | + |
| 638 | + private static void exportToPDF(DiagramViewer scene, File f) { |
| 639 | + int width = scene.getBounds().width; |
| 640 | + int height = scene.getBounds().height; |
| 641 | + com.lowagie.text.Document document = new Document(new Rectangle(width, height)); |
| 642 | + PdfWriter writer = null; |
| 643 | + try { |
| 644 | + writer = PdfWriter.getInstance(document, new FileOutputStream(f)); |
| 645 | + writer.setCloseStream(true); |
| 646 | + document.open(); |
| 647 | + PdfContentByte contentByte = writer.getDirectContent(); |
| 648 | + PdfTemplate template = contentByte.createTemplate(width, height); |
| 649 | + PdfGraphics2D pdfGenerator = new PdfGraphics2D(contentByte, width, height); |
| 650 | + scene.paint(pdfGenerator); |
| 651 | + pdfGenerator.dispose(); |
| 652 | + contentByte.addTemplate(template, 0, 0); |
| 653 | + } catch (Exception e) { |
| 654 | + e.printStackTrace(); |
| 655 | + } finally { |
| 656 | + if (document.isOpen()) { |
| 657 | + document.close(); |
| 658 | + } |
| 659 | + if (writer != null) { |
| 660 | + writer.close(); |
| 661 | + } |
| 662 | + } |
| 663 | + } |
| 664 | + |
| 665 | + private static void exportToSVG(DiagramViewer scene, File f) { |
| 666 | + DOMImplementation dom = GenericDOMImplementation.getDOMImplementation(); |
| 667 | + org.w3c.dom.Document document = dom.createDocument("http://www.w3.org/2000/svg", "svg", null); |
| 668 | + SVGGeneratorContext ctx = SVGGeneratorContext.createDefault(document); |
| 669 | + ctx.setEmbeddedFontsOn(true); |
| 670 | + SVGGraphics2D svgGenerator = new SVGGraphics2D(ctx, true); |
| 671 | + scene.paint(svgGenerator); |
| 672 | + try (FileOutputStream os = new FileOutputStream(f)) { |
| 673 | + Writer out = new OutputStreamWriter(os, StandardCharsets.UTF_8); |
| 674 | + svgGenerator.stream(out, true); |
| 675 | + } catch (IOException e) { |
| 676 | + e.printStackTrace(); |
| 677 | + } |
| 678 | + } |
643 | 679 | }
|
0 commit comments