50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Drawing.Imaging
|
|
{
|
|
/// <summary>Provides attributes of an image encoder/decoder (codec).</summary>
|
|
// Token: 0x0200003F RID: 63
|
|
[Token(Token = "0x200003F")]
|
|
[Flags]
|
|
public enum ImageCodecFlags
|
|
{
|
|
/// <summary>The codec supports encoding (saving).</summary>
|
|
// Token: 0x04000170 RID: 368
|
|
[Token(Token = "0x4000170")]
|
|
Encoder = 1,
|
|
/// <summary>The codec supports decoding (reading).</summary>
|
|
// Token: 0x04000171 RID: 369
|
|
[Token(Token = "0x4000171")]
|
|
Decoder = 2,
|
|
/// <summary>The codec supports raster images (bitmaps).</summary>
|
|
// Token: 0x04000172 RID: 370
|
|
[Token(Token = "0x4000172")]
|
|
SupportBitmap = 4,
|
|
/// <summary>The codec supports vector images (metafiles).</summary>
|
|
// Token: 0x04000173 RID: 371
|
|
[Token(Token = "0x4000173")]
|
|
SupportVector = 8,
|
|
/// <summary>The encoder requires a seekable output stream.</summary>
|
|
// Token: 0x04000174 RID: 372
|
|
[Token(Token = "0x4000174")]
|
|
SeekableEncode = 16,
|
|
/// <summary>The decoder has blocking behavior during the decoding process.</summary>
|
|
// Token: 0x04000175 RID: 373
|
|
[Token(Token = "0x4000175")]
|
|
BlockingDecode = 32,
|
|
/// <summary>The codec is built into GDI+.</summary>
|
|
// Token: 0x04000176 RID: 374
|
|
[Token(Token = "0x4000176")]
|
|
Builtin = 65536,
|
|
/// <summary>Not used.</summary>
|
|
// Token: 0x04000177 RID: 375
|
|
[Token(Token = "0x4000177")]
|
|
System = 131072,
|
|
/// <summary>Not used.</summary>
|
|
// Token: 0x04000178 RID: 376
|
|
[Token(Token = "0x4000178")]
|
|
User = 262144
|
|
}
|
|
}
|