AWT Method II
Font Method Explain Font(String name, int style, int size) name : 사용할 Font의 이름 style : Font의 Style 지정 size : Font의 크기 Color Method Explain Color(int r, int g, int b) 0~255의 정수 값을 이용해 색 조절(r : red / g : green / b : blue) Color(float r, float g, float b) 0.0~1.0의 정수 값을 이용해 색 조절(r : red / g : green / b : blue) Color(int r, int g, int b, int a) a : Alpha 값이 추가되어 있으며 0~255사이의 정수 값을 갖음 Color(float r, ..
더보기