Adding support for reading 3 of 9 Extended barcodes (containing lowercase characters) with GdPicture9

Microsoft .NET

3 of 9 barcodes are just about everywhere, and are one of the easiest barcodes to work with being widely supported by many SDK's. 3 of 9 originally supported only a subset of the ASCII character set, and later was extended to support the full range of characters. Often you will find 3 of 9 barcodes in the form of a font style that you can use in word processors, web applications, and other types of software. They can be copy and pasted. They are easy to draw, and most importantly, they are very easy to understand. You can read more on Wikipedia about it, but lets talk more about how GdPicture SDK deals with it.

code39-sample

GdPicture does support drawing 3 of 9 barcodes with the extended character set using the Barcode1DWriterType.Barcode1DWriterCode39Extended enumeration with Barcode1DWrite, but I found that it lacked the ability to read them using Barcode1DReaderDoScan. If you look deeper into the enumerations available for these methods, oddly enough both Barcode1DWriterType.Barcode1DWriterCode39 and Barcode1DWriterType.Barcode1DWriterCode39Extended exist for drawing the barcode, but only Barcode1DReaderType.Barcode1DWriterCode39 exists for reading when using Barcode1DReaderDoScan.

gI_78908_LOGO-GD9

Now, let me clarify before we look at a solution. GdPicture does technically read the barcode with extended characters, but it doesn't actually return the extended ASCII characters. Instead, it returns each uppercase character prefixed with the + character, which is a token indicating the character casing, such as the sign in a signed integer. In the examples below we will look at the most common scenario which is support for lower case characters, which are only part of the extended character set.

string threeOfNine    = "ABC123"; // normal character set
string threeOfNineExt = "abc123"; // extended character set

These are the raw values you would normally expect to see when reading 3 of 9 barcodes using a proper SDK. In GdPicture however, let us take a look at the difference when reading the extended barcodes.

string threeOfNine    = "ABC123";    // normal character set
string threeOfNineExt = "+A+B+C123"; // extended character set

This pattern is very consistent, so we can write a simple function to parse and return the correct character casing.

/// <devdoc>
/// This method is for GdPicture9's lack of support for *reading* the 3 of 9 Extended character set,
/// which allows for lowercase characters. GdPicture will still return a barcode value, but each lower
/// case character is preceded by + character to indicate the casing difference.
/// 
/// ie. TEst (raw value of *TEst*) would be returned as TE+S+T (raw value of *TE+S+T*)
/// </devdoc>
private static string Get3Of9ExtendedBarcodeValue(string s)
{
    var newValue = string.Empty;

    for (int i = 0; i < s.Length; i++)
        if (s[i] == '+')
            newValue += s[++i].ToString(CultureInfo.InvariantCulture).ToLower();
        else
            newValue += s[i];

    return newValue.Replace("+", string.Empty);
}

The method is pretty straight forward, iterating over each character and identifying the token. When the token is found we do a forward lookup in the array, which will be the actual character value, and we know to return the lowercase value. We also increment the loop counter at the same time since we are processing that character. Otherwise if no token is found, we simply return the character as is.

Simple!

Now, I have only written this function to account for the casing differences between the character sets because that was the scenario I needed to solve for the project I was working on. I could have used other barcode libraries, but we already had licensing for GdPicture and it is significantly faster than most of the libraries out there, and I tested quite a few. I might revisit this blog at a later time and write a new one discussing the other extended characters, but for now we will leave it there.

Happy coding!

149 Comments

  1. Pingback: Coaching

  2. Pingback: link

  3. Pingback: psychologist

  4. Pingback: best real money online casino

  5. Pingback: online

  6. Pingback: psy.w-495.ru

  7. Pingback: buy cialis 5mg online

  8. Pingback: 50mg viagra price

  9. Pingback: eli lilly cialis

  10. Pingback: cialis tablet

  11. Pingback: sildenafil citrate 50mg tablets

  12. Pingback: real viagra 100mg

  13. Pingback: sildenafil 25 mg online

  14. Pingback: wikinlp

  15. Pingback: wikinlp.ru

  16. Pingback: cialis 5 mg

  17. Pingback: cialis tadalafil

  18. Pingback: generique viagra

  19. Pingback: The Creator Causal Design

  20. Pingback: Lider

  21. Pingback: dizain-cheloveka-manifestor.ru

  22. Pingback: hdmy.ru

  23. Pingback: HumanDesign2028.ru

  24. Pingback: cenforce 200

  25. Pingback: buy cenforce 200 mg online

  26. Pingback: vardenafil

  27. Pingback: canadian pharmacy in tampa fl

  28. Pingback: where can i buy Azithromycin

  29. Pingback: cost of clomid without prescription

  30. Pingback: kamagra usa ban

  31. Pingback: +38 0950663759 – Владимир (Сергей) Романенко, Одесса – Оплатил предоплату — получил нерабочее устройство. Если СУКА не вернет деньги, обращаюсь в банк и поддержку OLX.

  32. Pingback: lasix 100mg over the counter

  33. Pingback: Ventolin inhaler how often to use

  34. Pingback: buy viagra online

  35. Pingback: ivecop tablet

  36. Pingback: buy priligy paypal

  37. Pingback: androgel 1.0

  38. Pingback: my canadian pharmacy reviews

  39. Pingback: youtube-videos

  40. Pingback: viagra pfizer 50 mg

  41. Pingback: no presciption cialis

  42. Pingback: 60 mg cialis

  43. Pingback: cialis in canada

  44. Pingback: buy viagra 50 mg

  45. Pingback: viagra 75 mg

  46. Pingback: experienceleaguecommunities.adobe.com/t5/user/viewprofilepage/user-id/17881217

  47. Pingback: in.pinterest.com/vidalista80review/

  48. Pingback: dizain cheloveka

  49. Pingback: sulfatealbuterol.com

  50. Pingback: ivermectinus.com

  51. Pingback: human design

  52. Pingback: axbb.ru

  53. Pingback: cenforcemg.com

  54. Pingback: flagylzub.com

  55. Pingback: kmgra.com

  56. Pingback: lasixotc.com

  57. Pingback: stromectool.com

  58. Pingback: flagyltb.com

  59. Pingback: levitraoffer.net

  60. Pingback: priligy 30mg

  61. Pingback: tiktok

  62. Pingback: hyocimax s tablet uses

  63. Pingback: can i buy amoxicillin

  64. Pingback: nitrostat pill

  65. Pingback: ciprodex dosage

  66. Pingback: groups

  67. Pingback: cheapest viagra 50mg

  68. Pingback: amoxil for urinary tract infection

  69. Pingback: cialis online prices

  70. Pingback: purple viagra 100

  71. Pingback: prednisolone dose for asthma

  72. Pingback: blood pressure bystolic

  73. Pingback: amoxil capsule price

  74. Pingback: professorkorotkov.ru

  75. Pingback: viahelpmen.wordpress.com

  76. Pingback: psycholog-korotkov.ru

  77. Pingback: vermact plus

  78. Pingback: clomid for sale

  79. Pingback: psikhologvyalte.ru

  80. Pingback: clincitop gel buy online

  81. Pingback: besivance eye drop prices

  82. Pingback: buy assurans

  83. Pingback: here

  84. Pingback: caverta 25

  85. Pingback: super tadalista

  86. Pingback: kamagra uk

  87. Pingback: vidalista.pics

  88. Pingback: otclevitra.com

  89. Pingback: clomiphene Citrate

  90. Pingback: ekzistenczialnyj

  91. Pingback: Ïñèõîëîã, ïñèõîòåðàïåâò, ïñèõèàòð, ïñèõîàíàëèòèê

  92. Pingback: prednisone 20mg

  93. Pingback: clomid for sale

  94. Pingback: 75mg viagra

  95. Pingback: myprin92.ru

  96. Pingback: 0410.ru

  97. Pingback: atvip.ru

  98. Pingback: vigrakrs.com

  99. Pingback: why take latanoprost at night

  100. Pingback: sketchfab.com/female-cialis

  101. Pingback: 5yucMCMAAAAJ

  102. Pingback: instagram.com/korotkovlakanfreud

  103. Pingback: ofevinfo.wordpress.com

  104. Pingback: site

  105. Pingback: price of viagra per pill

  106. Pingback: samscainfo.wordpress.com

  107. Pingback: vidalforman.wordpress.com

  108. Pingback: Sochi-psiholog-Russia

  109. Pingback: who makes viagra pills

  110. Pingback: vardenafil 20mg

  111. Pingback: 100 mg viagra side effects

  112. Pingback: t.me/s/psy_chat_online

  113. Pingback: clomiphene 50mg ovulation

  114. Pingback: afinitor cost

  115. Pingback: Forum

  116. Pingback: fildena.homes

  117. Pingback: 439W6fo

  118. Pingback: psy

  119. Pingback: r2f.ru

  120. Pingback: xblx.ru

  121. Pingback: dilts.g-u.su

  122. Pingback: anatoliy-alekseyevich-derkach.ru

  123. Pingback: where to buy cheap toradol for sale

  124. Pingback: artane and coolock credit union

  125. Pingback: zanaflex for sciatica pain

  126. Pingback: cyproheptadine hydrochloride syrup ip side effects

  127. Pingback: street value of tizanidine 2mg

  128. Pingback: periactin sciroppo dosaggio

  129. Pingback: can you get generic ketorolac pills

  130. Pingback: baclofen compared to vicodin

  131. Pingback: azathioprine irregular heartbeat

  132. Pingback: maxalt wine

  133. Pingback: classe terapeutica piroxicam

  134. Pingback: how effective is meloxicam for pain

  135. Pingback: prospecto de lioresal

  136. Pingback: imdur pill

  137. Pingback: what are side effects of mobic

  138. Pingback: imuran proctitis

  139. Pingback: rizatriptan benzoate drug bank

  140. Pingback: can you take sumatriptan and paracetamol together

  141. Pingback: where can i buy generic pyridostigmine without dr prescription

  142. Pingback: diclofenac vs celebrex

  143. Pingback: cilostazol en insuficiencia cardiaca

  144. Pingback: can mebeverine be taken after food

  145. Pingback: indomethacin 75 sr

  146. Pingback: migraine injection imitrex

  147. Pingback: amitriptyline dose for sleep

  148. Pingback: mestinon tabs

  149. Pingback: elavil mgs

Leave a Comment