Skip to content

ZXing Barcode Scanning Library for Delphi XE7/XE8 and Appmethod

License

Notifications You must be signed in to change notification settings

riaanjutte/ZXing.Delphi

 
 

Repository files navigation

ZXing.Delphi

ZXing Barcode Scanning Library for Delphi XE7/XE8 and Appmethod.

ZXing.Delphi Logo

ZXing.Delphi is a native Object Pascal library that is based on the well known open source Barcode Library: ZXing (Zebra Crossing). This port is based on .Net Redth port of ZXing and the Java one. This is I think the first native FireMonkey barcode lib. It is aimed at all of the Firmonkey mobile platforms.

With this library you can scan with native speed without the use of linking in external libraries and avoid compability issues and dependencies. It is fast.

Its compatible with in Delphi XE7, XE8 and AppMethod and tested with IOS 8.x 32/64bit, Windows 32/64 and OSX. Not yet tested it with Android but that should work too.
The goal of ZXing.Delphi is to make scanning barcodes as effortless, painless, fast and build within your FireMonkey or native Windows applications. Just include the source files or create a .bpl and add it in your existings projects and build the ZXing.Delphi source with your projects.

###Changes

  • v1.1 Date: 2015/7/11
    • Implemented Code93 + unit test
  • v1.0
    • Init upload
    • Base classes 1D barcode implemented.
    • Code 128 format is implemented.

#HELP NEEDED Although it works extremely well, it works currently only with one type barcode (Code 128). I only needed one barcode so for me there is no immediate need yet for me to implement more types but I like to add all of them! For that I need your help!

Its a good start for an awesome community effort!

The 1D barcode base classes I already implemented so if you need to have another 1D Barcode like Code39 you can see the C# source here: https://github.com/Redth/ZXing.Net.Mobile/blob/master/src/ZXing.Net/oned/Code39Reader.cs and convert it to Pascal. It's pretty easy.

Only with your help we can get all the barcodes here! A unit test project is included and all barcodes must be unit tested!

If you want to help: Let us/me know which barcode you planning to implement. There is no point in converting barcodes multiple times :-)

###What is different compared to the original source and what do I need to know if I implement a barcode?

  • I made use of generic array lists. This is easier and strongly typed.
  • I stayed at the architecture as implemented in the .Net source. Debugging
  • There is a lot of bit shifting going around. Right bit shifting is the same as in C# but Left bit shifing is not! I made a helper for this: TMathUtils.Asr
  • You can convert c# files to pascal with CS2Pas2 (somewhere on the Internet) it can give you a good start! Or just convert it yourself.

Usage

The simplest example of using ZXing.Delphi looks something like this:

Include all the file in your project.

  • Add uses: ScanManager, BarcodeFormat, ReadResult.
  • Add var FScanManager, ReadResult.
FScanManager := TScanManager.Create(TBarcodeFormat.CODE_128, nil);
ReadResult := FScanManager.Scan(scanBitmap);

Of course the real world is not that simple. To leave your app responsive while scanning you need to run things in parallel. I created a test app to show you how just to do that. Its included. It makes use of the new Firemonkey parallel lib. In the testApp the resolution of the camera is set to medium (FMX.Media.TVideoCaptureQuality.MediumQuality) on my iPhone 6. This is only possible since XE8 and equivalent Appmethod. Its also good to mention that how higher the resolution the more time it takes to scan a bitmap. Some scaling could probably work too.

###Features

  • Native compiled barcode scanning for all FireMonkey platforms (IOS/Android/Windows/OSX).
  • FREE. No ridiculous licence fees. Just FREE.
  • Speed
  • Barcodes: Code 128, Code93
  • Simple API
  • Unit tests provided

###Barcode Formats

  • Code 128

###Thanks ZXing.Delphi is a project that I've put together with the work of others. So naturally, I'd like to thank everyone who's helped out in any way. Those of you I know have helped I'm listing here, but anyone else that was involved, please let me know!

###License Apache ZXing.Net.Mobile Copyright 2012 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/).

ZXing.Net

ZXing.Net is released under the Apache 2.0 license. ZXing.Net can be found here: http://code.google.com/p/zxing/ A copy of the Apache 2.0 license can be found here: http://www.apache.org/licenses/LICENSE-2.0

ZXing

ZXing is released under the Apache 2.0 license. ZXing can be found here: http://code.google.com/p/zxing/ A copy of the Apache 2.0 license can be found here: http://www.apache.org/licenses/LICENSE-2.0

About

ZXing Barcode Scanning Library for Delphi XE7/XE8 and Appmethod

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Pascal 100.0%