gpt4 book ai didi

delphi - Delphi 7 中文本/标题的宽度(以像素为单位)

转载 作者:行者123 更新时间:2023-12-03 14:39:29 24 4
gpt4 key购买 nike

这是我的问题,我想知道文本的实际长度(以像素为单位)(请注意,某些字体中的各种字母具有不同的长度)。我将使用它来更好地调整 DBGrid 中的列宽。

最佳答案

您可以使用Canvas.TextWidthCanvas.TextHeight功能。

选项1,使用控件的 Canvas

WidthInPixels := Label1.Canvas.TextWidth('My Text');

选项 2,创建临时 Canvas (使用 Tbitmap)

Function GetWidthText(const Text:String; Font:TFont) : Integer;
var
LBmp: TBitmap;
begin
LBmp := TBitmap.Create;
try
LBmp.Canvas.Font := Font;
Result := LBmp.Canvas.TextWidth(Text);
finally
LBmp.Free;
end;
end;

关于delphi - Delphi 7 中文本/标题的宽度(以像素为单位),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1564719/

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