BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
Graphics2D g2 = (Graphics2D)image.getGraphics();
g2.setColor(this.bgColor);
g2.fillRect(0, 0, w, h);
return image;
}
第二個語句為什麼要用強制轉化
getGraphics獲取的是Graphics類型,Graphics2D是Graphics的子類,向下轉型需要強轉。