Tag: golang
-
The goBarcodeQrSDK module reads barcodes and QR codes from images, PDFs, and TIFFs in Go by wrapping the Dynamsoft Capture Vision SDK (Barcode Reader 11.6.10) C++ API behind a pure-C bridge compiled with CMake and called through cgo. Because cgo cannot call C++ directly, the project compiles src/bridge.cpp into bridge.dll...
-
You can build a barcode-reading web server in Go in about 150 lines: the client picks, drags, or pastes an image, uploads it as a base64 string over a JSON POST, and the Go server decodes every barcode with the goBarcodeQrSDK wrapper around the Dynamsoft Capture Vision SDK (Barcode Reader...
-
The goBarcodeQrSDK Go module reads barcodes and QR codes on macOS by using cgo to link a C bridge library against the Dynamsoft Capture Vision SDK (Barcode Reader 11.6.10) universal *.dylib files. The Dynamsoft macOS libraries now ship as universal binaries — one libDynamsoftBarcodeReader.dylib works on both Apple Silicon (arm64)...
-
In the previous article, we demonstrated the implementation of a web application for scanning and uploading documents using Dynamic Web TWAIN and Node.js. In this article, we will guide you through achieving the same functionality using Go. The process closely mirrors the Node.js implementation, allowing you to reuse client-side resources...