Пример #1
0
 private Graphics(int width, int height, IntPtr hdc) : this(Graphics.CreateSurface(width, height), hdc)
 {
 }
Пример #2
0
 internal Graphics(byte[] buffer, BitmapImageType type) : this(Graphics.CreateSurface(buffer, type), IntPtr.Zero)
 {
 }
Пример #3
0
 internal Graphics(byte[] buffer, int offset, int count, BitmapImageType type) : this(Graphics.CreateSurface(buffer, offset, count, type), IntPtr.Zero)
 {
 }
Пример #4
0
 internal Graphics(byte[] buffer) : this(Graphics.CreateSurface(buffer), IntPtr.Zero)
 {
 }