
Graphic
文章平均质量分 54
iseekcode
Delphi票友
展开
-
在SpeedButton上绘图
TSpeedButton是不支持自绘的,即使为它创建一个TControlCanvas,画上去的图也保持不了。于是想到了SpeedButton的Glyph属性。不错,Glyphi装的可不是TBitmap么?直接画它不就得了。赶紧Test一下,果然,OK。以下是测试代码: procedure TForm1.Button1Click(Sender: TObject);var原创 2009-10-13 11:26:00 · 1753 阅读 · 0 评论 -
Delphi中绘制圆角矩形的窗体
制作圆角矩形的窗体:01.procedure TPortForm.FormCreate(Sender: Tobject);02.var hr :thandle;03.begin04.hr:=createroundrectrgn(0,0,width,height,20,20);05.setwindowrgn(handle,hr,true); 06.end;如果不要窗体外框,则使用:转载 2009-10-16 19:23:00 · 6801 阅读 · 0 评论 -
用Delphi画圆角Panel的方法
用Delphi画圆角Panel的方法procedure TForm1.Button5Click(Sender: TObject);var fhr :Thandle;beginfhr:=createroundrectrgn(0,0,panel1.width,panel1.height,4,4);setwindowrgn(panel1.handle,fhr,true);e转载 2009-10-17 11:31:00 · 5317 阅读 · 0 评论 -
在RichEdit控件中插入GIF动画表情
在UDP即时通讯软件中实现类似于QQ的动画表情,在richEdit控件中插入gif动画表情。发送的时候将表情转为命令,接收之后,再将命令转换为相应的动画表情。需要引用一个QQ的DLL,文件在附件中。将此DLL导入到DELPHI中。unit URichEdit;interfaceuses Windows, Messages, SysUtils, Classes, Controls, St转载 2009-11-04 09:21:00 · 1190 阅读 · 0 评论 -
How to resize a *.jpg image and save the result to a file
Question How do I resize a *.jpg or *.gif image from say 640 × 480 to 50 × 50 and then save the image as a new one? procedure TForm1.Button1Click(Sender: TObject);var bmp: TBitmap; jpg: TJpeg转载 2009-11-17 12:42:00 · 581 阅读 · 0 评论 -
How to use a TControlCanvas in a component
How to use a TControlCanvas in a component type TScrollingPaintBox = class(TScrollingWinControl) private FCanvas: TCanvas; public constructor Create(aOwner: TComponent); override; des转载 2009-11-17 12:48:00 · 559 阅读 · 0 评论 -
GradientFill found in 'msimg32.dll'
GradientFill found in msimg32.dllThis Delphi source code shows how the GradientFill function can be used to add smooth shading to a triangle or rectangle. For a triangle call the GradientFill functi转载 2010-02-11 18:22:00 · 804 阅读 · 0 评论 -
Saving a RichEdit to a Metafile
IntroductionSometimes, you may want to store the contents of a rich edit control in a metafile.This article outlines an approach that stores this type of controls contents in enhanced metafiles, on转载 2010-02-11 18:26:00 · 696 阅读 · 0 评论