Dynamsoft Barcode Reader v8.0全新上线!为Windows和Linux实现了在运行时动态加载算法库的机制

Dynamsoft Barcode Reader v8.0实现了使用参数模式枚举时在运行时动态加载库的机制,增加了对IntermediateResult解码的支持,增加了对中间结果解码的支持。

Dynamsoft Barcode Reader SDK一款多功能的条码读取控件,只需要几行代码就可以将条码读取功能嵌入到Web或桌面应用程序。这可以节省数月的开发时间和成本。能支持多种图像文件格式以及从摄像机或扫描仪获取的DIB格式。使用Dynamsoft Barcode Reader SDK,你可以创建强大且实用的条形码扫描仪软件,以满足你的业务需求。

Dynamsoft Barcode Reader最新版

我们很高兴发布Dynamsoft Barcode Reader v8.0,这是一个主要版本,具有一系列新功能和改进。该SDK现在可用于Windows,Linux,Android和iOS开发,并且即将推出其他版本。我们希望新版本可以为开发人员带来更多的灵活性,效率和生产力。

Highlights

为Windows和Linux实现了在运行时动态加载算法库的机制。

#ifndef Linuxreader->SetModeArgument("binarizationModes", 0, "LibraryFileName", ".dll", errorMessage, 256);#elsereader->SetModeArgument("binarizationModes", 0, "LibraryFileName", " ", errorMessage, 256);#endif

增加了对中间结果解码的支持。具有二进制图像的用户可以使用此功能跳过某些图像预处理步骤。

IntermediateResult* input = NULL;reader->InitIntermediateResult(IRT_ORIGINAL_IMAGE, input);input->resultsCount = 1;input->results = (void**)malloc(sizeof(ImageData*));ImageData * temp = (ImageData*)malloc(sizeof(ImageData));int len = iHeight*iStride;temp->bytes = (unsigned char *)malloc(sizeof(unsigned char) * len);memcpy(temp->bytes, binary_image, len);reader->DecodeIntermediateResults(input, "");reader->GetAllTextResults(&pResults);

实施了新的许可跟踪机制License 2.0,使用户可以更轻松地跟踪许可使用情况。

DM_LTSConnectionParameters ltspar; reader.InitLTSConnectionParameters(&ltspar);ltspar.handshakeCode =“";iRet = reader.InitLicenseFromLTS(&ltspar,szErrorMsg,256);

Added a new format control parameter, BarcodeZoneMinDistanceToImageBorders, to set the minimum distance (in pixels) between the barcode zone and image borders.

reader->InitRuntimeSettingsWithString("{n"ImageParameter"": {n""FormatSpecificationNameArray"": [ ""IP1"" ]

来源:慧都

声明:本站部分文章及图片转载于互联网,内容版权归原作者所有,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2020年10月22日
下一篇 2020年10月22日

相关推荐

发表回复

登录后才能评论