TechDraw ExportPageSVG/pl: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 33: Line 33:
==Scripting==
==Scripting==


{{Emphasis|See also:}} [[TechDrawGui_API|TechDrawGui API]] and [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
See also: [https://freecad.github.io/SourceDoc/ Autogenerated API documentation] and [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].


The SaveSVG tool can be used in [[Macros|macros]] and from the [[Python|Python]] console by using the following functions:
The SaveSVG tool can be used in [[Macros|macros]] and from the [[Python|Python]] console by using the following functions:

Revision as of 14:44, 18 November 2022

TechDraw ExportPageSVG

Menu location
TechDraw → Export Page as SVG
Workbenches
TechDraw
Default shortcut
None
Introduced in version
-
See also
TechDraw Templates, Draft SVG

Description

The ExportPageSVG tool saves the current drawing page as an SVG file.

Usage

  1. Press the Export Page as SVG button.
  2. A File Save dialog will open. Select a location and file name.

Notes

  • TechDraw Hatch patterns are not exported to SVG due to a limitation in Qt4's SVG support.
  • Text positions and sizes are not correct in the exported file. Using the "system" default font in the drawing improves the size problem considerably.

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

The SaveSVG tool can be used in macros and from the Python console by using the following functions:

TechDrawGui.exportPageAsSvg(DrawPageObject,FilePath)

Note that the FreeCADGui module must be active to use this function.