如何增加一条线上的点之间的间距?

时间:2019-04-05 16:47:11

标签: winapi gdi+ gdi

使用标准笔(PS_DOT)并用它画一条线时,结果如下图所示(放大)enter image description here

那条线对我来说有两个问题,第一个是,它为一个点设置了多个像素。第二个是,对于我想做的事情,这些点太靠近了(画一条很细的线。)

我可以使用SetPixel,但是性能令人非常渴望。

我的问题是:有没有一种较快的画线方法,可以控制画点的像素数和点之间的间距?

从本质上讲,比使用SetPixel更快的方法(可以用它来解决问题,如果不是那么慢的话)。

展示如何在C,C ++或Delphi中完成代码的代码段很棒。

谢谢您的帮助。

编辑:我尝试了使用ExtCreatePen的IInspectable答案,它非常接近。似乎获取像素/点而不是破折号的唯一方法是使用PS_ALTERNATE,但是使用该方法时,无法指定间距。

作为参考,以防万一我犯了一个我没有看到的错误,下面是我编写的测试程序。我想要的是一个由1个点(而不是破折号)和2个空格组成的重复序列。我从测试程序获得的输出显示(放大)如下:(顶行使用PS_ALTERNATE获得,底行使用指定1个点,2个空格的数组-给出2个点和2个空格。)

enter image description here

测试程序:

{$APPTYPE        GUI}

{$LONGSTRINGS    OFF}
{$WRITEABLECONST ON}

program _ExtCreatePen;

uses Windows, Messages;

const
  AppName  = 'ExtCreatePen';

{$ifdef VER90} { Delphi 2.0 }
type
  ptrint  = longint;        // NativeInt  for newer versions
  ptruint = dword;          // NativeUint  "    "      "
{$endif}

{-----------------------------------------------------------------------------}

function WndProc (Wnd : HWND; Msg : UINT; wParam, lParam : ptrint)
         : ptrint; stdcall;
const
  PenPattern   : packed array[1..4] of DWORD = (1, 2, 1, 2); { 1 dot, 2 spaces}

  PenBrush     : TLOGBRUSH = (lbStyle:BS_SOLID; lbColor:0; lbHatch:0);
  PenWidth     : DWORD     = 1;

  { !! this doesn't seem to work as expected, expected 1 dot, 2 spaces !!     }

  PenStyle     : DWORD     = PS_COSMETIC or PS_USERSTYLE;
  StyleCount   : DWORD     = high(PenPattern);
  StylePattern : PDWORD    = @PenPattern[low(PenPattern)];

  { this gives 1 dot, 1 space.                                                }

  //PenStyle     : DWORD     = PS_COSMETIC or PS_ALTERNATE;
  //StyleCount   : DWORD     = 0;
  //StylePattern : PDWORD    = nil;

  Pen          : HPEN      = 0;

var
  ps          : TPAINTSTRUCT;
  ClientRect  : TRECT;

begin
  WndProc := 0;

  case Msg of
    WM_CREATE:
    begin
      PenBrush.lbColor := RGB(255, 0, 0);

      Pen := ExtCreatePen(PenStyle,
                          PenWidth,
                          PenBrush,
                          StyleCount,
                          StylePattern);
      exit;
    end;

    WM_PAINT:
    begin
      BeginPaint(Wnd, ps);
        GetClientRect(Wnd, ClientRect);

        SelectObject(ps.hdc, Pen);  { use the pen we created    }

        MoveToEx(ps.hdc, 0, ClientRect.Bottom div 2, nil);
        LineTo(ps.hdc, ClientRect.Right, ClientRect.Bottom div 2);
      EndPaint(Wnd, ps);

      exit;
    end;

    WM_CLOSE: PostMessage(Wnd, WM_DESTROY, 0, 0);

    WM_DESTROY:
       begin
         if Pen <> 0 then DeleteObject(Pen);

         PostQuitMessage(0);

         exit;
       end; { WM_DESTROY }
  end; { case msg }

  WndProc := DefWindowProc (Wnd, Msg, wParam, lParam);
end;

{-----------------------------------------------------------------------------}

function InitAppClass: WordBool;
  { registers the application's window classes                                }
var
  cls : TWndClassEx;

begin
  cls.cbSize          := sizeof(TWndClassEx);           { must be initialized }

  if not GetClassInfoEx (hInstance, AppName, cls) then
  begin
    with cls do
    begin
      { cbSize has already been initialized as required above                 }

      style           := CS_BYTEALIGNCLIENT;
      lpfnWndProc     := @WndProc;                    { window class handler  }
      cbClsExtra      := 0;
      cbWndExtra      := 0;
      hInstance       := system.hInstance;
      hIcon           := LoadIcon (hInstance, IDI_APPLICATION);
      hCursor         := LoadCursor(0, IDC_ARROW);
      hbrBackground   := COLOR_WINDOW + 1;
      lpszMenuName    := nil;
      lpszClassName   := AppName;                     { Window Class name     }
      hIconSm         := 0;
    end; { with }

    InitAppClass := WordBool(RegisterClassEx(cls));
  end
  else InitAppClass := TRUE;
end;

{-----------------------------------------------------------------------------}

function WinMain : integer;
  { application entry point                                                   }
var
  Wnd : hWnd;
  Msg : TMsg;

begin
  if not InitAppClass then Halt (255);  { register application's class        }

  { Create the main application window                                        }

  Wnd := CreateWindowEx(WS_EX_CLIENTEDGE,
                        AppName,                { class name                  }
                        AppName,                { window caption text         }
                        ws_Overlapped       or  { window style                }
                        ws_SysMenu          or
                        ws_MinimizeBox      or
                        ws_ClipSiblings     or
                        ws_ClipChildren     or  { don't affect children       }
                        ws_visible,             { make showwindow unnecessary }
                        20,                     { x pos on screen             }
                        20,                     { y pos on screen             }
                        400,                    { window width                }
                        200,                    { window height               }
                        0,                      { parent window handle        }
                        0,                      { menu handle 0 = use class   }
                        hInstance,              { instance handle             }
                        nil);                   { parameter sent to WM_CREATE }

  if Wnd = 0 then Halt;                         { could not create the window }

  while GetMessage (Msg, 0, 0, 0) do            { wait for message            }
  begin
    TranslateMessage (Msg);                     { key conversions             }
    DispatchMessage  (Msg);                     { send to window procedure    }
  end;

  WinMain := Msg.wParam;                        { terminate with return code  }
end;

begin
  WinMain;
end.

2 个答案:

答案 0 :(得分:1)

如果需要控制一行中的虚线和空格的长度,请调用ExtCreatePen函数以创建PS_USERSTYLE笔。这样一来,您可以指定最多16个条目的数组,每个条目指定破折号或间隔的长度。

答案 1 :(得分:1)

您的代码没有错。正如您所描述的,我花了一些时间来实现GDI自定义虚线。

在GDI中,自定义的虚线以虚线表示,如MSDN中所述。

  

如果dwPenStylePS_COSMETICPS_USERSTYLE,则lpStyle数组中的条目将指定破折号的长度以及以样式单位表示的空格。样式单位由使用笔画线的设备定义。

     

如果dwPenStylePS_GEOMETRICPS_USERSTYLE,则   lpStyle数组以逻辑单位指定破折号的长度和空格。

此功能可以在GDI +中实现,如@Michael Chourdakis开头所述