FloodFill

    FloodFill - 색상별 영역표시

    FloodFill함수는 지정한 Device Context에서 특정 색상의 영역을 표시하는 함수입니다. Declare Function FloodFill Lib "gdi32" Alias "FloodFill" (ByVal hdc As Integer, ByVal x As Integer, ByVal y As Integer, ByVal crColor As Integer, ByVal wFillType As Integer) As Integer ▶VB.NET 선언 [DllImport("gdi32")] public static extern int FloodFill(int hdc, int x, int y, int crColor, int wFillType); ▶C# 선언 선언 FloodFill함수의 첫번째 인수는 영역을 표시..