怎么设置点的大小?是像素点(Pixels)大小? ( 积分: 39 )

  • 主题发起人 主题发起人 yjtjhyygy
  • 开始时间 开始时间
Y

yjtjhyygy

Unregistered / Unconfirmed
GUEST, unregistred user!
procedure dot(DotPoint:TPoint;DotColor:TColor); {画点函数:DotPoint为坐标,DotColor为色彩}
begin
form1.Image1.Canvas.Pen.Width := 3 ;
with form1.image1.canvas do
Pixels[DotPoint.x,DotPoint.y] :=DotColor; //not(Pixels[DotPoint.x,DotPoint.y]xor DotColor);
end;
怎么设置点的大小?是像素点(Pixels)大小?
 
procedure dot(DotPoint:TPoint;DotColor:TColor); {画点函数:DotPoint为坐标,DotColor为色彩}
begin
form1.Image1.Canvas.Pen.Width := 3 ;
with form1.image1.canvas do
Pixels[DotPoint.x,DotPoint.y] :=DotColor; //not(Pixels[DotPoint.x,DotPoint.y]xor DotColor);
end;
怎么设置点的大小?是像素点(Pixels)大小?
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
659
import
I
I
回复
0
查看
641
import
I
后退
顶部