IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

AWT/Swing Java Discussion :

Slide avec deux knobs


Sujet :

AWT/Swing Java

  1. #1
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut Slide avec deux knobs
    Bonjour,
    enfaite j'ai un code qui modifie la valeur des pixels de mon image par rapport à la valeur du slider, du coup moi j'ai besoin d'avoir un slider avec deux knobs qui permets d'afficher juste la valeur ddes pixels entre ses dernieres et j'en ai aucune idée comment le faire

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    int value = ((javax.swing.JSlider)(e.getSource())).getValue();
     
     
    		for(int x=0;x<monImage.getWidth();x++)
    		{
    			for(int y=0;y<monImage.getHeight();y++)
    			{
    				int rgb = outImg.getRGB(x,y);
    				if((rgb&0xff) < value || (rgb&0xff) == 255.0f )
    				{
    					if(selected.equals("cour"))
    						outImgbobc.setRGB(x,y, 0xff000000);
    					else if(selected.equals("180"))
    						outImgbob18.setRGB(x,y, 0xff000000);
    					else if(selected.equals("360"))
    						outImgbob36.setRGB(x,y, 0xff000000);
    				}
    				else
    				{
    					if(selected.equals("cour"))
    						outImgbobc.setRGB(x,y, outImgc.getRGB(x,y));
    					else if(selected.equals("180"))
    						outImgbob18.setRGB(x,y, outImgbo.getRGB(x,y));
    					else if(selected.equals("360"))
    						outImgbob36.setRGB(x,y, outImgbo36.getRGB(x,y));
    				}
    			}
    		}
    		if(selected.equals("cour"))
    			monImage = outImgbobc;
    		else if(selected.equals("180"))
    			monImage = outImgbob18;
    		else if(selected.equals("360"))
    			monImage = outImgbob36;
    		repaint();
     
    	}

  2. #2
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Salut,

    Cherche "ernieyu rangeslider" sur ton moteur de recherche préféré... Il y a aussi celui de Jide.
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  3. #3
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Bonjour j'ai pas réussi à changer mon traitement en allant de celui que vous m'avez proposé du coup j'ai eu l'idée d'utilisé deux slider quand la valeur est supérieur il affiche des valeurs et quand la valeur est inferieur il affiche autre chose du coup on aura que les valeurs entre ses deux bars
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    public void stateChanged2(javax.swing.event.ChangeEvent e)
    	{
    		int value = ((javax.swing.JSlider)(e.getSource())).getValue();
     
     
    		for(int x=0;x<monImage.getWidth();x++)
    		{
    			for(int y=0;y<monImage.getHeight();y++)
    			{
    				int rgb = outImg.getRGB(x,y);
    				if((rgb&0xff) < value || (rgb&0xff) == 255.0f )
    				{
    					/**/
                    repaint();
                    
            }
            
            public void stateChanged3(javax.swing.event.ChangeEvent e)
            {
                    int value = ((javax.swing.JSlider)(e.getSource())).getValue();
     
     
                    for(int x=0;x<monImage.getWidth();x++)
                    {
                            for(int y=0;y<monImage.getHeight();y++)
                            {
                                    int rgb = outImg.getRGB(x,y);
                                    if((rgb&0xff) > value || (rgb&0xff) == 255.0f )
                                    {
                                            /**/
    		repaint();
     
    	}
    Voilà mes deux slider
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    slider = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
    				   slider.addChangeListener(panneau);
    				   slider.setMajorTickSpacing(10);
    				   slider.setPaintTicks(true);
        			   slider.setPaintLabels(true);
    				   slider.setLabelTable(slider.createStandardLabels(10));
     
    				   slider1 = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
    				   slider1.addChangeListener(panneau);
    				   slider1.setMajorTickSpacing(10);
    				   slider1.setPaintTicks(true);
        			   slider1.setPaintLabels(true);
    				   slider1.setLabelTable(slider.createStandardLabels(10));

    Du coup je sais pas comment faire pour continuer vu que mes deux Slider prennet comme evenement que le premier statechanged !

  4. #4
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Il faut soit distinguer la source de l'événement (en testant e.getSource()), soit utiliser deux écouteurs différents, ou utiliser des expressions lambdas en appelant une méthode unique :

    Avec expression lambdas et méthode unique :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    public class DemoSlider extends JPanel {
     
    	private int value1;
    	private int value2;
     
     
    	public DemoSlider() {
    		setPreferredSize(new Dimension(600,400));
    		value1 = 200;
    		value2 = 200;
    	}
     
    	public void setValue1(int value) {
    		this.value1=convert(value);
    		repaint();
    	}
     
    	public void setValue2(int value) {
    		this.value2=convert(value);
    		repaint();
    	}
     
    	private int convert(int value) {
    		return 400-Math.min(Math.max(value,0),400);
    	}
     
    	@Override
    	protected void paintComponent(Graphics g) {
    		super.paintComponent(g);
    		g.setColor(Color.BLACK);
    		g.drawLine(100, value1, 500, value2);
    		drawPoint(g, 100, value1, Color.GREEN);
    		drawPoint(g, 500, value2, Color.RED);
    	}
     
     
    	private void drawPoint(Graphics g, int x, int y, Color color) {
    		g.setColor(color);
    		g.fillOval(x-3, y-3, 6, 6);
    	}
     
    	public static void main(String[] args) {
     
    		JFrame frame = new JFrame("Démo");
     
    		DemoSlider demo = new DemoSlider();
    		frame.add(demo);
     
    		JPanel sliderPanel = new JPanel();
    		sliderPanel.setLayout(new BoxLayout(sliderPanel, BoxLayout.Y_AXIS));
    		frame.add(sliderPanel, BorderLayout.SOUTH);
     
    		JSlider slider1 = new JSlider(JSlider.HORIZONTAL, 0, 400, 200);
    		JSlider slider2 = new JSlider(JSlider.HORIZONTAL, 0, 400, 200);
     
    		sliderPanel.add(slider1);
    		sliderPanel.add(slider2);
     
    		slider1.addChangeListener(e-> change(slider1, v-> demo.setValue1(v)));
    		slider2.addChangeListener(e-> change(slider2, v-> demo.setValue2(v)));
     
    		frame.pack();
    		frame.setLocationRelativeTo(null);
    		frame.setVisible(true);
     
    	}
     
    	private static void change(JSlider slider, Consumer<Integer> action) {
    		int value = slider.getValue();
    		action.accept(value); 
    	}
     
     
    }
    Avec une classe d'écouteur et une instance différente par slider :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    public class DemoSlider extends JPanel {
     
    	private int value1;
    	private int value2;
     
     
    	public DemoSlider() {
    		setPreferredSize(new Dimension(600,400));
    		value1 = 200;
    		value2 = 200;
    	}
     
    	public void setValue1(int value) {
    		this.value1=convert(value);
    		repaint();
    	}
     
    	public void setValue2(int value) {
    		this.value2=convert(value);;
    		repaint();
    	}
     
    	private int convert(int value) {
    		return 400-Math.min(Math.max(value,0),400);
    	}
     
    	@Override
    	protected void paintComponent(Graphics g) {
    		super.paintComponent(g);
    		g.setColor(Color.BLACK);
    		g.drawLine(100, value1, 500, value2);
    		drawPoint(g, 100, value1, Color.GREEN);
    		drawPoint(g, 500, value2, Color.RED);
    	}
     
     
    	private void drawPoint(Graphics g, int x, int y, Color color) {
    		g.setColor(color);
    		g.fillOval(x-3, y-3, 6, 6);
    	}
     
    	public static void main(String[] args) {
     
    		JFrame frame = new JFrame("Démo");
     
    		DemoSlider demo = new DemoSlider();
    		frame.add(demo);
     
    		JPanel sliderPanel = new JPanel();
    		sliderPanel.setLayout(new BoxLayout(sliderPanel, BoxLayout.Y_AXIS));
    		frame.add(sliderPanel, BorderLayout.SOUTH);
     
    		JSlider slider1 = new JSlider(JSlider.HORIZONTAL, 0, 400, 200);
    		JSlider slider2 = new JSlider(JSlider.HORIZONTAL, 0, 400, 200);
     
    		sliderPanel.add(slider1);
    		sliderPanel.add(slider2);
     
    		slider1.addChangeListener(new AbstractChangeListener() {
     
    			@Override
    			protected void change(int value) {
    				demo.setValue1(value);
    			}
     
    		});
    		slider2.addChangeListener(new AbstractChangeListener() {
     
    			@Override
    			protected void change(int value) {
    				demo.setValue2(value);
    			}
     
    		});
     
    		frame.pack();
    		frame.setLocationRelativeTo(null);
    		frame.setVisible(true);
     
    	}
     
    	private static abstract class AbstractChangeListener implements ChangeListener {
     
    		@Override
    		public void stateChanged(ChangeEvent e) {
    			change(((JSlider)e.getSource()).getValue());
    		}
     
     
    		protected abstract void change(int value);
     
    	}
     
    }
    Avec une instance unique d'écouteur et on distingue la source :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    public class DemoSlider extends JPanel {
     
    	private int value1;
    	private int value2;
     
     
    	public DemoSlider() {
    		setPreferredSize(new Dimension(600,400));
    		value1 = 200;
    		value2 = 200;
    	}
     
    	public void setValue1(int value) {
    		this.value1=convert(value);
    		repaint();
    	}
     
    	public void setValue2(int value) {
    		this.value2=convert(value);;
    		repaint();
    	}
     
    	private int convert(int value) {
    		return 400-Math.min(Math.max(value,0),400);
    	}
     
    	@Override
    	protected void paintComponent(Graphics g) {
    		super.paintComponent(g);
    		g.setColor(Color.BLACK);
    		g.drawLine(100, value1, 500, value2);
    		drawPoint(g, 100, value1, Color.GREEN);
    		drawPoint(g, 500, value2, Color.RED);
    	}
     
     
    	private void drawPoint(Graphics g, int x, int y, Color color) {
    		g.setColor(color);
    		g.fillOval(x-3, y-3, 6, 6);
    	}
     
    	public static void main(String[] args) {
     
    		JFrame frame = new JFrame("Démo");
     
    		DemoSlider demo = new DemoSlider();
    		frame.add(demo);
     
    		JPanel sliderPanel = new JPanel();
    		sliderPanel.setLayout(new BoxLayout(sliderPanel, BoxLayout.Y_AXIS));
    		frame.add(sliderPanel, BorderLayout.SOUTH);
     
    		JSlider slider1 = new JSlider(JSlider.HORIZONTAL, 0, 400, 200);
    		JSlider slider2 = new JSlider(JSlider.HORIZONTAL, 0, 400, 200);
     
    		sliderPanel.add(slider1);
    		sliderPanel.add(slider2);
     
    		ChangeListener changeListener = new ChangeListener() {
     
    			@Override
    			public void stateChanged(ChangeEvent e) {
     
    				int value = ((JSlider)e.getSource()).getValue();
    				if ( e.getSource()==slider1 ) {
    					demo.setValue1(value);
    				}
    				else if ( e.getSource()==slider2 ) {
    					demo.setValue2(value);
    				}
    			}
    		};
     
    		slider1.addChangeListener(changeListener);
    		slider2.addChangeListener(changeListener);
     
    		frame.pack();
    		frame.setLocationRelativeTo(null);
    		frame.setVisible(true);
     
    	} 
     
    }
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  5. #5
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Oui j'ai essayé de faire le test
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    if ( e.getSource()==slider ) {
    Mais du coup mes sliders sont déclarés dans une autre classe (traitement d'interface) et vu que je suis vraiment débutant j'arrive vraiment pas à appeller ses dernieres depuis cette classe , par exemple quand je fais
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    JSlider slider=new JSlider();
     
     
    				if ( e.getSource()==slider ) {
     
    				if((rgb&0xff) < value || (rgb&0xff) == 255.0f ){/**/
                                if ( e.getSource()==slider ) {
     
    /**/}}
    				{
    les sliders bougent même pas !!!

  6. #6
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Pour utiliser une instance créée dans une autre classe, il faut passer cette instance par paramètre, ou utiliser un accesseur (ce qui impose d'avoir la référence sur la classe qui a l'accesseur, donc de la passer elle-même par paramètre, ou d'avoir un accesseur à disposition pour y accèder, et ainsi de suite).
    Par exemple, si je change l'exemple 3 de mon précédent post :

    J'ai une première classe qui prend des paramètres
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    public class SliderChangeListener implements ChangeListener {
     
    	private final JSlider sliderLeft;
    	private final JSlider sliderRight;
    	private final DemoSlider panel;
     
    	public SliderChangeListener(JSlider sliderLeft, JSlider sliderRight, DemoSlider panel) {
    		this.sliderLeft=sliderLeft;
    		this.sliderRight=sliderRight;
    		this.panel=panel;
    	}
     
    	@Override
    	public void stateChanged(ChangeEvent e) {
     
    		int value = ((JSlider) e.getSource()).getValue();
    		if (e.getSource() == sliderLeft) {
    			panel.setValue1(value);
    		} else if (e.getSource() == sliderRight) {
    			panel.setValue2(value);
    		}
    	}
     
    }
    et une seconde qui créé une instance de cette classe en lui passant les références adéquates :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    public class DemoSlider extends JPanel {
     
    	private int value1;
    	private int value2;
     
     
    	public DemoSlider() {
    		setPreferredSize(new Dimension(600,400));
    		value1 = 200;
    		value2 = 200;
    	}
     
    	public void setValue1(int value) {
    		this.value1=convert(value);
    		repaint();
    	}
     
    	public void setValue2(int value) {
    		this.value2=convert(value);
    		repaint();
    	}
     
    	private int convert(int value) {
    		return 400-Math.min(Math.max(value,0),400);
    	}
     
    	@Override
    	protected void paintComponent(Graphics g) {
    		super.paintComponent(g);
    		g.setColor(Color.BLACK);
    		g.drawLine(100, value1, 500, value2);
    		drawPoint(g, 100, value1, Color.GREEN);
    		drawPoint(g, 500, value2, Color.RED);
    	}
     
     
    	private void drawPoint(Graphics g, int x, int y, Color color) {
    		g.setColor(color);
    		g.fillOval(x-3, y-3, 6, 6);
    	}
     
    	public static void main(String[] args) {
     
    		JFrame frame = new JFrame("Démo");
     
    		DemoSlider demo = new DemoSlider();
    		frame.add(demo);
     
    		JPanel sliderPanel = new JPanel();
    		sliderPanel.setLayout(new BoxLayout(sliderPanel, BoxLayout.Y_AXIS));
    		frame.add(sliderPanel, BorderLayout.SOUTH);
     
    		JSlider slider1 = new JSlider(JSlider.HORIZONTAL, 0, 400, 200);
    		JSlider slider2 = new JSlider(JSlider.HORIZONTAL, 0, 400, 200);
     
    		sliderPanel.add(slider1);
    		sliderPanel.add(slider2);
     
    		ChangeListener changeListener = new SliderChangeListener(slider1, slider2, demo); // ICI ON PASSE LES REFERENCES DES COMPOSANTS
     
    		slider1.addChangeListener(changeListener);
    		slider2.addChangeListener(changeListener);
     
    		frame.pack();
    		frame.setLocationRelativeTo(null);
    		frame.setVisible(true);
     
    	} 
     
    }
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  7. #7
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Bonjour,
    j'ai essayé de faire comme vous m'avez demandé mais du coup ça marche pas

    L'erreur est dans super() et dans
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    	Acceuil demo = new Acceuil();
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    Exception in thread "main" java.lang.StackOverflowError
    	at sun.awt.Win32GraphicsConfig.getBounds(Native Method)
    	at sun.awt.Win32GraphicsConfig.getBounds(Unknown Source)
    	at java.awt.Window.init(Unknown Source)
    	at java.awt.Window.<init>(Unknown Source)
    	at java.awt.Frame.<init>(Unknown Source)
    	at java.awt.Frame.<init>(Unknown Source)
    	at javax.swing.JFrame.<init>(Unknown Source)

  8. #8
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Tu as surtout continuéde mélanger listener et composant graphique, alors que j'avais dit non seulement ne pas le faire, mais le code que je t'ai montré public class SliderChangeListener implements ChangeListener { : la classe n'est pas un composant graphique, elle n'étend pas JPanel ou je ne sais quoi d'autre et c'est bien parce qu'elle ne doit pas (et n'en a surtout pas besoin).

    Donc, pas de repaint dans PanelImage (le nom est très mal choisi d'ailleurs). Il faut appeler des méthodes de l'instance d'Accueil, et c'est pour ça qu'on le passe en paramètre (enfin, si c'est bien le panel où se trouve ton image). Ces méthodes peuvent elles, en revanche, appeler repaint() si Accueil est bien un composant graphique comme prévu.

    En plus, je vois que tu créés 2 instances de "PanelImage", un ajouté en listener, l'autre où tu injectes l'image et dont tu sers comme panel. Il faut séparer les fonctions : d'un côté on a un panel, de l'autre on a un listener. Mélanger les deux, c'est justement augmenter le risque que l'un appel l'autre et vice-versa, récursivement, et d'obtenir le type d'erreur que tu obtiens.
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  9. #9
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Bonjour,
    Je sais que j'ai fais une mauvaise méthode mais du coup je peux pas remodifier mnt sinon j'aurai à refaire tous dès le début et je dois présenter ça le lundi. Alors j'ai essayer de faire comme ça
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
      JPanel tmp=new JPanel();
    				   slider = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
    				   //slider.addChangeListener(panneau);
    				   slider.setMajorTickSpacing(10);
    				   slider.setPaintTicks(true);
        			   slider.setPaintLabels(true);
    				   slider.setLabelTable(slider.createStandardLabels(10));
    				   slider.addChangeListener(new ChangeListener(){
    					    public void stateChanged(ChangeEvent arg0) {
    					        panneau.stateChanged();
    					    }
    					});
     
    				   slider1 = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
    				   //slider1.addChangeListener(panneau);
    				   slider1.setMajorTickSpacing(10);
    				   slider1.setPaintTicks(true);
        			   slider1.setPaintLabels(true);
    				   slider1.setLabelTable(slider1.createStandardLabels(10));
    				   slider.addChangeListener(new ChangeListener(){
    					    public void stateChanged(ChangeEvent arg0) {
    					        panneau.stateChanged2();
    					    }
    					});
    Puiseque je fais les modifications sur la même image et du coup j'ai cette erreur, est ce vraiment je peux pas faire à ma maniere ?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)

  10. #10
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Déjà, tu as une erreur :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     slider1.setLabelTable(slider1.createStandardLabels(10));
    				   slider.addChangeListener(new ChangeListener(){
    					    public void stateChanged(ChangeEvent arg0) {
    					        panneau.stateChanged2();
    					    }
    					});
    C'est sur le second slider qu'il faut mettre le second listener (donc slider1 et pas slider).

    Ensuite, la stacktrace que tu montres est partielle : je ne peux rien en faire.
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  11. #11
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Je VOUS REMERCIE POUR VOTRE PATIENCE !!!!! Je crois l'erreuur c'est que je declare le "e" null ? mais je sais pas en quoi faire d'autre !!
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    public void stateChanged()
    	{
    		javax.swing.event.ChangeEvent e=null;
    		int value = ((javax.swing.JSlider)(e.getSource())).getValue();

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    1082
    1083
    1084
    1085
    1086
    1087
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    1100
    1101
    1102
    1103
    1104
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
    1124
    1125
    1126
    1127
    1128
    1129
    1130
    1131
    1132
    1133
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    1159
    1160
    1161
    1162
    1163
    1164
    1165
    1166
    1167
    1168
    1169
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    1177
    1178
    1179
    1180
    1181
    1182
    1183
    1184
    1185
    1186
    1187
    1188
    1189
    1190
    1191
    1192
    1193
    1194
    1195
    1196
    1197
    1198
    1199
    1200
    1201
    1202
    1203
    1204
    1205
    1206
    1207
    1208
    1209
    1210
    1211
    1212
    1213
    1214
    1215
    1216
    1217
    1218
    1219
    1220
    1221
    1222
    1223
    1224
    1225
    1226
    1227
    1228
    1229
    1230
    1231
    1232
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
    1243
    1244
    1245
    1246
    1247
    1248
    1249
    1250
    1251
    1252
    1253
    1254
    1255
    1256
    1257
    1258
    1259
    1260
    1261
    1262
    1263
    1264
    1265
    1266
    1267
    1268
    1269
    1270
    1271
    1272
    1273
    1274
    1275
    1276
    1277
    1278
    1279
    1280
    1281
    1282
    1283
    1284
    1285
    1286
    1287
    1288
    1289
    1290
    1291
    1292
    1293
    1294
    1295
    1296
    1297
    1298
    1299
    1300
    1301
    1302
    1303
    1304
    1305
    1306
    1307
    1308
    1309
    1310
    1311
    1312
    1313
    1314
    1315
    1316
    1317
    1318
    1319
    1320
    1321
    1322
    1323
    1324
    1325
    1326
    1327
    1328
    1329
    1330
    1331
    1332
    1333
    1334
    1335
    1336
    1337
    1338
    1339
    1340
    1341
    1342
    1343
    1344
    1345
    1346
    1347
    1348
    1349
    1350
    1351
    1352
    1353
    1354
    1355
    1356
    1357
    1358
    1359
    1360
    1361
    1362
    1363
    1364
    1365
    1366
    1367
    1368
    1369
    1370
    1371
    1372
    1373
    1374
    1375
    1376
    1377
    1378
    1379
    1380
    1381
    1382
    1383
    1384
    1385
    1386
    1387
    1388
    1389
    1390
    1391
    1392
    1393
    1394
    1395
    1396
    1397
    1398
    1399
    1400
    1401
    1402
    1403
    1404
    1405
    1406
    1407
    1408
    1409
    1410
    1411
    1412
    1413
    1414
    1415
    1416
    1417
    1418
    1419
    1420
    1421
    1422
    1423
    1424
    1425
    1426
    1427
    1428
    1429
    1430
    1431
    1432
    1433
    1434
    1435
    1436
    1437
    1438
    1439
    1440
    1441
    1442
    1443
    1444
    1445
    1446
    1447
    1448
    1449
    1450
    1451
    1452
    1453
    1454
    1455
    1456
    1457
    1458
    1459
    1460
    1461
    1462
    1463
    1464
    1465
    1466
    1467
    1468
    1469
    1470
    1471
    1472
    1473
    1474
    1475
    1476
    1477
    1478
    1479
    1480
    1481
    1482
    1483
    1484
    1485
    1486
    1487
    1488
    1489
    1490
    1491
    1492
    1493
    1494
    1495
    1496
    1497
    1498
    1499
    1500
    1501
    1502
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged2(PanelImage.java:147)
    	at STAGE.Acceuil$4.stateChanged(Acceuil.java:252)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValueIsAdjusting(Unknown Source)
    	at javax.swing.JSlider.setValueIsAdjusting(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseReleased(Unknown Source)
    	at java.awt.Component.processMouseEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValueIsAdjusting(Unknown Source)
    	at javax.swing.JSlider.setValueIsAdjusting(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValue(Unknown Source)
    	at javax.swing.JSlider.setValue(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseDragged(Unknown Source)
    	at java.awt.Component.processMouseMotionEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    	at STAGE.PanelImage.stateChanged(PanelImage.java:92)
    	at STAGE.Acceuil$3.stateChanged(Acceuil.java:240)
    	at javax.swing.JSlider.fireStateChanged(Unknown Source)
    	at javax.swing.JSlider$ModelListener.stateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.fireStateChanged(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setRangeProperties(Unknown Source)
    	at javax.swing.DefaultBoundedRangeModel.setValueIsAdjusting(Unknown Source)
    	at javax.swing.JSlider.setValueIsAdjusting(Unknown Source)
    	at javax.swing.plaf.basic.BasicSliderUI$TrackListener.mouseReleased(Unknown Source)
    	at java.awt.Component.processMouseEvent(Unknown Source)
    	at javax.swing.JComponent.processMouseEvent(Unknown Source)
    	at java.awt.Component.processEvent(Unknown Source)
    	at java.awt.Container.processEvent(Unknown Source)
    	at java.awt.Component.dispatchEventImpl(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    	at java.awt.Container.dispatchEventImpl(Unknown Source)
    	at java.awt.Window.dispatchEventImpl(Unknown Source)
    	at java.awt.Component.dispatchEvent(Unknown Source)
    	at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    	at java.awt.EventQueue.access$500(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.awt.EventQueue$3.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.awt.EventQueue$4.run(Unknown Source)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
    	at java.awt.EventQueue.dispatchEvent(Unknown Source)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    	at java.awt.EventDispatchThread.run(Unknown Source)

  12. #12
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Bah, oui, il ne faut pas déclarer un variable de type event, il faut récupérer l'instance d'évenement qui est passé lors de la réception de l'évenement.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    JPanel tmp=new JPanel();
    				   slider = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
    				   //slider.addChangeListener(panneau);
    				   slider.setMajorTickSpacing(10);
    				   slider.setPaintTicks(true);
        			   slider.setPaintLabels(true);
    				   slider.setLabelTable(slider.createStandardLabels(10));
    				   slider.addChangeListener(new ChangeListener(){
    					    public void stateChanged(ChangeEvent arg0) {
    					        panneau.stateChanged( arg0 );
    					    }
    					});
     
    				   slider1 = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
    				   //slider1.addChangeListener(panneau);
    				   slider1.setMajorTickSpacing(10);
    				   slider1.setPaintTicks(true);
        			   slider1.setPaintLabels(true);
    				   slider1.setLabelTable(slider1.createStandardLabels(10));
    				   slider.addChangeListener(new ChangeListener(){
    					    public void stateChanged(ChangeEvent arg0) {
    					        panneau.stateChanged2(arg0);
    					    }
    					});
    Ensuite, dans stateChanged() :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    public void stateChanged(javax.swing.event.ChangeEvent e)
    	{
    		// NON javax.swing.event.ChangeEvent e=null;
    		int value = ((javax.swing.JSlider)(e.getSource())).getValue();
    Pareil dans stateChanged2()
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  13. #13
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Super merci bcp ça marche !! Mais du coup, chaque slider prend l'image de départ et fait le changement sur cette image moi je veux que à partir du changeùùent avec slider 1 je fais chagement 2

  14. #14
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Si tu te me remettais le code complet, au moins de stateChanged() et stateChanged2(), peut-être comprendrais-je de quoi tu parles...
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  15. #15
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Merci pour ton retour, mon code prend la valeur du slider et à chaque fois que la valeur du pixel est inf à valeur de slider il l'a met en noir, puis le statechange c'est à chaque fois qu'elle superieur elle l'a remet en noir ! Du coup moi je veux afficher que des pixels entre des valeurs spécifique :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    public void stateChanged1(javax.swing.event.ChangeEvent e)
    	{
    		int value = ((javax.swing.JSlider)(e.getSource())).getValue();
     
     
    		for(int x=0;x<monImage.getWidth();x++)
    		{
    			for(int y=0;y<monImage.getHeight();y++)
    			{
    				int rgb = outImg.getRGB(x,y);
    				if((rgb&0xff) < value || (rgb&0xff) == 255.0f )
    				{
    					if(selected.equals("cour"))
    						outImgbobc.setRGB(x,y, 0xff000000);
    					else if(selected.equals("180"))
    						outImgbob18.setRGB(x,y, 0xff000000);
    					else if(selected.equals("360"))
    						outImgbob36.setRGB(x,y, 0xff000000);
    					else if(selected.equals("180nb"))
    						outImgbobnb18.setRGB(x,y, 0xff000000);
    					else if(selected.equals("360nb"))
    						outImgbobnb36.setRGB(x,y, 0xff000000);
    				}
    				else
    				{
    					if(selected.equals("cour"))
     
    					outImgbobc.setRGB(x,y, outImgc.getRGB(x,y));
    					else if(selected.equals("180"))
    						outImgbob18.setRGB(x,y, outImgbo.getRGB(x,y));
    					else if(selected.equals("360"))
    						outImgbob36.setRGB(x,y, outImgbo36.getRGB(x,y));
    					else if(selected.equals("180nb"))
    						outImgbobnb18.setRGB(x,y, outImgbonb.getRGB(x,y));
    					else if(selected.equals("360nb"))
    						outImgbobnb36.setRGB(x,y, outImgbo36nb.getRGB(x,y));
    				}
    			}
    		}
    		if(selected.equals("cour"))
    			monImage = outImgbobc;
    		else if(selected.equals("180"))
    			monImage = outImgbob18;
    		else if(selected.equals("360"))
    			monImage = outImgbob36;
    		else if(selected.equals("180nb"))
    			monImage = outImgbobnb18;
    		else if(selected.equals("360nb"))
    			monImage = outImgbobnb36;
    		repaint();
     
    	}
     
    	public void stateChanged2(javax.swing.event.ChangeEvent e)
    	{
     
    		int value = ((javax.swing.JSlider)(e.getSource())).getValue();
     
     
    		for(int x=0;x<monImage.getWidth();x++)
    		{
    			for(int y=0;y<monImage.getHeight();y++)
    			{
    				int rgb = outImg.getRGB(x,y);
    				if((rgb&0xff) > value || (rgb&0xff) == 255.0f )
    				{
    					if(selected.equals("cour"))
    						outImgbobc.setRGB(x,y, 0xff000000);
    					else if(selected.equals("180"))
    						outImgbob18.setRGB(x,y, 0xff000000);
    					else if(selected.equals("360"))
    						outImgbob36.setRGB(x,y, 0xff000000);
    					else if(selected.equals("180nb"))
    						outImgbobnb18.setRGB(x,y, 0xff000000);
    					else if(selected.equals("360nb"))
    						outImgbobnb36.setRGB(x,y, 0xff000000);
    				}
    				else
    				{
    					if(selected.equals("cour"))
     
    					outImgbobc.setRGB(x,y, outImgc.getRGB(x,y));
    					else if(selected.equals("180"))
    						outImgbob18.setRGB(x,y, outImgbo.getRGB(x,y));
    					else if(selected.equals("360"))
    						outImgbob36.setRGB(x,y, outImgbo36.getRGB(x,y));
    					else if(selected.equals("180nb"))
    						outImgbobnb18.setRGB(x,y, outImgbonb.getRGB(x,y));
    					else if(selected.equals("360nb"))
    						outImgbobnb36.setRGB(x,y, outImgbo36nb.getRGB(x,y));
    				}
    			}
    		}
    		if(selected.equals("cour"))
    			monImage = outImgbobc;
    		else if(selected.equals("180"))
    			monImage = outImgbob18;
    		else if(selected.equals("360"))
    			monImage = outImgbob36;
    		else if(selected.equals("180nb"))
    			monImage = outImgbobnb18;
    		else if(selected.equals("360nb"))
    			monImage = outImgbobnb36;
    		repaint();
     
    	}

  16. #16
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Ok, donc, au lieu de traiter séparement les 2, il faut que tu les traites en même temps.

    Dans ce cas, il te faut qu'une seule méthode.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    JPanel tmp=new JPanel();
    slider = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
    slider.setMajorTickSpacing(10);
    slider.setPaintTicks(true);
     
    slider1 = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
    slider1.setMajorTickSpacing(10);
    slider1.setPaintTicks(true);
    slider1.setPaintLabels(true);
    slider1.setLabelTable(slider1.createStandardLabels(10));
     
    // on met un écouteur sur le premier slider pour écouter le changement sur celui-ci			   
    slider.addChangeListener(new ChangeListener(){
         public void stateChanged(ChangeEvent e) {
     
             int min = ((javax.swing.JSlider)(e.getSource())).getValue()); // on récupère la valeur concernant l'évenement
             int max = slider1.getValue()); // on récupère la valeur concernant l'autre silder
     
     
             panneau.stateChanged(min, max);
     
         }
     
    });
     
    // on met un écouteur sur le second slider pour écouter le changement sur celui-ci			   
    slider1.addChangeListener(new ChangeListener(){
         public void stateChanged(ChangeEvent e) {
     
             int max = ((javax.swing.JSlider)(e.getSource())).getValue()); // on récupère la valeur concernant l'évenement
             int min = slider.getValue()); // on récupère la valeur concernant l'autre silder
     
             panneau.stateChanged(min, max);
     
         }
     
    });
    Ainsi tu peux avoir une méthode prenant le min et le max ensemble :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
     
    public void stateChanged(int min, in max)
    	{
     
     
    		for(int x=0;x<monImage.getWidth();x++)
    		{
    			for(int y=0;y<monImage.getHeight();y++)
    			{
    				int rgb = outImg.getRGB(x,y);
    				if((rgb&0xff) < min ||(rgb&0xff) > max || (rgb&0xff) == 255.0f ) // combinaison des 2 tests ici
    				{
    					if(selected.equals("cour"))
    						outImgbobc.setRGB(x,y, 0xff000000);
    					else if(selected.equals("180"))
    						outImgbob18.setRGB(x,y, 0xff000000);
    					else if(selected.equals("360"))
    						outImgbob36.setRGB(x,y, 0xff000000);
    					else if(selected.equals("180nb"))
    						outImgbobnb18.setRGB(x,y, 0xff000000);
    					else if(selected.equals("360nb"))
    						outImgbobnb36.setRGB(x,y, 0xff000000);
    				}
    				else
    				{
    					if(selected.equals("cour"))
     
    					outImgbobc.setRGB(x,y, outImgc.getRGB(x,y));
    					else if(selected.equals("180"))
    						outImgbob18.setRGB(x,y, outImgbo.getRGB(x,y));
    					else if(selected.equals("360"))
    						outImgbob36.setRGB(x,y, outImgbo36.getRGB(x,y));
    					else if(selected.equals("180nb"))
    						outImgbobnb18.setRGB(x,y, outImgbonb.getRGB(x,y));
    					else if(selected.equals("360nb"))
    						outImgbobnb36.setRGB(x,y, outImgbo36nb.getRGB(x,y));
    				}
    			}
    		}
    		if(selected.equals("cour"))
    			monImage = outImgbobc;
    		else if(selected.equals("180"))
    			monImage = outImgbob18;
    		else if(selected.equals("360"))
    			monImage = outImgbob36;
    		else if(selected.equals("180nb"))
    			monImage = outImgbobnb18;
    		else if(selected.equals("360nb"))
    			monImage = outImgbobnb36;
    		repaint();
     
    	}
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  17. #17
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Merci je passe en résolu

  18. #18
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Bonjour,
    Je fais un troisième slider qui fait un traitement sur une image. Son traitement est indépendant des 2 autres sliders, mais vu que je travaille sur une seul interface, je veux que le traitement des 2 sliders sont fait apres avoir fait le changement avec le 1er slider.
    Mon code actualise l'image (prend l'image de départ et mets des changements sur celle ci) et moi je veux les changement en allant de l'image traité avec le 1er slider, je crois je dois faire un ecouteur comme on avait fait sur les 2 autres ?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    // on met un ecouteur sur le premier slider pour ecouter le changement sur celui-ci			   
    				   slider.addChangeListener(new ChangeListener(){
    				        public void stateChanged(ChangeEvent e) {
     
    				            int min = ((javax.swing.JSlider)(e.getSource())).getValue(); // on recup�re la valeur concernant l'�venement
    				            int max = slider1.getValue(); // on recupere la valeur concernant l'autre silder
    				            panneau.stateChanged(min, max);
     
    				        }
     
    				   });
     
    				   // on met un ecouteur sur le second slider pour ecouter le changement sur celui-ci			   
     
    				   slider1.addChangeListener(new ChangeListener(){
    				        public void stateChanged(ChangeEvent e) {
     
    				            int max = ((javax.swing.JSlider)(e.getSource())).getValue(); // on recupere la valeur concernant l'�venement
    				            int min = slider.getValue(); // on recupere la valeur concernant l'autre silder
    				            panneau.stateChanged(min, max);
    				            //System.out.println("Valeur Slider 1   " +max);
     
    				        }
     
    				   });
     
    				   slider2.addChangeListener(new ChangeListener(){
    					    public void stateChanged(ChangeEvent arg0) {
    					       panneau.stateChanged1(arg0);
    					    }
    					});

  19. #19
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Si je comprends bien tu as 3 silders. Tu fais 2 traitements sur ton image, dont 1 qui dépend d'un des sliders, et l'autre dépend des 2 autres sliders ?

    En évenementiel, ça donnerait :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    public void traitement1(int valeurSlider2) { // une méthode qui fait le traitement 1
     
    }
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    public void traitement2(int valeurSlider, int valeurSlider1) { // une méthode qui fait le traitement 2
     
    }
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    public void traitement(int valeurSlider2, int valeurSlider, int valeurSlider1) { // une méthode qui fait le traitement 2
      traitement1(valeurSlider2);
      traitement2(valeurSlider, valeurSlider1);
    }

    Et ensuite, au niveau des évenements, oui, c'est similaire à ce que je t'ai montré avec 2 silders (le problème est le même : il y a traitement sur évenement, et sur lecture directe)


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    slider.addChangeListener(new ChangeListener(){
    				        public void stateChanged(ChangeEvent e) {
     
    				            int min = ((javax.swing.JSlider)(e.getSource())).getValue(); // on recup�re la valeur concernant l'�venement
    				            int max = slider1.getValue(); // on recupere la valeur concernant l'autre silder
                                                int val = slider2.getValue(); // on récupère la valeur du slider2
    				            panneau.traitement(val, min, max);
     
    				        }
     
    				   });
     
    				   // on met un ecouteur sur le second slider pour ecouter le changement sur celui-ci			   
     
    				   slider1.addChangeListener(new ChangeListener(){
    				        public void stateChanged(ChangeEvent e) {
     
    				            int max = ((javax.swing.JSlider)(e.getSource())).getValue(); // on recupere la valeur concernant l'�venement
    				            int min = slider1.getValue(); // on recupere la valeur concernant l'autre silder
                                                int val = slider2.getValue(); // on récupère la valeur du slider2
                                                panneau.traitement(val, min, max);
    				            //System.out.println("Valeur Slider 1   " +max);
     
    				        }
     
    				   });
     
    				   slider2.addChangeListener(new ChangeListener(){
    					    public void stateChanged(ChangeEvent arg0) {
    					        int max =  slider.getValue(); // on recupere la valeur concernant l'�venement
    				                int min = slider1.getValue(); // on recupere la valeur concernant l'autre silder
                                                    int val = ((javax.swing.JSlider)(e.getSource())).getValue(); // on récupère la valeur du slider2
                                                    panneau.traitement(val, min, max);
    					    }
    					});
    L'expression "ça marche pas" ne veut rien dire. Indiquez l'erreur, et/ou les comportements attendus et obtenus, et donnez un Exemple Complet Minimal qui permet de reproduire le problème.
    La plupart des réponses à vos questions sont déjà dans les FAQs ou les Tutoriels, ou peut-être dans une autre discussion : utilisez la recherche interne.
    Des questions sur Java : consultez le Forum Java. Des questions sur l'EDI Eclipse ou la plateforme Eclipse RCP : consultez le Forum Eclipse.
    Une question correctement posée et rédigée et vous aurez plus de chances de réponses adaptées et rapides.
    N'oubliez pas de mettre vos extraits de code entre balises CODE (Voir Mode d'emploi de l'éditeur de messages).
    Nouveau sur le forum ? Consultez Les Règles du Club.

  20. #20
    Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Juin 2016
    Messages
    185
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juin 2016
    Messages : 185
    Points : 64
    Points
    64
    Par défaut
    Oui mais le problème c'est que le 1er slider n'a pas de min et de max

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. [JTable] Cellule avec deux boutons
    Par cherbox dans le forum Composants
    Réponses: 3
    Dernier message: 12/08/2004, 17h26
  2. comment filtrer une table avec deux criteres càd 2 colonnes
    Par athmane2dz dans le forum Bases de données
    Réponses: 7
    Dernier message: 28/07/2004, 15h25
  3. [CR] instruction If avec deux opérations
    Par MaDmAtT dans le forum SAP Crystal Reports
    Réponses: 2
    Dernier message: 19/07/2004, 13h54
  4. Réponses: 10
    Dernier message: 10/06/2004, 16h20
  5. [langage] split avec deux motifs (Newbie)
    Par Raumsog II dans le forum Langage
    Réponses: 2
    Dernier message: 07/06/2004, 09h31

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo