Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.68 KB

File metadata and controls

43 lines (34 loc) · 1.68 KB
layout default-layout
title How to enable DPM?
keywords Dynamsoft Barcode Reader, FAQ, tech basic, enable DPM
description How to enable DPM?
needAutoGenerateSidebar false
permalink /faq/general/how-to-enable-dpm.html

How to enable DPM?

<< Back to FAQ index

To enable DPM, assign the DPMCRM_GENERAL enumeration to the DPMCodeReadingModes array.

You can use OutputSettingsToFile to save the current runtime settings into a JSON file:

int OutputSettingsToFile(const char* templateName, const char* filePath)

Here is a JSON snippet for enabling DPM, update it in your output template:

    "BarcodeReaderTaskSettingOptions" : 
    [
        {
            "DPMCodeReadingModes" : 
            [
                {
                    "Mode" : "DPMCRM_GENERAL"
                }
            ]
        }
    ]

Once the JSON string is set, you can initialize the runtime settings to use it via the InitSettingsFromFile to update your current runtime settings with your modified template:

int InitSettingsFromFile(const char* filePath, char errorMsgBuffer[]=NULL, const int errorMsgBufferLen=0)

Please note that if you are modifying any other settings, you can include them in the JSON string/file as well, or you can access them individually after calling either of the aforementioned methods.