Exemple #1
0
 public ImageWithName(Bitmap img, string name)
 {
     image     = BitmapPixelConverter.BitmapToPixels(img);
     this.name = name;
     height    = img.Height;
     width     = img.Width;
 }
Exemple #2
0
 public Bitmap GetBitmap()
 {
     return(BitmapPixelConverter.PixelsToBitmap(image, width, height));
 }