You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, at 6 Jan 2025 I need to change my code of Image32SVGFactory from:
vbox := fSvgReader.RootElement.GetViewbox;
to
vbox := fSvgReader.RootElement.viewboxWH;
because GetViewbox was removed from source of Img32.SVG.Reader, but it is also mentioned in a comment line... ;-)
Now the problem is that, after loading an svg file RootElement.viewboxWH is not initialized, so I need to make a change to source code of Img32.SVG.Reader adding a new public method "CalcViewBoxOfRootElement" like this:
Hello, at 6 Jan 2025 I need to change my code of Image32SVGFactory from:
vbox := fSvgReader.RootElement.GetViewbox;
to
vbox := fSvgReader.RootElement.viewboxWH;
because GetViewbox was removed from source of Img32.SVG.Reader, but it is also mentioned in a comment line... ;-)
Now the problem is that, after loading an svg file RootElement.viewboxWH is not initialized, so I need to make a change to source code of Img32.SVG.Reader adding a new public method "CalcViewBoxOfRootElement" like this:
Or something else that give me a chance to read the viewbox size, after loading file stream or source stream...
Thanks....
Carlo
The text was updated successfully, but these errors were encountered: