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!

93 Comments

  1. Pingback: stromectool.com

  2. Pingback: flagyltb.com

  3. Pingback: levitraoffer.net

  4. Pingback: priligy 30mg

  5. Pingback: tiktok

  6. Pingback: hyocimax s tablet uses

  7. Pingback: can i buy amoxicillin

  8. Pingback: nitrostat pill

  9. Pingback: ciprodex dosage

  10. Pingback: groups

  11. Pingback: cheapest viagra 50mg

  12. Pingback: amoxil for urinary tract infection

  13. Pingback: cialis online prices

  14. Pingback: purple viagra 100

  15. Pingback: prednisolone dose for asthma

  16. Pingback: blood pressure bystolic

  17. Pingback: amoxil capsule price

  18. Pingback: professorkorotkov.ru

  19. Pingback: viahelpmen.wordpress.com

  20. Pingback: psycholog-korotkov.ru

  21. Pingback: vermact plus

  22. Pingback: clomid for sale

  23. Pingback: psikhologvyalte.ru

  24. Pingback: clincitop gel buy online

  25. Pingback: besivance eye drop prices

  26. Pingback: buy assurans

  27. Pingback: here

  28. Pingback: caverta 25

  29. Pingback: super tadalista

  30. Pingback: kamagra uk

  31. Pingback: vidalista.pics

  32. Pingback: otclevitra.com

  33. Pingback: clomiphene Citrate

  34. Pingback: ekzistenczialnyj

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

  36. Pingback: prednisone 20mg

  37. Pingback: clomid for sale

  38. Pingback: 75mg viagra

  39. Pingback: myprin92.ru

  40. Pingback: 0410.ru

  41. Pingback: atvip.ru

  42. Pingback: vigrakrs.com

  43. Pingback: why take latanoprost at night

  44. Pingback: sketchfab.com/female-cialis

  45. Pingback: 5yucMCMAAAAJ

  46. Pingback: instagram.com/korotkovlakanfreud

  47. Pingback: ofevinfo.wordpress.com

  48. Pingback: site

  49. Pingback: price of viagra per pill

  50. Pingback: samscainfo.wordpress.com

  51. Pingback: vidalforman.wordpress.com

  52. Pingback: Sochi-psiholog-Russia

  53. Pingback: who makes viagra pills

  54. Pingback: vardenafil 20mg

  55. Pingback: 100 mg viagra side effects

  56. Pingback: t.me/s/psy_chat_online

  57. Pingback: clomiphene 50mg ovulation

  58. Pingback: afinitor cost

  59. Pingback: Forum

  60. Pingback: fildena.homes

  61. Pingback: 439W6fo

  62. Pingback: psy

  63. Pingback: r2f.ru

  64. Pingback: xblx.ru

  65. Pingback: dilts.g-u.su

  66. Pingback: anatoliy-alekseyevich-derkach.ru

  67. Pingback: where to buy cheap toradol for sale

  68. Pingback: artane and coolock credit union

  69. Pingback: zanaflex for sciatica pain

  70. Pingback: cyproheptadine hydrochloride syrup ip side effects

  71. Pingback: street value of tizanidine 2mg

  72. Pingback: periactin sciroppo dosaggio

  73. Pingback: can you get generic ketorolac pills

  74. Pingback: baclofen compared to vicodin

  75. Pingback: azathioprine irregular heartbeat

  76. Pingback: maxalt wine

  77. Pingback: classe terapeutica piroxicam

  78. Pingback: how effective is meloxicam for pain

  79. Pingback: prospecto de lioresal

  80. Pingback: imdur pill

  81. Pingback: what are side effects of mobic

  82. Pingback: imuran proctitis

  83. Pingback: rizatriptan benzoate drug bank

  84. Pingback: can you take sumatriptan and paracetamol together

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

  86. Pingback: diclofenac vs celebrex

  87. Pingback: cilostazol en insuficiencia cardiaca

  88. Pingback: can mebeverine be taken after food

  89. Pingback: indomethacin 75 sr

  90. Pingback: migraine injection imitrex

  91. Pingback: amitriptyline dose for sleep

  92. Pingback: mestinon tabs

  93. Pingback: elavil mgs

Leave a Comment