How to Use WebAssembly with Node.js
The reason WebAssembly appealing to me, besides the performance, is that I can run WebAssembly either on client-side or server-side. In this post, I will share how to build WebAssembly file and run it...
View ArticleJavaScript Barcode SDK: Native vs. WebAssembly
A JavaScript barcode SDK can be built in C/C++ for high performance. We can compile C/C++ code to a Node.js addon or WebAssembly. Which one is superior? Let’s try Dynamsoft Barcode Reader SDK to find...
View ArticleHow to Use Multiprocessing to Optimize Python Barcode Reader
Previously, I demonstrated how to use OpenCV and Dynamsoft Barcode SDK to build a Python barcode reader. There’s one problem that when barcode decoding takes a long time, the webcam video didn’t play...
View ArticleUsing Web Worker to Load WebAssembly Barcode SDK
Web Worker is a way to run JavaScript in background threads. The worker thread can perform some heavy works without interfering with the user interface. This article shares how to load WebAssembly and...
View ArticleHow to Package JNI Shared Library into Jar File
The article is not about how to create Java native methods invoking C/C++ APIs. It aims to help developers to build a jar package containing JNI shared library, made with Dynamsoft Barcode Reader, for...
View ArticleRust Programming with Dynamsoft Barcode Reader
A few days ago, I accepted a new challenge of creating a simple command line barcode reader using Rust and Dynamsoft Barcode Reader SDK. Rust is a system programming language similar to C++. The...
View ArticleJava Programming: JNA vs. JNI on Windows
Some developers used JNA to call native C/C++ interfaces of Dynamsoft Barcode Reader in Java program. The app ran slowly and sometimes crashed. Based on the use case, I created a simple project for...
View ArticleHow to Integrate Dynamsoft Barcode Reader into React Native Camera
If you are using React Native, you can quickly create a camera app with React Native Camera. In addition, React Native Camera component supports barcode scanning, face detection, and text recognition....
View ArticleHow to Use Node RED with Barcode Module on Windows 10
Node-RED is a flow-based programming tool built-on Node.js. It provides a browser-based editor that helps users to create awesome applications by wiring different nodes. This article shares my...
View ArticleBuilding UWP Barcode Reader with C++/WinRT and JavaScript
This article shows how to use Dynamsoft C++ barcode reader SDK to create a Window runtime component, as well as how to use the WinRT component and JavaScript to build a UWP app on Windows 10....
View ArticleBuilding Cordova Plugin with Windows Runtime Component
In my last article, I shared how to build WinRT component with Dynamsoft Barcode Reader C++ SDK. This article shows how to use the generated Dynamsoft.dll and Dynamsoft.winmd files in a Cordova plugin...
View ArticleHow to Use Dynamsoft JavaScript Barcode SDK in Angular
Dynamsoft JavaScript barcode SDK is built based on WebAssembly. In this article, I will illustrate how to build a simple web barcode reader app by using Dynamsoft JavaScript barcode SDK and Angular....
View ArticleHow to Use JavaScript Barcode SDK in AngularDart Project
AngularDart, similar to Angular built with TypeScript, is a web app framework written in Dartlang. It finally compiles to JavaScript. In this article, I will share how to use Dynamsoft JavaScript...
View ArticleHow to Build Web Barcode Apps with React and WebAssembly
Dynamsoft JavaScript barcode SDK is built based on WebAssembly, which provides high performance for reading barcodes in web apps. This tutorial aims to demonstrate how to quickly create a simple web...
View ArticleHow to Build Python Barcode Apps with Qt on Windows
Qt for Python enables developers to quickly create GUI apps on Windows, Linux and macOS with one codebase. In this article, I will share how to build a Python barcode reader with Qt on Windows. Since...
View ArticleHow to Use Python and PyQt to Read Barcodes from Webcam
In my previous article, I shared how to use PyQt and Dynamsoft Barcode Reader to create a simple Windows-styled GUI app to read barcodes from image files. Now I am going to add a little bit more code...
View ArticleHow to Use Mono to Run ASP.NET C# Code in Ubuntu Linux
Mono is an open source implementation of Microsoft’s .NET Framework. It aims to help C# developers create cross-platform .NET applications. Although .NET Core is born for multiple platforms (Windows,...
View ArticleHow to Build Web Barcode Scanner Using React and Webcam
Someone asked me how to create a real-time web barcode scanning app with a webcam. Is it hard to implement it? I’ve written an article sharing how to integrate Dynamsoft JavaScript Barcode Reader SDK...
View ArticleMoving Heavy Computation from Raspberry Pi to Windows PC
If you want to use Raspberry Pi as an economical way of detecting barcodes, you can take account for Dynamsoft Barcode Reader SDK. As a business software, Dynamsoft Barcode Reader SDK is designed for...
View ArticleRust Programming with Dynamsoft Barcode Reader
A few days ago, I accepted a new challenge of creating a simple command line barcode reader using Rust and Dynamsoft Barcode Reader SDK. Rust is a system programming language similar to C++. The...
View Article