Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
FPvectorial
»
Gradients in svg files
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Building units fails afte...
by
NormanDunbar
[
Today
at 06:39:32 pm]
Error: Compilation raised...
by
janasoft
[
Today
at 06:21:54 pm]
I hope FreePascal can sup...
by
marcov
[
Today
at 06:03:54 pm]
FPC 3.2.4-rc1 available
by
Fred vS
[
Today
at 05:45:33 pm]
FPC Unleashed (inline var...
by
ccrause
[
Today
at 04:10:31 pm]
Elite Arcade
by
Guva
[
Today
at 03:41:28 pm]
Little bit...
by
Thaddy
[
Today
at 02:19:01 pm]
[SOLVED] Cannot build Uni...
by
Thausand
[
Today
at 02:18:34 pm]
default pin settings, atm...
by
ccrause
[
Today
at 11:45:37 am]
TChart how setup nicestep...
by
eldonfsr
[
Today
at 05:18:14 am]
AI assisted translation o...
by
schuler
[
Today
at 03:07:59 am]
Can I get the position an...
by
wp
[
Today
at 12:23:04 am]
Translate .lfm file in a ...
by
wp
[
Today
at 12:07:11 am]
Playing video without to ...
by
n7800
[April 17, 2026, 11:51:39 pm]
Delimited text - how find...
by
n7800
[April 17, 2026, 11:28:25 pm]
overloading issues fpc3.2...
by
Martin_fr
[April 17, 2026, 10:21:07 pm]
Ann: Deinline: a de-inlin...
by
LeP
[April 17, 2026, 09:58:08 pm]
Seeking advice on setting...
by
schuler
[April 17, 2026, 03:36:28 pm]
Ann: DeCoperators
by
DomingoGP
[April 17, 2026, 03:23:39 pm]
TLazSerial : serial port ...
by
CM630
[April 17, 2026, 09:50:34 am]
[Solved] Help needed comp...
by
landolfi
[April 17, 2026, 02:45:10 am]
DataPort or Synpase stat...
by
eldonfsr
[April 16, 2026, 11:32:18 pm]
[FPC 3.2.4, Windows] PTC ...
by
Fred vS
[April 16, 2026, 08:26:24 pm]
IDE: Property editor does...
by
dsiders
[April 16, 2026, 07:04:22 pm]
What is wrong with this c...
by
OH1KH
[April 16, 2026, 04:32:48 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Gradients in svg files (Read 6872 times)
pgarcia
Newbie
Posts: 1
Gradients in svg files
«
on:
November 04, 2013, 12:32:16 pm »
Hi, FPvectorial don't work for svg gradients or is something grong in my code?
procedure TForm1.Button1Click(Sender: TObject);
var
Vec: TvVectorialDocument;
page: TvVectorialPage;
ts: TStringList;
begin
ts := TStringList.Create();
ts.Add('<svg xmlns="
http://www.w3.org/2000/svg
" width="100%" height="100%" viewBox="0 0 1 1" preserveAspectRatio="none">');
ts.Add('<linearGradient id="g348" gradientUnits="userSpaceOnUse" x1="0%" y1="0%" x2="100%" y2="100%"> ');
ts.Add('<stop stop-color="#FFFFFF" offset="0"/><stop stop-color="#E3A820" offset="1"/>');
ts.Add('</linearGradient> ');
ts.Add('<rect x="0" y="0" width="1" height="1" fill="url(#g348)" />');
ts.Add('</svg> ');
Vec := TvVectorialDocument.Create;
try
Image1.Canvas.Brush.Color := clWhite;
Image1.Canvas.FillRect(0, 0, Image1.Width, Image1.Height);
vec.ReadFromStrings(ts, vfSVG);
page := vec.GetCurrentPageAsVectorial;
page.DrawBackground(image1.canvas);
page.Render(image1.Canvas, 0, image1.Height, 40, -40);
image1.Invalidate;
finally
Vec.Free;
end;
end;
This code is called form the onclick of a tbutton and image1 is a TImage.
Thanks for the responses in advance
Logged
felipemdc
Administrator
Hero Member
Posts: 3538
Re: Gradients in svg files
«
Reply #1 on:
December 27, 2014, 07:55:01 pm »
Hello, I'm working in supporting gradients, but they are quite complex....
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
FPvectorial
»
Gradients in svg files
TinyPortal
© 2005-2018