Вот, только это сравнительно медленно:
TYPE
TFColor = record b,g,r:Byte end;
PFColor =^TFColor;
procedure SmoothLine(dc: HDC; x1, y1, x2, y2: Integer; c: TFColor);
var
dx,dy,d,s,ci,ea,ec: Integer;
p: tFColor;
begin
if(y1=y2)or(x1=x2)then
begin
MoveToEx(dc, X1, Y1, nil);
LineTo(dc, X2,y2);
end
else
begin
if y1>y2 then
begin
d:=y1; y1:=y2; y2:=d;
d:=x1; x1:=x2; x2:=d;
end;
dx:=x2-x1;
dy:=y2-y1;
if dx>-1 then s:=1 else
begin
s:=-1;
dx:=-dx;
end;
ec:=0;
if dy>dx then
begin
ea:=(dx shl 16)div dy;
while dy>1 do
begin
Dec(dy);
d:=ec;
Inc(ec,ea);
ec:=ec and $FFFF;
if ec<=d then Inc(x1,s);
Inc(y1);
ci:=ec shr 8;
p.r:=GetRValue(GetPixel(DC,X1,Y1));
p.g:=GetgValue(GetPixel(DC,X1,Y1));
p.b:=GetbValue(GetPixel(DC,X1,Y1));
p.b:=(p.b-c.b)*ci shr 8 + c.b;
p.g:=(p.g-c.g)*ci shr 8 + c.g;
p.r:=(p.r-c.r)*ci shr 8 + c.r;
SetPixel(dc, x1, y1, Rgb(p.r, p.g, p.b));
p.r:=GetRValue(GetPixel(DC,X1+s,Y1));
p.g:=GetgValue(GetPixel(DC,X1+s,Y1));
p.b:=GetbValue(GetPixel(DC,X1+s,Y1));
p.b:=(c.b-p.b)*ci shr 8 + p.b;
p.g:=(c.g-p.g)*ci shr 8 + p.g;
p.r:=(c.r-p.r)*ci shr 8 + p.r;
SetPixel(dc, x1+s, y1, Rgb(p.r, p.g, p.b));
end;
end else
begin
ea:=(dy shl 16)div dx;
while dx>1 do
begin
Dec(dx);
d:=ec;
Inc(ec,ea);
ec:=ec and $FFFF;
if ec<=d then Inc(y1);
Inc(x1,s);
ci:=ec shr 8;
p.r:=GetRValue(GetPixel(DC,X1,Y1));
p.g:=GetgValue(GetPixel(DC,X1,Y1));
p.b:=GetbValue(GetPixel(DC,X1,Y1));
p.b:=(p.b-c.b)*ci shr 8 + c.b;
p.g:=(p.g-c.g)*ci shr 8 + c.g;
p.r:=(p.r-c.r)*ci shr 8 + c.r;
SetPixel(dc, x1, y1, Rgb(p.r, p.g, p.b));
p.r:=GetRValue(GetPixel(DC,X1,Y1+1));
p.g:=GetgValue(GetPixel(DC,X1,Y1+1));
p.b:=GetbValue(GetPixel(DC,X1,Y1+1));;
p.b:=(c.b-p.b)*ci shr 8 + p.b;
p.g:=(c.g-p.g)*ci shr 8 + p.g;
p.r:=(c.r-p.r)*ci shr 8 + p.r;
SetPixel(dc, x1, y1+1, Rgb(p.r, p.g, p.b));
end;
end;
end;
end;