Aztec Code generator in Python
PIL - Python Imaging Library (or Pillow)
data = 'Aztec Code 2D :)'
aztec_code = AztecCode(data)
aztec_code.save('aztec_code.png', module_size=4)
This code will generate an image file "aztec_code.png" with the Aztec Code that contains "Aztec Code 2D :)" text.
data = 'Aztec Code 2D :)'
aztec_code = AztecCode(data)
aztec_code.print_out()
This code will print out resulting 19x19 (compact) Aztec Code to the standard output.
## # ## ####
# ## ##### ###
# ## # # # ###
## # # ## ##
## # # # #
## ############ # #
### # ### #
## # ##### # ## #
# # # # ##
# # # # # # ###
## # # ## ##
#### # ##### ## #
# ## ## ##
## ########### #
## # ## ## #
## # ### # ##
############
## # # ## #
## # ## ### #
Released under The MIT License.