출처는 여기
1 2 3 4 5 6 7 8 9 10 11 12 |
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; |