gpt4 book ai didi

c# - 在 ASP.NET 中的两点之间绘制箭头

转载 作者:行者123 更新时间:2023-11-30 15:42:36 27 4
gpt4 key购买 nike

我在 ASP.NET 中动态生成图像。我怎样才能画一个箭头而不是下面代码片段中的线。我找不到任何 API。

Bitmap image = new Bitmap(640, 480);
Graphics graphics = Graphics.FromImage(image);
.
.
graphics.DrawLine(new Pen(Color.Red), lPoint, rPoint);

最佳答案

Bitmap image = new Bitmap(640, 480);
Graphics graphics = Graphics.FromImage(image);
Pen p = new Pen(Color.Red, 10);
p.EndCap = LineCap.ArrowAnchor;
graphics.DrawLine(p, lPoint, rPoint);

参见 LineCap Enumeration MSDN

关于c# - 在 ASP.NET 中的两点之间绘制箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7342246/

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