
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
SoftekBarcodeNetStandard
Advanced tools
A library for reading barcodes from PDF, TIF and JPG files. Please email nuget@softeksoftware for a license key before using.
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
FAQs
A library for reading barcodes from PDF, TIF and JPG files. Please email nuget@softeksoftware for a license key before using.
We found that softekbarcodenetstandard demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.