Back to FabImage Library websiteYou are here:
Start »
Function Reference »
Serialization »
SaveObject
Header: |
STD.h
|
Namespace: |
fis |
Module: |
FoundationLite |
Saves an FIL object to a file.
Syntax
void fis::SaveObject
(
const T& inObject,
const ftl::String& inTypeName,
const ftl::String& inFile,
fil::StreamMode::Type inStreamMode,
bool inIgnoreErrors,
int inCompressionLevel
)
Parameters
|
Name |
Type |
Default |
Description |
 |
inObject |
const T& |
|
Object to save. |
 |
inTypeName |
const String& |
|
Type of object to save. |
 |
inFile |
const String& |
|
Destination file path. |
 |
inStreamMode |
StreamMode::Type |
|
|
 |
inIgnoreErrors |
bool |
|
|
 |
inCompressionLevel |
int |
|
|
Remarks
Stream Modes
It is recommended to use the Binary stream mode for saving an object to a file as it is more efficient and works with all data types.
The Text mode is more human-friendly, so it should be chosen if humans are expected to read or modify the file.
File Naming Conventions
It is recommended to name the files with the following double file extension:
.<typeName>.fidata, where
<typeName> is the instance type.
Working with Saved Objects
There are three ways to load the saved objects in FabImage Studio:
- using the LoadObject filter with the same instance type,
- using the command Load from File... from a filter input's context menu in the Program Editor (only binary files),
- using the command Link to a File... from a filter input's context menu in the Program Editor (only binary files).
Possible Errors
-
[Io Error] Unable to open file for writing in SaveObject.
You may have no write permission for the current working directory. If the project has not been saved yet, the working
directory is typically in C:\Program Files and this message appears. Save the project to solve the problem.
See Also