在使用Python绘制图形时,可以通过以下步骤获得白色边框:
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
rect = plt.Rectangle((0.2, 0.2), 0.6, 0.6, edgecolor='white', facecolor='none')
ax.add_patch(rect)
在上述代码中,edgecolor='white'
表示边框颜色为白色,facecolor='none'
表示填充颜色为空。
ax.spines['top'].set_color('white')
ax.spines['bottom'].set_color('white')
ax.spines['left'].set_color('white')
ax.spines['right'].set_color('white')
在上述代码中,ax.spines
表示图形的边框,通过设置set_color('white')
将边框颜色设置为白色。
plt.show()
完整的代码示例:
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
rect = plt.Rectangle((0.2, 0.2), 0.6, 0.6, edgecolor='white', facecolor='none')
ax.add_patch(rect)
ax.spines['top'].set_color('white')
ax.spines['bottom'].set_color('white')
ax.spines['left'].set_color('white')
ax.spines['right'].set_color('white')
plt.show()
这样就可以在使用Python绘制的图形中获得白色边框了。
推荐的腾讯云相关产品:腾讯云服务器(CVM)和腾讯云对象存储(COS)。
领取专属 10元无门槛券
手把手带您无忧上云