Class ImageToAwt

java.lang.Object
jme3tools.converters.ImageToAwt

public class ImageToAwt extends Object
  • Method Details Link icon

    • convert Link icon

      public static void convert(BufferedImage image, Image.Format format, ByteBuffer buf)
      Convert an AWT image to jME image. XXX not implemented yet!
      Parameters:
      image - the input image (not null, unaffected)
      format - the data format
      buf - the output buffer (not null, modified)
    • createData Link icon

      public static void createData(Image image, boolean mipmaps)
    • convert Link icon

      public static void convert(Image input, Image output)
      Convert the image from the given format to the output format. It is assumed that both images have buffers with the appropriate number of elements and that both have the same dimensions.
      Parameters:
      input - the input image (not null, unaffected)
      output - the output image (not null, modified)
    • convert Link icon

      public static BufferedImage convert(Image image, boolean do16bit, boolean fullAlpha, int mipLevel)