using System; using System.ComponentModel; using System.Drawing.Design; using System.Drawing.Imaging; using System.IO; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Drawing { /// Encapsulates a GDI+ bitmap, which consists of the pixel data for a graphics image and its attributes. A is an object used to work with images defined by pixel data. // Token: 0x02000008 RID: 8 [Token(Token = "0x2000008")] [Editor] [Editor("System.Drawing.Design.BitmapEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))] [ComVisible(true)] [Serializable] public sealed class Bitmap : Image { // Token: 0x0600000C RID: 12 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600000C")] [Address(RVA = "0x67D310", Offset = "0x67C110", VA = "0x18067D310")] private Bitmap() { } // Token: 0x0600000D RID: 13 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600000D")] [Address(RVA = "0x67D480", Offset = "0x67C280", VA = "0x18067D480")] internal Bitmap(IntPtr ptr) { } // Token: 0x0600000E RID: 14 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600000E")] [Address(RVA = "0x67D4D0", Offset = "0x67C2D0", VA = "0x18067D4D0")] internal Bitmap(IntPtr ptr, Stream stream) { } /// Initializes a new instance of the class with the specified size. /// The width, in pixels, of the new . /// The height, in pixels, of the new . /// The operation failed. // Token: 0x0600000F RID: 15 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600000F")] [Address(RVA = "0x67D350", Offset = "0x67C150", VA = "0x18067D350")] public Bitmap(int width, int height) { } /// Initializes a new instance of the class with the specified size and format. /// The width, in pixels, of the new . /// The height, in pixels, of the new . /// The pixel format for the new . This must specify a value that begins with Format. /// A value is specified whose name does not start with Format. For example, specifying will cause an , but will not. // Token: 0x06000010 RID: 16 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000010")] [Address(RVA = "0x67D1D0", Offset = "0x67BFD0", VA = "0x18067D1D0")] public Bitmap(int width, int height, PixelFormat format) { } // Token: 0x06000011 RID: 17 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000011")] [Address(RVA = "0x67D580", Offset = "0x67C380", VA = "0x18067D580")] private Bitmap(SerializationInfo info, StreamingContext context) { } /// Sets the color of the specified pixel in this . /// The x-coordinate of the pixel to set. /// The y-coordinate of the pixel to set. /// A structure that represents the color to assign to the specified pixel. /// The operation failed. // Token: 0x06000012 RID: 18 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000012")] [Address(RVA = "0x67D050", Offset = "0x67BE50", VA = "0x18067D050")] public void SetPixel(int x, int y, Color color) { } } }