Tema: Imágenes
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 30/12/2012, 18:28
Elfede171
 
Fecha de Ingreso: agosto-2011
Ubicación: Montevideo
Mensajes: 44
Antigüedad: 13 años, 4 meses
Puntos: 5
Respuesta: Imágenes

Sige sin funcionar. Este es mi código:
Si alguien lo hace funcionar y me pasa el nuevo código se lo agradecería un montón. Sé que le imagen funciona y está en la dirección correcta ya que lo he intentado con otros métodos y la imagen ha cargado, aunque no de la forma que lo quería, pero sí lo ha hecho. El tema es que quiero usar drawImage para esto.

Código Java:
Ver original
  1. import java.awt.*;
  2. import javax.swing.*;
  3.  
  4. public class mainClass extends JFrame implements Runnable {
  5.  
  6.     private static final long serialVersionUID = 1L;
  7.     boolean condicion;
  8.  
  9.     // Alto y largo de la pantalla del juego
  10.     public final int width = 640, height = 480;
  11.     Thread threadprincipal;
  12.  
  13.     // Inicialización de la ventana
  14.     public mainClass() {
  15.        
  16.         // Definimos la ventana
  17.         this.setTitle("Mi título");
  18.         this.setBounds(100, 100, width, height);
  19.         this.setVisible(true);
  20.         this.setResizable(false);
  21.         this.setIgnoreRepaint(true);
  22.         this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
  23.  
  24.         threadprincipal = new Thread(this);
  25.         threadprincipal.start();
  26.     }
  27.  
  28.     public void terminarJuego() {
  29.         this.condicion = false;
  30.     }
  31.    
  32.     // Clase Runnable
  33.     public void run() {
  34.         condicion = true;
  35.         while (condicion) {
  36.             render();
  37.             esperar(20);
  38.         }
  39.         System.exit(0);
  40.     }
  41.    
  42.     public void esperar(int tiempo){
  43.         try { Thread.sleep(tiempo); }
  44.         catch (InterruptedException e) {}
  45.     }
  46.    
  47.     // Dibujo del juego
  48.     private void render() {
  49.         Graphics g;
  50.         g = this.getGraphics();
  51.        
  52.         Image img1 = Toolkit.getDefaultToolkit().getImage("char01down01.png");
  53.        
  54.         if (g != null) {
  55.             g.drawImage(img1, 0, 0, this);
  56.             Toolkit.getDefaultToolkit().sync();
  57.             g.finalize();
  58.         }
  59.     }
  60.  
  61.     // Método principal
  62.     public static void main(String[] args) {
  63.         mainClass window = new mainClass();
  64.     }
  65. }

Última edición por Elfede171; 30/12/2012 a las 19:02