Generating and Scanning QR Codes on Android with ZXing

ZXing (Zebra Crossing) is an open-source Java library designed for processing 1D and 2D barcode images. It supports a wide range of formats, including UPC-A, UPC-E, EAN-8, EAN-13, Code 39, Code 93, and QR Code. This library facilitates barcode scanning and decoding using a device's camera, making it a staple choice for Android barcode applicati ...

Posted on Fri, 17 Jul 2026 17:25:07 +0000 by updwebmaster

Rendering ZXing Barcodes as Vector Graphics in PDFsharp

PDFsharp provides native support for embedding vector-based QR codes in PDF documents. However, its built-in barcode format support remains limited, lacking compatibility with commonly used standards like Code 93 and various 2D matrix codes. ZXing offers extensive barcode generation capabilities but does not provide direct methods for outputtin ...

Posted on Tue, 12 May 2026 23:30:52 +0000 by ttomnmo

Generating QR Codes in Java Applications

To create QR codes in Java applications, you can utilize the ZXing library, which provides comprehensive support for barcode generation and scanning. Below are two implementations: one for standalone applications and another suitable for web environments. Standalone Application Implementation First, include the ZXing library in your project. Fo ...

Posted on Sun, 10 May 2026 02:50:33 +0000 by ignite