51 references to PixelFormat
System.Drawing.Common (47)
System\Drawing\Bitmap.cs (1)
277(GdiPlus.PixelFormat)format,
System\Drawing\Imaging\PixelFormat.cs (46)
11/// <inheritdoc cref="GdiPlus.PixelFormat.Indexed"/> 12Indexed = GdiPlus.PixelFormat.Indexed, 14/// <inheritdoc cref="GdiPlus.PixelFormat.Gdi"/> 15Gdi = GdiPlus.PixelFormat.Gdi, 17/// <inheritdoc cref="GdiPlus.PixelFormat.Alpha"/> 18Alpha = GdiPlus.PixelFormat.Alpha, 20/// <inheritdoc cref="GdiPlus.PixelFormat.PAlpha"/> 21PAlpha = GdiPlus.PixelFormat.PAlpha, 23/// <inheritdoc cref="GdiPlus.PixelFormat.Extended"/> 24Extended = GdiPlus.PixelFormat.Extended, 26/// <inheritdoc cref="GdiPlus.PixelFormat.Canonical"/> 27Canonical = GdiPlus.PixelFormat.Canonical, 29/// <inheritdoc cref="GdiPlus.PixelFormat.Undefined"/> 30Undefined = GdiPlus.PixelFormat.Undefined, 32/// <inheritdoc cref="GdiPlus.PixelFormat.DontCare"/> 33DontCare = GdiPlus.PixelFormat.DontCare, 35/// <inheritdoc cref="GdiPlus.PixelFormat.Format1bppIndexed"/> 36Format1bppIndexed = GdiPlus.PixelFormat.Format1bppIndexed, 38/// <inheritdoc cref="GdiPlus.PixelFormat.Format4bppIndexed"/> 39Format4bppIndexed = GdiPlus.PixelFormat.Format4bppIndexed, 41/// <inheritdoc cref="GdiPlus.PixelFormat.Format8bppIndexed"/> 42Format8bppIndexed = GdiPlus.PixelFormat.Format8bppIndexed, 44/// <inheritdoc cref="GdiPlus.PixelFormat.Format16bppGrayScale"/> 45Format16bppGrayScale = GdiPlus.PixelFormat.Format16bppGrayScale, 47/// <inheritdoc cref="GdiPlus.PixelFormat.Format16bppRgb555"/> 48Format16bppRgb555 = GdiPlus.PixelFormat.Format16bppRgb555, 50/// <inheritdoc cref="GdiPlus.PixelFormat.Format16bppRgb565"/> 51Format16bppRgb565 = GdiPlus.PixelFormat.Format16bppRgb565, 53/// <inheritdoc cref="GdiPlus.PixelFormat.Format16bppArgb1555"/> 54Format16bppArgb1555 = GdiPlus.PixelFormat.Format16bppArgb1555, 56/// <inheritdoc cref="GdiPlus.PixelFormat.Format24bppRgb"/> 57Format24bppRgb = GdiPlus.PixelFormat.Format24bppRgb, 59/// <inheritdoc cref="GdiPlus.PixelFormat.Format32bppRgb"/> 60Format32bppRgb = GdiPlus.PixelFormat.Format32bppRgb, 62/// <inheritdoc cref="GdiPlus.PixelFormat.Format32bppArgb"/> 63Format32bppArgb = GdiPlus.PixelFormat.Format32bppArgb, 65/// <inheritdoc cref="GdiPlus.PixelFormat.Format32bppPArgb"/> 66Format32bppPArgb = GdiPlus.PixelFormat.Format32bppPArgb, 68/// <inheritdoc cref="GdiPlus.PixelFormat.Format48bppRgb"/> 69Format48bppRgb = GdiPlus.PixelFormat.Format48bppRgb, 71/// <inheritdoc cref="GdiPlus.PixelFormat.Format64bppArgb"/> 72Format64bppArgb = GdiPlus.PixelFormat.Format64bppArgb, 74/// <inheritdoc cref="GdiPlus.PixelFormat.Format64bppPArgb"/> 75Format64bppPArgb = GdiPlus.PixelFormat.Format64bppPArgb, 77/// <inheritdoc cref="GdiPlus.PixelFormat.Max"/> 78Max = GdiPlus.PixelFormat.Max,
System.Private.Windows.GdiPlus (4)
Windows\Win32\Graphics\GdiPlus\GpBitmapExtensions.cs (1)
17PixelFormat format,
Windows\Win32\Graphics\GdiPlus\GpImageExtensions.cs (3)
24internal static PixelFormat GetPixelFormat(this IPointer<GpImage> image) 30return status == Status.Ok ? (PixelFormat)format : PixelFormat.Undefined;