49 lines
2.1 KiB
C#
49 lines
2.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Drawing.Drawing2D
|
|
{
|
|
/// <summary>The <see cref="T:System.Drawing.Drawing2D.InterpolationMode" /> enumeration specifies the algorithm that is used when images are scaled or rotated.</summary>
|
|
// Token: 0x02000047 RID: 71
|
|
[Token(Token = "0x2000047")]
|
|
public enum InterpolationMode
|
|
{
|
|
/// <summary>Equivalent to the <see cref="F:System.Drawing.Drawing2D.QualityMode.Invalid" /> element of the <see cref="T:System.Drawing.Drawing2D.QualityMode" /> enumeration.</summary>
|
|
// Token: 0x040001B4 RID: 436
|
|
[Token(Token = "0x40001B4")]
|
|
Invalid = -1,
|
|
/// <summary>Specifies default mode.</summary>
|
|
// Token: 0x040001B5 RID: 437
|
|
[Token(Token = "0x40001B5")]
|
|
Default,
|
|
/// <summary>Specifies low quality interpolation.</summary>
|
|
// Token: 0x040001B6 RID: 438
|
|
[Token(Token = "0x40001B6")]
|
|
Low,
|
|
/// <summary>Specifies high quality interpolation.</summary>
|
|
// Token: 0x040001B7 RID: 439
|
|
[Token(Token = "0x40001B7")]
|
|
High,
|
|
/// <summary>Specifies bilinear interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 50 percent of its original size.</summary>
|
|
// Token: 0x040001B8 RID: 440
|
|
[Token(Token = "0x40001B8")]
|
|
Bilinear,
|
|
/// <summary>Specifies bicubic interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 25 percent of its original size.</summary>
|
|
// Token: 0x040001B9 RID: 441
|
|
[Token(Token = "0x40001B9")]
|
|
Bicubic,
|
|
/// <summary>Specifies nearest-neighbor interpolation.</summary>
|
|
// Token: 0x040001BA RID: 442
|
|
[Token(Token = "0x40001BA")]
|
|
NearestNeighbor,
|
|
/// <summary>Specifies high-quality, bilinear interpolation. Prefiltering is performed to ensure high-quality shrinking.</summary>
|
|
// Token: 0x040001BB RID: 443
|
|
[Token(Token = "0x40001BB")]
|
|
HighQualityBilinear,
|
|
/// <summary>Specifies high-quality, bicubic interpolation. Prefiltering is performed to ensure high-quality shrinking. This mode produces the highest quality transformed images.</summary>
|
|
// Token: 0x040001BC RID: 444
|
|
[Token(Token = "0x40001BC")]
|
|
HighQualityBicubic
|
|
}
|
|
}
|