Export SVG with IsWithoutBorder

Discuss and ask questions about CAD VCL (Delphi and C++ Builder).

Moderators: SDS, support, admin

Post Reply
Steve
Posts: 2
Joined: 24 Jan 2014, 14:41

Export SVG with IsWithoutBorder

Post by Steve » 24 Jan 2014, 15:54

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?

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Export SVG with IsWithoutBorder

Post by support » 28 Jan 2014, 13:10

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:

Code: Select all

var
  vCADtoSVG: TsgCADtoSVG;
...

  vCADtoSVG := TsgCADtoSVG.Create(Img);
  vCADtoSVG.IsWithoutBorder := True;
  try
    vCADtoSVG.SaveToFile('c:\result.svg');
  finally
    vCADtoSVG.Free;
  end;
Mikhail.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Steve
Posts: 2
Joined: 24 Jan 2014, 14:41

Re: Export SVG with IsWithoutBorder

Post by Steve » 05 Feb 2014, 13:16

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.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Export SVG with IsWithoutBorder

Post by support » 20 Feb 2014, 15:56

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.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply