Showing 100 Result(s)

Softek Barcode Reader Toolkit for Linux/OSX/iOS/Android… Version 9.2.1 released

Version 9.2.1.1 of the Softek Barcode Reader Toolkit SDK for Linux/OSX/iOS/Android has been released. Improvement to the recognition of QrCodes that have part of an edge missing. Quiet zones for QrCodes are now enforced correctly for color images larger than 1MB in size. Fix for very slow QrCode recognition on 64-bit systems with certain images. …

Softek Barcode SDK Version 9.2.1.1 released

Version 9.2.1.1 of the Softek Barcode Reader Toolkit SDK for Windows has been released. The main SDK has been rebuilt using VS2022 optimization and in tests runs about 5% faster than previous versions. SoftekSDKDemo now handles the ReadQRCode property correctly when editing an XML file. Improvement to the recognition of QrCodes that have part of …

Version 9.1.4 of the Barcode Reader SDK Released

Version 9.1.4 of the barcode reader SDK has been released. This applies to both the Windows version and the Linux/OSX/iOS/Android version. Most of the changes apply to 2-D barcode recognition as follows: The requirement for a minimum distance between 2 identical 2-D barcodes has been removed. A new property called Min2DLength (minimum length of a …

How to migrate from BardecodeFiler Desktop to BardecodeFiler Service

Steps to BardecodeFiler Desktop to BardecodeFiler Service: 1. Save your current BardecodeFiler settings to an “ini” file. 2. Right click on BardecodeFiler and select “Run as admin” 3. Go to Options/Service Settings/BardecodeFiler Service 4. Import the settings from the “ini” file. 5. Adjust the input/output/processed and exception folders (they do not get imported). 6. Set …

Softek Barcode Reader SDK for Linux Version 9.1.1.1 has been released

Softek Barcode Reader SDK for Linux Version 9.1.1.1 has been released. The main change in this version is the addition of functions to read from TIF, and JPEG files held in memory rather than as files on disc. The new function is called mtScanBarCodeFromString. The C interface has also been brought in line with the …

Softek Barcode Reader Toolkit for Windows Version 9.1.1.1 released

Softek Barcode Reader SDK for Windows Version 9.1.1.1 has been released. The main change in this version is the addition of functions to read from TIF, PDF, JPEG,GIF or PNG files held in memory rather than as files on disc. The new functions are called ScanBarCodeFromString for the DLL or ScanBarCodeFromByteArray for the .Net interface. …

How to convert Adobe PDF to TIF on Linux using Ghostscript

Here is the command line to convert an Adobe PDF document to TIF on Linux, in a suitable format to be used as input for the Linux version of the Softek Barcode Reader Toolkit: For color documents: gs -dNOPAUSE -r300 -sDEVICE=tiffscaled24 -sCompression=lzw -dBATCH -sOutputFile=output.tif input.pdf For black and white: gs -dNOPAUSE -r300 -sDEVICE=tiffg4 -sCompression=lzw -dBATCH …

Using opencv images with the Softek barcode reader toolkit

Here’s some C code that shows how to read an opencv cv::Mat image using the barcode reader toolkit. The main points to note are: Read the image using the cv::IMREAD_GRAYSCALE flag Flip the image vertically Align the scan lines to 4 byte boundaries #include <barcode.h> #include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> static void …