#include "l_bitmap.h"
L_LTSVG_API L_INT L_SvgSaveDocument(fileName, docHandle, options)
const L_TCHAR* fileName; |
output file name |
const L_SvgNodeHandle docHandle; |
SVG document handle |
const L_SvgSaveOptions* options; |
pointer to save options |
Saves the specified SVG document to a file on disk.
Parameter |
Description |
fileName | Character string containing the output file name. |
docHandle | Handle that holds the SVG document data. |
options | Pointer to optional save options. Pass NULL to use the default save options. |
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function will save the specified SVG document to the output file as a standard SVG document.
Support for SVG is only available in the Document and Medical Imaging toolkits.
Required DLLs and Libraries
LTSVG For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Win32, x64, Linux.
Functions: | L_SvgSaveDocumentMemory, L_SvgCreateDocument, L_LoadSvg, L_SvgLoadDocument, L_SvgFreeNode |
Topics: | Working with SVG |
For an example, refer to L_SvgLoadDocument.