11

我需要制作一种包含透明区域的PNG图像的程序。表单必须是不可见的,而图像必须保持可见,透明区域必须保持透明。问题是图像透明度。在这种情况下,主窗体是透明的、不可见的,而所有组件/控件都保持可见。但是,PNG 图像的透明区域不保持透明度。如何保持透明度?

   procedure MakeTransparent;
   var
   AControl: TControl;
   A, Margin, X, Y, CtlX, CtlY: Integer;
   begin
     Margin    := (Width - ClientWidth) div 2;
     FullRgn   := CreateRectRgn(0, 0, Width, Height);
     X         := Margin;
     Y         := Height - ClientHeight - Margin;
   ClientRgn := CreateRectRgn(X, Y, X + ClientWidth, Y + ClientHeight);
   CombineRgn(FullRgn, FullRgn, ClientRgn, RGN_DIFF);
   for A := 0 to ControlCount - 1 do
   begin
    AControl := Controls[A];
    if (AControl is TWinControl) or (AControl is TGraphicControl) then with        AControl do
   begin
    if Visible then
    begin
      CtlX   := X + Left;
      CtlY   := Y + Top;
      CtlRgn := CreateRectRgn(CtlX, CtlY, CtlX + Width, CtlY + Height);
      CombineRgn(FullRgn, FullRgn, CtlRgn, RGN_OR);
    end;
  end;
  end;
  SetWindowRgn(Handle, FullRgn, True);
  end;



  procedure UndoTransparency;
  begin
   FullRgn := CreateRectRgn(0, 0, Width, Height);
   CombineRgn(FullRgn, FullRgn, FullRgn, RGN_COPY);
   SetWindowRgn(Handle, FullRgn, True);
  end;
4

2 回答 2

10

只需在您的表单中使用按钮删除此代码,您就会看到您的表单与您的 PNG 变得透明:

procedure SetTransparent(Aform: TForm; AValue: Boolean);
begin
  Aform.TransparentColor := AValue;
  Aform.TransparentColorValue := Aform.Color;
end;

procedure TForm2.Button1Click(Sender: TObject);
begin
  SetTransparent(Self, True);
end;
于 2012-04-11T02:20:27.287 回答
4

如果您需要部分透明度,那么 TransparentColor/TransparentColorValue 将无济于事。

对于 NonAero(或 DisabledAero)和 EnabledAero 情况,您将需要使用两种完全不同的方法。

启用 Aero 后,您将不得不使用此类方法:http ://delphihaven.wordpress.com/category/glass/

当 Aero 被禁用或不存在时,您将不得不使用某种 hack:

  1. 设置 AlphaBlend := True;
  2. 通过 BitBlt+GetDC+GetDesktopWindow 制作桌面截图。您的窗口不会出现在该屏幕截图上。
  3. 在与表单位置和大小相同的屏幕截图的表单部分上绘制。实际上,您将绘制表单后面的任何内容,这就是为什么它看起来像透明的原因。
  4. 定期重复动作 2 和 3。
于 2012-04-11T08:46:54.553 回答