Package ru.snake.spritepacker.component

Examples of ru.snake.spritepacker.component.ImageView


  public static void showImage(Component parent, BufferedImage image) {
    if (image == null) {
      return;
    }

    ImageView view = new ImageView(image);

    JOptionPane.showOptionDialog(parent, view, APPLICATION_NAME,
        JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null,
        null, null);
  }
View Full Code Here

TOP

Related Classes of ru.snake.spritepacker.component.ImageView

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.