gpt4 book ai didi

delphi - 向 TBitmap 添加阴影

转载 作者:行者123 更新时间:2023-12-02 00:46:10 25 4
gpt4 key购买 nike

我有一个获取屏幕截图的例程(TBitmap),我需要向最终的 TBitmap/图像添加阴影,我有这段代码(以前可以工作,但是......)有些不对劲,下降- 根本不绘制阴影:

// --------------------------------------------------------------------- //
procedure TakeScreenshot();
var
lCapRect : TRect;
DestBitmap : TBitmap;
begin
// Take the screenshot & assign it to DestBitmap
// ...

// Add the drop shadow to DestBitmap
DestBitmap.Width := DestBitmap.Width + 6;
DestBitmap.Height := DestBitmap.Height + 6;

PaintShadow(DestBitmap.Canvas, lCapRect);
end;
// --------------------------------------------------------------------- //
procedure PaintShadow(ACanvas : TCanvas; ARect : TRect);
var
AColor : TColor;
i, iMax : Integer;
h1, h2, v1, v2 : Integer;
begin
AColor := ACanvas.Brush.Color;
iMax := 6;
h1 := ARect.Left;
h2 := ARect.Right;
v1 := ARect.Top;
v2 := ARect.Bottom;

with ACanvas do
begin
for i := iMax downto 0 do
begin
ACanvas.Pen.Mode := pmMask;
Pen.Color := DarkenColorBy(AColor, ((iMax - i) * 4 + 10));

MoveTo(h1 + 4{i}, v2 + i);
LineTo(h2 + i + 1, v2 + i);
end; // for

for i := iMax downto 0 do
begin
ACanvas.Pen.Mode := pmMask;
Pen.Color := DarkenColorBy(AColor, ((iMax - i) * 4 + 10));

MoveTo(h2 + i, v1 + 4{i});
LineTo(h2 + i, v2 + i);
end; // for
end; // with
end;
// --------------------------------------------------------------------- //
function Max(const A, B: Integer): Integer;
begin
if (A > B) then
Result := A
else
Result := B;
end;
// --------------------------------------------------------------------- //
function DarkenColorBy(BaseColor : TColor; Amount : Integer) : TColor;
begin
Result := RGB(Max(GetRValue(ColorToRGB(BaseColor)) - Amount, 0),
Max(GetGValue(ColorToRGB(BaseColor)) - Amount, 0),
Max(GetBValue(ColorToRGB(BaseColor)) - Amount, 0));
end;

我的问题是:我该如何解决这个问题(或者有人知道向 TBitmap 添加阴影的简单方法)?

最终图像应保存为 bmp/jpg,而不是在 TImage 中显示,因此我确实需要向图像本身添加阴影。

PS。我使用的是 Delphi 7 Pro,我的应用程序仅限于 Windows XP 或更高版本

编辑

lCapRect 取决于设置(无论我是捕获事件监视器、窗口还是所有桌面监视器),但假设它是这样计算的:

lCapRect.Right  := Screen.DesktopLeft + Screen.DesktopWidth;
lCapRect.Bottom := Screen.DesktopTop + Screen.DesktopHeight;
lCapRect.Left := Screen.DesktopLeft;
lCapRect.Top := Screen.DesktopTop;

位图确实包含屏幕截图(+ 6 个像素添加到底部和右侧,为阴影腾出空间),只是没有发生阴影绘制

最佳答案

您还没有展示如何计算lCapRect。为了不绘制关于 PaintShadow 过程的位图,它必须小于位图,例如:

lCapRect := DestBitmap.Canvas.ClipRect;

// Add the drop shadow to DestBitmap
DestBitmap.Width := DestBitmap.Width + 6;
DestBitmap.Height := DestBitmap.Height + 6;

PaintShadow(DestBitmap.Canvas, lCapRect);

关于delphi - 向 TBitmap 添加阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10918776/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com