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 = "0x10EC150", Offset = "0x10EB150", VA = "0x1810EC150")]
private Bitmap()
{
}
// Token: 0x0600000D RID: 13 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600000D")]
[Address(RVA = "0x10EC2C0", Offset = "0x10EB2C0", VA = "0x1810EC2C0")]
internal Bitmap(IntPtr ptr)
{
}
// Token: 0x0600000E RID: 14 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600000E")]
[Address(RVA = "0x10EC310", Offset = "0x10EB310", VA = "0x1810EC310")]
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 = "0x10EC190", Offset = "0x10EB190", VA = "0x1810EC190")]
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 = "0x10EC010", Offset = "0x10EB010", VA = "0x1810EC010")]
public Bitmap(int width, int height, PixelFormat format)
{
}
// Token: 0x06000011 RID: 17 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000011")]
[Address(RVA = "0x10EC3C0", Offset = "0x10EB3C0", VA = "0x1810EC3C0")]
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 = "0x10EBE90", Offset = "0x10EAE90", VA = "0x1810EBE90")]
public void SetPixel(int x, int y, Color color)
{
}
}
}