📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

SoftekBarcodeNetStandard

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

SoftekBarcodeNetStandard

A library for reading barcodes from PDF, TIF and JPG files. Please email nuget@softeksoftware for a license key before using.

9.3.2
NuGet
Version published
Maintainers
1
Created
Source

Softek Barcode Reader Component for .NET Standard 2.0

Read barcodes from TIF, JPG and PDF format data or bitmaps held in memory.

The component is a wrapper for native libraries (included in the softek folder) for the following platforms:

Windows: X86, X64 and ARM64 Linux: X86, X64 and ARM64 OSX: X64 and ARM64

What's in the package?

SoftekBarcodeNet.dll (the .Net component which wraps around the native lib files)

softek (contains all of the required native lib files - you can remove any that are not required) win arm64 libbardecode.dll pdfium.dll x64 libbardecode.dll pdfium.dll x86 libbardecode.dll pdfium.dll linux arm64 libbardecode.so pdfium.so x64 libbardecode.so pdfium.so x86 libbardecode.so pdfium.so osx arm64 libbardecode.dylib pdfium.dylib x64 libbardecode.dylib pdfium.dylib

Quick start:

barcode = new SoftekBarcodeNetStandard.BarcodeReader(); barcode.LicenseKey = "Please email nuget@bardecode.com to get a free 30-day license key to try out the software";

// Turn on some barcode types, common 1D types such as Code 39, 128 and 25 are true by default barcode.ReadQRCode = true; //barcode.ReadDataMatrix = true; //barcode.ReadPDF417 = true;

// Three choices for doing a scan...

// 1. Scan from a file on disc in TIF, JPG or PDF format nBarCode = barcode.ScanBarCode("inputfile.tif"); // Can be TIF, JPG or PDF (subject to license)

// 2. Scan from a memory stream containing a TIF, JPG or PDF file MemoryStream ms; .... nBarCode = barcode.ScanBarCodeFromByteArray(ms.ToArray());

// 3. Scan from a bitmap byte[] bits; .... nBarCode = barcode.ScanBarCodeFromBitmap(width, height, rowStride, bitsPixel, bits)

// Get the results (GetBarString uses a 1 based index) for (int i = 1; i <= nBarCode; i++) value = barcode.GetBarString(i);

// You can also get the barcode type, position, page etc

Please email nuget@bardecode.com to get a free 30-day license key to try out the software or if you have a question.

Full documentation for the SDK can be downloaded from:

http://softeksoftware.co.uk/download/barcode_sdk/documentation.pdf

Softek Barcode Reader Toolkit for Windows Copyright Softek Software Ltd 2002-2024

Keywords

barcode

FAQs

Package last updated on 12 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts