DrawInvertedLine

procedure DrawInvertedLine(img: TImage32; const line: TPathD; lineWidth: double; endStyle: TEndStyle; joinStyle: TJoinStyle = jsAuto); overload;

procedure DrawInvertedLine(img: TImage32; const lines: TPathsD; lineWidth: double; endStyle: TEndStyle; joinStyle: TJoinStyle = jsAuto); overload;

Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
uses Img32, Img32.Fmt.PNG, Img32.vector, Img32.Draw;
...
var
  img: TImage32;
  path: TPathD;
  rec: TRect;
begin
  img := TImage32.Create(256,256);
  rec := img.Bounds;
  rec.Right := rec.Right div 4;
  path := Rectangle(rec);
 
  //draw a multicolored background
  DrawPolygon(img, path, frEvenOdd, clRed32);
  path := OffsetPath(path, rec.Width, 0);
  DrawPolygon(img, path, frEvenOdd, clYellow32);
  path := OffsetPath(path, rec.Width, 0);
  DrawPolygon(img, path, frEvenOdd, clLime32);
  path := OffsetPath(path, rec.Width, 0);
  DrawPolygon(img, path, frEvenOdd, clBlue32);
 
  //draw a color inverted ellipse
  path := Ellipse(RectD(30,30,226,226));
  DrawInvertedLine(img, path, 20, esPolygon);
  img.SaveToFile('inverted.png');
  img.Free;
end;

See Also

TEndStyle, TJoinStyle