C# 클래스 netfx.LockBitmap

파일 보기 프로젝트 열기: asadm/NETFx 1 사용 예제들

공개 메소드들

메소드 설명
GetBitmap ( ) : Bitmap
GetPixel ( int x, int y ) : Color

Get the color of the specified pixel

LockBitmap ( Bitmap source ) : System
LockBits ( ) : void

Lock bitmap data

SetPixel ( int x, int y, Color color ) : void

Set the color of the specified pixel

UnlockBits ( ) : void

Unlock bitmap data

메소드 상세

GetBitmap() 공개 메소드

public GetBitmap ( ) : Bitmap
리턴 System.Drawing.Bitmap

GetPixel() 공개 메소드

Get the color of the specified pixel
public GetPixel ( int x, int y ) : Color
x int
y int
리턴 Color

LockBitmap() 공개 메소드

public LockBitmap ( Bitmap source ) : System
source System.Drawing.Bitmap
리턴 System

LockBits() 공개 메소드

Lock bitmap data
public LockBits ( ) : void
리턴 void

SetPixel() 공개 메소드

Set the color of the specified pixel
public SetPixel ( int x, int y, Color color ) : void
x int
y int
color Color
리턴 void

UnlockBits() 공개 메소드

Unlock bitmap data
public UnlockBits ( ) : void
리턴 void