summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/window/Window.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/fourisland/fourpuzzle/window/Window.java')
-rw-r--r--src/com/fourisland/fourpuzzle/window/Window.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/fourisland/fourpuzzle/window/Window.java b/src/com/fourisland/fourpuzzle/window/Window.java index f970b68..db1bfab 100644 --- a/src/com/fourisland/fourpuzzle/window/Window.java +++ b/src/com/fourisland/fourpuzzle/window/Window.java
@@ -5,6 +5,7 @@
5 5
6package com.fourisland.fourpuzzle.window; 6package com.fourisland.fourpuzzle.window;
7 7
8import com.fourisland.fourpuzzle.Display;
8import com.fourisland.fourpuzzle.util.Interval; 9import com.fourisland.fourpuzzle.util.Interval;
9import java.awt.Graphics2D; 10import java.awt.Graphics2D;
10import java.awt.Rectangle; 11import java.awt.Rectangle;
@@ -134,7 +135,7 @@ public enum Window
134 135
135 public BufferedImage getImage(int width, int height) 136 public BufferedImage getImage(int width, int height)
136 { 137 {
137 BufferedImage temp = new BufferedImage(getFullWidth(width), getFullHeight(height), BufferedImage.TYPE_INT_ARGB); 138 BufferedImage temp = Display.createCanvas(getFullWidth(width), getFullHeight(height));
138 Graphics2D g = temp.createGraphics(); 139 Graphics2D g = temp.createGraphics();
139 140
140 g.drawImage(getBackground(), 3, 3, getFullWidth(width)-6, getFullHeight(height)-6, null); 141 g.drawImage(getBackground(), 3, 3, getFullWidth(width)-6, getFullHeight(height)-6, null);