Beispiel #1
0
 BitmapW(Bitmap a)
 {
     holder = new LockBitmap(a);
     if (!bitmaplock)
     {
         holder.LockBits(); bitmaplock = true;
     }
 }
Beispiel #2
0
 public BitmapW(String filename)
 {
     holder = new LockBitmap(new Bitmap(filename));
     if (!bitmaplock)
     {
         holder.LockBits(); bitmaplock = true;
     }
 }
Beispiel #3
0
 BitmapW(Bitmap a)
 {
     holder = new LockBitmap(a);
     if (!bitmaplock) { holder.LockBits(); bitmaplock = true; }
 }
Beispiel #4
0
 public BitmapW(String filename)
 {
     holder = new LockBitmap(new Bitmap(filename));
     if (!bitmaplock) { holder.LockBits(); bitmaplock = true; }
 }