internal NetVolatileImage(java.awt.Component component, int width, int height)
 {
     this.component = component;
     bitmap         = new Bitmap(width, height);
     this.width     = width;
     this.height    = height;
     using (Graphics g = Graphics.FromImage(bitmap))
     {
         g.Clear(Color.White);
     }
 }
Esempio n. 2
0
 internal NetVolatileImage(java.awt.Component component, int width, int height)
 {
     this.component = component;
     bitmap = new Bitmap(width, height);
     this.width = width;
     this.height = height;
     using (Graphics g = Graphics.FromImage(bitmap))
     {
         g.Clear(Color.White);
     }
 }