Switch to full style
Graphics and animation Java code examples
Post a reply

Draw a blank Canvas based on the size and color set

Sat Feb 09, 2013 2:06 pm

Draw a blank Canvas based on the size and color a defined
java code
import java.awt.*;

public class BlankCanvas extends Canvas {
Dimension minSize = new Dimension(200, 200);

public BlankCanvas(Color color) {
setBackground(color);
}

public Dimension getMinimumSize() {
return minSize;
}

public Dimension getPreferredSize() {
return minSize;
}

public void paint(Graphics g) {
Dimension size = getSize();
g.drawRect(0, 0, size.width - 1, size.height - 1);
}
}




Post a reply
  Related Posts  to : Draw a blank Canvas based on the size and color set
 Draw char with color in php     -  
 Changing the color of a graph draw in java     -  
 Set image size as a percentage of the page size     -  
 relationship between the Canvas class and the Graphics class     -  
 Cookie based login in php     -  
 Home Based Research Jobs.     -  
 Takes a string apart based on a delimiter     -  
 prapose me a web based mini project     -  
 Run different function based on the selected Tab JTabbedPane     -  
 What is the size of this Structure     -  

Topic Tags

Java Graphics