Zebra Crossing or (ZXing) seems to be a nifty barcode image processing library in Java worth exploring. Have you ever used this library? Share your experiences with me.
seen from China
seen from Sweden

seen from Australia
seen from Singapore
seen from Germany
seen from Greece
seen from Poland
seen from Germany
seen from China
seen from Netherlands
seen from United States
seen from Germany
seen from United States

seen from United States

seen from Singapore
seen from Germany
seen from China
seen from United Kingdom
seen from Singapore
seen from Germany
Zebra Crossing or (ZXing) seems to be a nifty barcode image processing library in Java worth exploring. Have you ever used this library? Share your experiences with me.
Print QR code menggunakan iReport di Openbravo
Print QR code menggunakan iReport di Openbravo
Membuat label dengan QRCode memudahkan kita saat scanning (dari pada 1d barcode), dan tidak perlu hardware mahal, cukup menggunakan camera smartphone saja. Artikel ini membahas bagaimana kita bisa membuat report di Openbravo dari iReport yang bisa mencetak QR Code. (more…)
View On WordPress
Barcode scanning in android
Barcode scanning in android
Hi devs, lets discuss about one of the pain points during android app development that is barcode scanning.
Before proceeding to the implementation let go through some basics.
What is Barcode ?
Barcode is a graphical , optical, machine-readable representation of data; that data describes something about the object/product which carries that barcode.
Barcode has different formats to represent –
1 …
View On WordPress
Using ColdFusion w/ZXing QR Code Generation & GraphicsMagick “Fuzz Trim”
The ZXing Project Java libary makes it easy to generate QR barcodes, but tends to pad a lot of extra whitespace around the image. I initially cropped it using ColdFusion's ImageCrop function, but decided it would be better to use GraphicsMagick to perform a "Fuzz Trim" on the entire white border and then restore a little padding. I figured I'd post the code here in case anyone was interested in using either ZXing or curious how to perform a "fuzz trim".
Resolved: Using ZXing to create an android barcode scanning app #programming #development #computers
Resolved: Using ZXing to create an android barcode scanning app #programming #development #computers
Using ZXing to create an android barcode scanning app
I’ve been searching on how to add a barcode scanner to my app. Does anybody know of any examples or know how to do this easily? Any help is greatly appreciated.
Answer [by Christopher Orr]: Using ZXing to create an android barcode scanning app
The ZXing project provides a standalone barcode reader application which — via Android’s intent…
View On WordPress
How to: Integration ZXing library directly into my Android application
How to: Integration ZXing library directly into my Android application
Integration ZXing library directly into my Android application
I’m writing this in mere desperation :) I’ve been assigned to make a standalone barcode scanner (as a proof of concept) to an Android 1.6 phone.
For this i’ve discovered the ZXing library.
I’ve googled, read related topics here on StackOverflow used common sence and so forth. Nothing seemed to have helped, and i just can’t punch a…
View On WordPress
Compile zxing project at my Mac OS X
I met an error during the building process of zxing project. It was solved by upgrade my java sdk into 1.7 version.
1. Download Java SDK 1.7
2. Install It.
3. Configure JAVA_HOME
export JAVA_HOME=$(/usr/libexec/java_home)
add above line into ~/.bash_profile
4. Add following two scripts into your PC, if you wanna switch between Java 1.7 and Java 1.6.
java1.6.sh:
#!/bin/bash
export JAVA_HOME="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home" export PATH=${JAVA_HOME}/bin:${PATH}
java1.7.sh:
#!/bin/bash
export JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk1.7.0_51.jdk/Contents/Home" export PATH=${JAVA_HOME}/bin:${PATH}
If you need Java 1.6 environment, just source java1.6.sh in your terminal.
source java1.6.sh