SvgVectorOutput Windows, Linux differences significant?

Just starting out? Need help? Post your questions and find answers here.
juergenkulow
Enthusiast
Enthusiast
Posts: 581
Joined: Wed Sep 25, 2019 10:18 am

SvgVectorOutput Windows, Linux differences significant?

Post by juergenkulow »

Are the differences in SvgVectorOutput between Windows and Linux significant?

Code: Select all

stroke="none" fill-rule="evenodd" fill="#FF0000"

Code: Select all

style="fill:rgb(100%,0%,0%);fill-opacity:1;stroke:none;"
using FillVectorOutput() ...
Andesdaf
User
User
Posts: 86
Joined: Sun Mar 22, 2009 2:53 pm
Location: GER, Saxony

Re: SvgVectorOutput Windows, Linux differences significant?

Post by Andesdaf »

Afaik the differences in the generated svg come from the use of different engines, the Windows one written by freak (cf. https://www.purebasic.fr/english/viewto ... 67#p471767).

On Windows, the svg attributes are used, the linux engine styles the elements with css. If mixed in one object, the css styles would override the styling given by attributes.
Post Reply