SVG_SAVE_AS_PICTURE

4D - Documentation   Français   English   German   4D SVG Component, Command Theme List   4D SVG Component, Index   Back   Previous   Next

version 11.3


SVG_SAVE_AS_PICTURE (svgObject; document{; codec})

ParameterTypeDescription
svgObjectSVG_RefSVG object reference
documentStringDocument name or
Full pathname ofdocument
codecStringPicture codec ID

Description

The SVG_SAVE_AS_PICTURE command writes the contents of the SVG object specified by svgObject into the picture file specified by document. If svgObject is not an SVG document, an error is generated.

In document, you can pass the full pathname of the file, or only the file name – in which case the file will be created next to the database structure file. If you pass an empty string ("") in document, the standard Save file dialog box appears so that the user can specify the name, location and format of the file to be created.

The optional codec parameter can be used to specify the format in which to save the picture. If this parameter is omitted, the picture is saved in png format.

Example

   svgRef:=SVG_New(500;200; " Sales statistics ")
   …
   SVG_SAVE_AS_PICTURE (svgRef ;"test.png") `Save
   SVG_SAVE_AS_PICTURE (svgRef ;"test.gif" ;".gif") 
   SVG_CLEAR(svgRef )

See Also

SVG_Export_to_picture.


4D - Documentation   Français   English   German   4D SVG Component, Command Theme List   4D SVG Component, Index   Back   Previous   Next