Home › Forums › Nazca › How to generate numbers or texts of wanted size? › Reply To: How to generate numbers or texts of wanted size?
Dear willie_woud,
This should do it:
import nazca as nd for i in range(5): nd.text('{}D'.format(i), height=10+5*i).put(40*i) nd.export_plt()
Ronald