Graphics.GetHalftonePalette 方法

定义

获取当前 Windows 半色调调色板的句柄。

C#
public static IntPtr GetHalftonePalette();

返回

IntPtr

指定调色板句柄的内部指针。

示例

下面的代码示例设计用于 Windows 窗体,它需要 PaintEventArgse,这是 Paint 事件处理程序的参数。 该代码执行以下操作:

  • 定义 Windows DLL 文件 gdi32.dll的互操作性 DllImportAttribute 属性,其中包含必要的 GDI 函数。

  • 将该 DLL 中的 SelectPaletteRealizePalette 函数定义为外部函数。

  • 从现有图像文件创建图像 SampImag.jpg(该文件必须与示例代码文件位于同一文件夹中),并将图像绘制到屏幕。

  • 创建内部指针类型变量并将其值分别设置为图形对象的句柄和当前 Windows 半色调调色板。

  • 选择并实现半色调调色板。

  • 使用 hdc 参数创建新的图形对象。

  • 再次绘制图像。

  • 释放设备上下文的句柄。

结果是示例图像的两个呈现:一个具有 16 位调色板,一个呈现 8 位调色板。

C#
[System.Runtime.InteropServices.DllImportAttribute("gdi32.dll")]
private static extern IntPtr SelectPalette(
    IntPtr hdc,
    IntPtr htPalette,
    bool bForceBackground);
[System.Runtime.InteropServices.DllImportAttribute("gdi32.dll")]
private static extern int RealizePalette(IntPtr hdc);

private void GetHalftonePaletteVoid(PaintEventArgs e)
{
    // Create and draw image.
    Image imageFile = Image.FromFile("SampImag.jpg");
    e.Graphics.DrawImage(imageFile, new Point(0, 0));

    // Get handle to device context.
    IntPtr hdc = e.Graphics.GetHdc();

    // Get handle to halftone palette.
    IntPtr htPalette = Graphics.GetHalftonePalette();

    // Select and realize new palette.
    SelectPalette(hdc, htPalette, true);
    RealizePalette(hdc);

    // Create new graphics object.
    Graphics newGraphics = Graphics.FromHdc(hdc);

    // Draw image with new palette.
    newGraphics.DrawImage(imageFile, 300, 0);

    // Release handle to device context.
    e.Graphics.ReleaseHdc(hdc);
}

注解

GetHalftonePalette 方法的目的是使 GDI+ 在显示器使用每像素 8 位时产生更好的质量半色调。 若要使用半色调调色板显示图像,请使用以下过程。

适用于

产品 版本
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10