Showing 319 Result(s)

Softek Barcode Reader Toolkit Version 8 released

We’re pleased to announce the release of version 8 of the bar code reader SDK. Ability to fully utilize the power of multi-core/multi-processor systems by parallel processing separate pages of documents. New image extraction and render engine for the PDF extension with native 64-bit support. Better control over the scanning process with new functions to …

Using the SoftekBarcode DLL with Python

The following code as been kindly contributed by a developer to show how to use the SoftekBarcode DLL interface with Python: Python 3.7: import ctypes from ctypes import * import os # Load the dll softekDLL = ctypes.OleDLL(“C:\\tmp\\SoftekBarcodedll.dll”) # Create Barcode Instance and Set License Key barCode1 = softekDLL.mtCreateBarcodeInstance() # Set the license key softekDLL.mtSetLicenseKey(barCode1, …

Reading bar codes from memory bitmaps using ScanBarCodeFromBitmap

The ScanBarCodeFromBitmap function allows you to read bar codes from memory bitmaps rather than image files held on disk. The function takes a handle to a bitmap as the parameter rather than the path to a file containing the image. It is normally referred to as an HBITMAP by programmers. You can create a bitmap …