如何在 Matplotlib 中生成条形码?
要在 Matplotlib 中生成条形码,我们可以执行下列步骤:
- 设置图片大小并调整子图之间的和周围的边距。
- 列出二进制数,即 0 和 1。
- 使用dpi=100创建新图像或激活现有图像。
- 向图像添加一个坐标轴。
- 关闭坐标轴。
- 使用imshow()方法绘制步骤 2 中的数据。
- 要显示图片,请使用show()方法。
示例
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True code = np.array([ 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1]) fig = plt.figure(dpi=100) ax = fig.add_axes([0, 0, 1, 1]) ax.set_axis_off() ax.imshow(code.reshape(1, -1), cmap='binary', aspect='auto', interpolation='nearest') plt.show()
输出
广告