VisionSmarts / pic2shop-pro-barcode-database

PHP database demo that integrates with the "pic2shop pro" barcode scanner app for iOS and Android
8 stars 5 forks source link

Databar Expended format #3

Closed dylanglockler closed 1 year ago

dylanglockler commented 1 year ago

Love this app, but I'm trying to work with a databar expanded format and when the app scans, it returns the wrong code, I assume it's recognizing the wrong format. I'm using the demo code:

p2spro://scan?formats=EAN13,EAN8,UPCE,ITF,CODE39,CODE128,CODABAR&QR&callback=javascript:insertCodeFormat('CODE','FORMAT')

Is there any way to get it to work with databar expanded format?

VisionSmarts commented 1 year ago

Here is the full list of symbologies. Only include the ones you need for performance and to avoid misreads (some symbologies don't have much error detection).

EAN13 EAN8 UPCE EAN_PLUS2 EAN_PLUS5 DATABAR_OMNIDIRECTIONAL DATABAR_EXPANDED DATABAR_LIMITED ITF CODE39 CODE128 CODABAR CODE93 STD2OF5 TELEPEN QR DATAMATRIX

dylanglockler commented 1 year ago

Thanks for that info. I added all three DATABAR symbologies but the scan generates an incorrect value. Perhaps I'm using the wrong symbology but it seemed to match from my research. Here's the test barcode: Test_Barcode

https://tracking.clswashing.com/images/Test_Barcode.jpg

VisionSmarts commented 1 year ago

It scans as a code128 and the ]c1 at the beginning is the semi standard way the scanner reports the symbology variant.

On Sat, May 27, 2023 at 11:27 PM Dylan @.***> wrote:

Thanks for that info. I added all three DATABAR symbologies but the scan generates an incorrect value. Perhaps I'm using the wrong symbology but it seemed to match from my research. Here's the test barcode: [image: Test_Barcode] https://user-images.githubusercontent.com/3084083/241434459-321721f4-efa2-4ba0-badd-9f4b3072b168.jpg

https://tracking.clswashing.com/images/Test_Barcode.jpg http://url

— Reply to this email directly, view it on GitHub https://github.com/VisionSmarts/pic2shop-pro-barcode-database/issues/3#issuecomment-1565691263, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAPQMJ7YSJCGXSYZ36NGNM3XIJWSLANCNFSM6AAAAAAYQ656RA . You are receiving this because you modified the open/close state.Message ID: @.*** .com>

dylanglockler commented 1 year ago

Perfect, thanks, I'll filter out those three characters and test to see that it works consistently. Appreciate your help!