Page 1 of 1

SvgVectorOutput Windows, Linux differences significant?

Posted: Thu Jan 04, 2024 9:17 am
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() ...

Re: SvgVectorOutput Windows, Linux differences significant?

Posted: Thu Jan 04, 2024 9:43 am
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.