LockBits() 공개 메소드

Lock bitmap data
public LockBits ( ) : void
리턴 void
예제 #1
0
파일: Bitmap.cs 프로젝트: xenonenium/NETFx
 public void SetPixel(int x, int y, Color color)
 {
     if (!bitmaplock)
     {
         holder.LockBits(); bitmaplock = true;
     }
     holder.SetPixel(x, y, color);
 }
예제 #2
0
파일: Bitmap.cs 프로젝트: xenonenium/NETFx
 BitmapW(Bitmap a)
 {
     holder = new LockBitmap(a);
     if (!bitmaplock)
     {
         holder.LockBits(); bitmaplock = true;
     }
 }
예제 #3
0
파일: Bitmap.cs 프로젝트: xenonenium/NETFx
 public BitmapW(String filename)
 {
     holder = new LockBitmap(new Bitmap(filename));
     if (!bitmaplock)
     {
         holder.LockBits(); bitmaplock = true;
     }
 }
예제 #4
0
파일: Bitmap.cs 프로젝트: asadm/NETFx
 BitmapW(Bitmap a)
 {
     holder = new LockBitmap(a);
     if (!bitmaplock) { holder.LockBits(); bitmaplock = true; }
 }
예제 #5
0
파일: Bitmap.cs 프로젝트: asadm/NETFx
 public BitmapW(String filename)
 {
     holder = new LockBitmap(new Bitmap(filename));
     if (!bitmaplock) { holder.LockBits(); bitmaplock = true; }
 }