显示图像

2024/4/26 22:23:46

Django通过HttpResponse如何返回用户头像

代码示例: def test(request):# 获取当前文件的路径、父路径以及下一层的路径curr_dir os.path.dirname(__file__)parent_path os.path.dirname(curr_dir)image_path os.path.join(parent_path,"static/image/timg.jpg")"""D:\Python …

显示图像

import matplotlib.pyplot as plt from matplotlib.image import imreadimg imread(lena.png) # 读入图像 plt.imshow(img) plt.show()