Esempio n. 1
0
 private Graphics(int width, int height, IntPtr hdc) : this(Graphics.CreateSurface(width, height), hdc)
 {
 }
Esempio n. 2
0
 internal Graphics(byte[] buffer, BitmapImageType type) : this(Graphics.CreateSurface(buffer, type), IntPtr.Zero)
 {
 }
Esempio n. 3
0
 internal Graphics(byte[] buffer, int offset, int count, BitmapImageType type) : this(Graphics.CreateSurface(buffer, offset, count, type), IntPtr.Zero)
 {
 }
Esempio n. 4
0
 internal Graphics(byte[] buffer) : this(Graphics.CreateSurface(buffer), IntPtr.Zero)
 {
 }