Graphics2D
-
[Class] Graphics/Graphics2DStudy/Java 2020. 6. 18. 10:36
Class Graphics 모든 컴텍스트에 대한 추상 기본 클래스. 응용 프로그램이 다양한 장치에서 구현된 구성 요소와 화면 외부 이미지에 그릴 수 있도록 함 생성 방법 @Override protected void paintComponent(Graphics g): UI 대리자가 null이 아닌 경우 UI 대리자의 paint 메소드 호출(JComponent 오버라이드) repaint(): 이 컴퍼넌트를 다시 그림(Component 메소드) Method clearRect(int x, int y, int width, int height): 지정된 사각형을 현재 그리기 표면의 배경색으로 채워 지움 create(int x, int y, int width, int height): Graphics 객체를 기반으로 하..