Dev Center
Table of contents

Thanks for downloading Dynamsoft Barcode Reader Package!

Your download will start shortly. If your download does not begin, click here to retry.

IntermediateResultSavingMode

IntermediateResultSavingMode defines how to save the intermediate result(s). It can be one of the follwoing candidate modes.

Candidate Mode List

  • IRSM_MEMORY
  • IRSM_FILESYSTEM
  • IRSM_BOTH
  • IRSM_REFERENCE_MEMORY

IRSM_MEMORY

Saves intermediate results in memory with public data format.

IRSM_FILESYSTEM

Saves intermediate results in file system. This mode has the following arguments for further customizing.

IRSM_BOTH

Saves intermediate results using IRSM_MEMORY and IRSM_FILESYSTEM. This mode has the following arguments for further customizing.

IRSM_REFERENCE_MEMORY

Saves intermediate results in memory with internal data format. This mode has the following arguments for further customizing.

Setting Methods

As PublicRuntimeSettings Member

IntermediateResultSavingMode can be set dynamically during runtime as a member of PublicRuntimeSettings struct, it is one of the IntermediateResultSavingMode Enumeration items.

Code Snippet in C++

//...other codes
PublicRuntimeSettings* pSettings = new PublicRuntimeSettings;
int errorCode = reader->GetRuntimeSettings(pSettings);
pSettings->intermediateResultSavingMode = IRSM_MEMORY;
reader->UpdateRuntimeSettings(pSettings);
delete pSettings;
//...other codes

See Also

As JSON Parameter

IntermediateResultSavingMode as a JSON parameter is a JSON object defined as below.

Key Name Key Value Description
Mode Any one in Candidate Mode List as string (Required) Sets how to save the intermediate result.
FolderPath A string from value range of FolderPath (Optional) Sets the Argument FolderPath.
RecordsetSizeOfLatestImages A number from value range of RecordsetSizeOfLatestImages (Optional) Sets the Argument RecordsetSizeOfLatestImages.

JSON Parameter Example

{
    "IntermediateResultSavingMode": {
            "Mode": "IRSM_FILESYSTEM",
            "FolderPath": "C:\",
            "RecordsetSizeOfLatestImages": 0
        }
}

Candidate Argument List

FolderPath

Sets the path of the output folder which stores intermediate results.

Value Type Value Range Default Value
string A string value representing the folder path with max length 480. ””

Remarks
- “”: The library path.
- Please make sure the path exists and your application has the appropriate permissions for saving the results.

RecordsetSizeOfLatestImages

Sets the maximum count of recordset to store the latest images’ intermediate results.

Value Type Value Range Default Value
int [0,0x7fffffff] 0

Remarks
- 0: no limitation on the count of recordset.
- When the count exceeds, the old recordset will be replaced by the new one.

This page is compatible for:

Version 7.5.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest version
    • Version 10.x
      • Version 10.2.0
      • Version 10.0.21
      • Version 10.0.20
      • Version 10.0.10
      • Version 10.0.0
    • Version 9.x
      • Version 9.6.40
      • Version 9.6.33
      • Version 9.6.32
      • Version 9.6.31
      • Version 9.6.30
      • Version 9.6.20
      • Version 9.6.10
      • Version 9.6.0
      • Version 9.4.0
      • Version 9.2.0
      • Version 9.0.0
    • Version 8.x
      • Version 8.8.0
      • Version 8.6.0
      • Version 8.4.0
      • Version 8.2.0
      • Version 8.1.2
      • Version 8.1.0
      • Version 8.0.0
    • Version 7.x
      • Version 7.6.0
      • Version 7.5.0
    Change +