Documentation
¶
Overview ¶
implements http://en.wikipedia.org/wiki/RM4SCC
msg := "BX11LT1A"
f, _ := os.Create("rm4scc.png")
b := post.NewRM4SCC(msg)
img := b.GetImage()
png.Encode(f, img)
f.Close()
implements http://en.wikipedia.org/wiki/POSTNET and http://en.wikipedia.org/wiki/Postal_Alpha_Numeric_Encoding_Technique
msg := "555551237"
f, _ := os.Create("postnet.png")
b := post.NewPostnet(msg) // or post.NewPlanet
img := b.GetImage()
png.Encode(f, img)
f.Close()
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.