X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FImageExporter.java;h=457ea1f835e6ad29013776b4d2dc954092dab2e2;hb=d0aee5b0b2cbd0805c3dec027c6f2d2ac0148e66;hp=785d206b8a5c038361ac745422448491f551bb8f;hpb=ec24991b1786e17158a43f713c8ae9c4f8647393;p=jalview.git diff --git a/src/jalview/gui/ImageExporter.java b/src/jalview/gui/ImageExporter.java index 785d206..457ea1f 100644 --- a/src/jalview/gui/ImageExporter.java +++ b/src/jalview/gui/ImageExporter.java @@ -23,17 +23,19 @@ package jalview.gui; import java.awt.Component; import java.awt.Graphics; import java.io.File; -import java.util.concurrent.Callable; import java.util.concurrent.atomic.AtomicBoolean; import jalview.bin.Cache; import jalview.bin.Jalview; import jalview.io.JalviewFileChooser; import jalview.io.JalviewFileView; +import jalview.io.exceptions.ImageOutputException; import jalview.util.ImageMaker; import jalview.util.ImageMaker.TYPE; import jalview.util.MessageManager; import jalview.util.Platform; +import jalview.util.StringUtils; +import jalview.util.imagemaker.BitmapImageSizing; /** * A class that marshals steps in exporting a view in image graphics format @@ -103,14 +105,15 @@ public class ImageExporter * what the image is of e.g. Tree, Alignment */ public void doExport(File file, Component parent, int width, int height, - String imageSource) + String imageSource) throws ImageOutputException { - doExport(file, parent, width, height, imageSource, null, 0.0f, 0, 0); + doExport(file, parent, width, height, imageSource, null, + BitmapImageSizing.defaultBitmapImageSizing()); } public void doExport(File file, Component parent, int width, int height, - String imageSource, String renderer, float bitmapscale, - int bitmapwidth, int bitmapheight) + String imageSource, String renderer, BitmapImageSizing userBis) + throws ImageOutputException { final long messageId = System.currentTimeMillis(); setStatus( @@ -123,6 +126,12 @@ public class ImageExporter */ if (file == null && !Jalview.isHeadlessMode()) { + if (Desktop.instance.isInBatchMode()) + { + // defensive error report - we could wait for user input.. I guess ? + throw (new ImageOutputException( + "Need an output file to render to when exporting images in batch mode!")); + } JalviewFileChooser chooser = imageType.getFileChooser(); chooser.setFileView(new JalviewFileView()); MessageManager.formatMessage("label.create_image_of", @@ -158,29 +167,22 @@ public class ImageExporter renderStyle = "Text"; } AtomicBoolean textSelected = new AtomicBoolean( - !"Lineart".equals(renderStyle)); - if ((imageType == TYPE.EPS || imageType == TYPE.SVG) - && LineartOptions.PROMPT_EACH_TIME.equals(renderStyle) + !StringUtils.equalsIgnoreCase("lineart", renderStyle)); + if ((imageType == TYPE.EPS || imageType == TYPE.SVG) && StringUtils + .equalsIgnoreCase(LineartOptions.PROMPT_EACH_TIME, renderStyle) && !Jalview.isHeadlessMode()) { final File chosenFile = file; - Callable okAction = () -> { + Runnable okAction = () -> { exportImage(chosenFile, !textSelected.get(), width, height, - messageId, bitmapscale, bitmapwidth, bitmapheight); - return null; + messageId, userBis); }; LineartOptions epsOption = new LineartOptions(TYPE.EPS.getName(), textSelected); - epsOption.setResponseAction(1, new Callable() - { - @Override - public Void call() - { - setStatus(MessageManager.formatMessage( - "status.cancelled_image_export_operation", - imageType.getName()), messageId); - return null; - } + epsOption.setResponseAction(1, () -> { + setStatus(MessageManager.formatMessage( + "status.cancelled_image_export_operation", + imageType.getName()), messageId); }); epsOption.setResponseAction(0, okAction); epsOption.showDialog(); @@ -189,11 +191,11 @@ public class ImageExporter else { /* - * character rendering not required, or preference already set - * - just do the export + * character rendering not required, or preference already set + * or we're in headless mode - just do the export */ exportImage(file, !textSelected.get(), width, height, messageId, - bitmapscale, bitmapwidth, bitmapheight); + userBis); } } @@ -209,8 +211,7 @@ public class ImageExporter * @param messageId */ protected void exportImage(File chosenFile, boolean asLineart, int width, - int height, long messageId, float bitmapscale, int bitmapwidth, - int bitmapheight) + int height, long messageId, BitmapImageSizing userBis) { String type = imageType.getName(); try @@ -220,7 +221,7 @@ public class ImageExporter // "status.exporting_alignment_as_x_file", type), // messageId); ImageMaker im = new ImageMaker(imageType, width, height, chosenFile, - title, asLineart, bitmapscale, bitmapwidth, bitmapheight); + title, asLineart, userBis); imageWriter.exportImage(im.getGraphics()); im.writeImage(); setStatus( @@ -228,8 +229,8 @@ public class ImageExporter messageId); } catch (Exception e) { - System.out.println(String.format("Error creating %s file: %s", type, - e.toString())); + jalview.bin.Console.error(String.format("Error creating %s file: %s", + type, e.toString()), e); setStatus(MessageManager.formatMessage("info.error_creating_file", type), messageId); }