X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FImageExporter.java;h=ce1cb4663e0b98e7e3c486e7610f03bc98891ccb;hb=d654b1f014790b7ae25e6eec631847170a930987;hp=5fb69512a4c6cd5e5555a28970439a855b271673;hpb=26b115b0a77d521da92a06572d9b7819c2d0d49a;p=jalview.git diff --git a/src/jalview/gui/ImageExporter.java b/src/jalview/gui/ImageExporter.java index 5fb6951..ce1cb46 100644 --- a/src/jalview/gui/ImageExporter.java +++ b/src/jalview/gui/ImageExporter.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.gui; import jalview.bin.Cache; @@ -38,8 +58,7 @@ public class ImageExporter */ public interface ImageWriterI { - void exportImage(Graphics g) - throws Exception; + void exportImage(Graphics g) throws Exception; } private IProgressIndicator messageBoard; @@ -188,10 +207,10 @@ public class ImageExporter String type = imageType.getName(); try { -// setStatus( -// MessageManager.formatMessage( -// "status.exporting_alignment_as_x_file", type), -// messageId); + // setStatus( + // MessageManager.formatMessage( + // "status.exporting_alignment_as_x_file", type), + // messageId); ImageMaker im = new ImageMaker(imageType, width, height, chosenFile, title, asLineart); imageWriter.exportImage(im.getGraphics()); @@ -201,9 +220,8 @@ public class ImageExporter messageId); } catch (Exception e) { - System.out - .println(String.format("Error creating %s file: %s", type, - e.toString())); + System.out.println(String.format("Error creating %s file: %s", type, + e.toString())); setStatus(MessageManager.formatMessage("info.error_creating_file", type), messageId); }