aboutsummaryrefslogtreecommitdiff
path: root/PunchingBag/src/PicHelper/ImagePanel.java
blob: 099fcb8894013ed50bcfd29f3a7ce355eb6438d4 (plain)
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
/*
 * ImagePanel.java
 *
 * Copyright (C) 2007  Scott Carpenter (scottc at movingtofreedom dot org)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see http://www.gnu.org/licenses/.
 *
 * Created on November 9, 2007, 4:07 PM
 *
 */

package PicHelper;

import java.io.*;
import java.awt.*;
import javax.swing.*;
import javax.imageio.*;

public class ImagePanel extends JPanel {

	private Image image;
	private Image scaledImage;
	private int imageWidth = 0;
	private int imageHeight = 0;

	// private long paintCount = 0;

	// constructor
	public ImagePanel() {
		super();
	}

	public void loadImage(String file) throws IOException {
		loadImage(new File(file));
	}
	
	public void loadImage(File file) throws IOException {
		image = ImageIO.read(file);
		// might be a situation where image isn't fully loaded, and
		// should check for that before setting...
		imageWidth = image.getWidth(this);
		imageHeight = image.getHeight(this);
		setScaledImage();
	}

	// e.g., containing frame might call this from formComponentResized
	public void scaleImage() {
		setScaledImage();
	}

	// override paintComponent
	public void paintComponent(Graphics g) {
		super.paintComponent(g);
		if (scaledImage != null) {
			// System.out.println("ImagePanel paintComponent " + ++paintCount);
			g.drawImage(scaledImage, 0, 0, this);
		}
	}

	private void setScaledImage() {
		if (image != null) {

			// use floats so division below won't round
			float iw = imageWidth;
			float ih = imageHeight;
			float pw = this.getWidth(); // panel width
			float ph = this.getHeight(); // panel height

			if (pw < iw || ph < ih) {

				/*
				 * compare some ratios and then decide which side of image to
				 * anchor to panel and scale the other side (this is all based
				 * on empirical observations and not at all grounded in theory)
				 */

				// System.out.println("pw/ph=" + pw/ph + ", iw/ih=" + iw/ih);

				if ((pw / ph) > (iw / ih)) {
					iw = -1;
					ih = ph;
				} else {
					iw = pw;
					ih = -1;
				}

				// prevent errors if panel is 0 wide or high
				if (iw == 0) {
					iw = -1;
				}
				if (ih == 0) {
					ih = -1;
				}

				scaledImage = image.getScaledInstance(new Float(iw).intValue(),
						new Float(ih).intValue(), Image.SCALE_DEFAULT);

			} else {
				scaledImage = image;
			}

			// System.out.println("iw = " + iw + ", ih = " + ih + ", pw = " + pw
			// + ", ph = " + ph);
		}
	}

}