Showing 6 Result(s)

BardecodeFiler Version 1.9.1 Released

We are pleased to announce the release of version 1.9.1 of our ready-to-use barcode reading application. Below are the details of the new features which continues to make BardecodeFiler one of the most powerful barcode reading applications available. PDF documents are now split in such a way as to preserve searchable data and other properties of …

Reading Barcodes with Delphi using win32 dll

Using the Softek Barcode Reader SDK with Delphi is pretty straight forward and we include a full example project with our download. This page aims to get you up and running in less than 15 minutes… Note that this example uses the win32 DLL interface to the SDK – if you would rather use the …

Android Barcode Reading – Quick Start Guide

So what’s the easiest way to integrate barcode reading into your app? Whilst it’s possible to integrate the Softek Barcode Reader into your Android app through our java class and jni library, it’s also possible to simply call our Bardecoder app direct from your own app with a minimal amount of work. The following article …

Using the Multi-Threaded set of dll functions

The SoftekBarcode.dll includes a set of functions suitable for use in multi-threaded applications. The multi-threaded functions all require a handle to the toolkit. This is created using the mtCreateBarcodeSession function and released using the mtDestroyBarcodeSession function: hBarcode = mtCreateBarcodeInstance() nBarcodes = mtScanBarCode(hBarcode, “input.tif”) …process the result in some way mtDestroyBarcodeInstance(hBarcode)   All the multi-threaded functions …