Export SVG with IsWithoutBorder
Moderators: SDS, support, admin
Export SVG with IsWithoutBorder
Hallo,
I use CADImportVCL to show SVG in an TPicture-Component. With the SVG unit i can set the IsWithoutBorder property to true. Now i want to export this SVG with this option in a new SVG-file. But when I open this new file with the InternetBrowser (FF, IE) there is a border. Is there a possibility to export only the SVG without border so that the InternetBrowser doesn't show this?
I use CADImportVCL to show SVG in an TPicture-Component. With the SVG unit i can set the IsWithoutBorder property to true. Now i want to export this SVG with this option in a new SVG-file. But when I open this new file with the InternetBrowser (FF, IE) there is a border. Is there a possibility to export only the SVG without border so that the InternetBrowser doesn't show this?
Re: Export SVG with IsWithoutBorder
Hello Steve!
The SVG file should be exported without border when TsgSVGImage.IsWithoutBorder is set to True. You can also try to set TsgCADtoSVG.IsWithoutBorder to True before saving to file:
Mikhail.
The SVG file should be exported without border when TsgSVGImage.IsWithoutBorder is set to True. You can also try to set TsgCADtoSVG.IsWithoutBorder to True before saving to file:
Code: Select all
var
vCADtoSVG: TsgCADtoSVG;
...
vCADtoSVG := TsgCADtoSVG.Create(Img);
vCADtoSVG.IsWithoutBorder := True;
try
vCADtoSVG.SaveToFile('c:\result.svg');
finally
vCADtoSVG.Free;
end;
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: Export SVG with IsWithoutBorder
Hallo Mikhail,
thx for the answer.
Is it also possible to export only a viewBox of the SVG? When i export i always get a viewBox of 0 0 65535 65535.
thx for the answer.
Is it also possible to export only a viewBox of the SVG? When i export i always get a viewBox of 0 0 65535 65535.
Re: Export SVG with IsWithoutBorder
Hello Steve,
It's not possible to define and export only the viewbox. Do not confuse the width and height of the viewbox with the width and height of the SVG document. If you think of the document as a canvas, the viewbox is the part of the canvas that you see. The viewbox can cover the entire canvas or just a portion of it.
Mikhail.
It's not possible to define and export only the viewbox. Do not confuse the width and height of the viewbox with the width and height of the SVG document. If you think of the document as a canvas, the viewbox is the part of the canvas that you see. The viewbox can cover the entire canvas or just a portion of it.
Mikhail.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support