We’ve made some changes to BardecodeFiler to improve speed when handling very large batches: 2 new options have been added under Options/Log Files/Enable Disable: Hide file details in tree until end of batch – do not display details for each file processed in a batch until the batch has completed. Clear tree data at start
The Natural History Museum in London is currently digitizing its collection, including insect slides with barcodes. BardecodeFiler is used to read the barcode from a photo of the slide and rename the photo to the code for the specimen. Here’s a link to video that explains the whole process: https://www.wired.co.uk/video/how-the-natural-history-museum-is-scanning-80-million-dead-creatures Here’s another link to an
We’re pleased to announce the release of BardecodeFiler version 2.6.1.1. The main highlight of this release is the new way of presenting information in the main output window. Gone is the free format text output, replaced by a tree structure that allows the user to explore the results from a batch and review previous batches
The Softek Barcode Reader SDK and our BardecodeFiler Windows application both use ‘regex’ pattern matching for matching barcode values. We often get asked advice on how to build a regex so we thought a short guide to the basics might be useful. Here is a simple example: ^\d{5}$ So let’s break it down: ^
BardecodeFiler Version 2.5.1.1 has been released. This version processes large files in the desktop interface much faster. For example, a 6000 page PDF file should process at at least 2X the speed of version 2.4.
Version 2.4.5 of BardecodeFiler has been released and can be downloaded from the following URL: http://www.bardecode.com/en1/download/ This version includes an update to the latest Debenu library (version 1611) and a bug fix that prevents the build up of zero length files in a users temporary folder. License key – if you are already on either
Moving BardecodeFiler Desktop between systems can be carried out with the following steps: 1. Determine the version number of BardecodeFiler on the source computer. If you click on Options then the version number is displayed in the lower left hand corner. 2. Go to Options/Import & Export and save the configuration to a “.ini” file.
BardecodeFiler Version 2.4.4 has been released with the following changes… The Debenu PDF library has been updated to version 1511 The Softek Barcode Reader Toolkit SDK has been upgraded to version 8.3.2.
The following new releases are now available for download: 1. Softek Barcode Reader Toolkit for Windows Version 8.3.1 Main changes: Improved handling of skewed images. Support for extended Datamatrix rectangle formats. Upgrade to Debenu PDF Library Version 14.11 Support for password protected PDF files Download from http://www.bardecode.com/en1/download/ License key compatibility: Keys valid for version 8.2.1
Here is what you need to use in a Reformat Table for converting a barcode value such as 123/456 to 123-456 Line 1, left hand side: ([^\/]+)\/([^\/]+) Line 1, right hand side: {1}-{2} Explanation: \/ matches a single / character (the \ is needed because / is a special character for regex) [^\/] is the