代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Delphi
】
在画布上绘制文本
作者:
jellyvice
/ 发布于
2013/12/3
/
1250
function DrawDisabledText(const Canvas: Graphics.TCanvas; const X, Y: Integer; const Text: string; const AllowAccelChars: Boolean): Boolean; var Flags: Windows.UINT; // image type and state flags begin // Determine required flags if AllowAccelChars then Flags := Windows.DST_PREFIXTEXT else Flags := Windows.DST_TEXT; Flags := Flags or Windows.DSS_DISABLED; // Draw text Result := Windows.DrawState( Canvas.Handle, // device context to draw on 0, // brush (not required) nil, // output function (not required) Integer(PChar(Text)), // text to be rendered Length(Text), // length of text to be rendered X, Y, // co-ords of top left of text 0, 0, // size of text (not required) Flags // indicates text type and state ); end;
试试其它关键字
绘制文本
同语言下
.
多边形面积
.
限定软件使用时间
.
获取磁盘空间大小
.
窗口文字淡入淡出渐变效果
.
创建开机启动项
.
检测并枚举系统安装的打印机
.
实现保存和读取图片
.
字符串分隔函数
.
将BMP格式图形转化为JPG格式
.
解析FTP地址
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
jellyvice
贡献的其它代码
(
28
)
.
返回双精度浮点数数组的最大值2
.
返回一个双精度浮点数数组的最大值
.
检查指定数字是否是质数
.
两个数的最大公约数
.
把一个缓冲区里的字节输出成16进制表示格式
.
Graphic转换成Bitmap
.
获取一个图标或光标的热点位置
.
返回Gif图片的尺寸
.
返回指定bitmap图片的尺寸
.
检查系统中是否包含指定的字体
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3