Winsoft SVG Canvas library
converts canvas drawing to SVG format
Copyright © 2020 Для просмотра ссылки Войдиили Зарегистрируйся
converts canvas drawing to SVG format
Код:
with TSvgCanvas.Create('image.svg', Canvas) do
try
Pen.Color := clRed;
Pen.Width := 2;
Brush.Color := clYellow;
Ellipse(10, 10, 220, 120);
finally
Free;
end;
Код:
with TSvgCanvas.Create('image.svg', Canvas) do
try
BeginScene;
Stroke.Color := TAlphaColorRec.Red;
Stroke.Thickness := 2;
DrawEllipse(TRectF.Create(10, 10, 220, 120), 0.5);
EndScene;
finally
Free;
end;
Copyright © 2020 Для просмотра ссылки Войди