python本地路径转bytes
Posted xiejunna
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python本地路径转bytes相关的知识,希望对你有一定的参考价值。
python本地路径转bytes
# -*- coding:utf-8 -*-
def get_file_content(file_path):
""" 读取图片 """
with open(file_path, 'rb') as fp:
return fp.read()
if __name__ == '__main__':
image_path = 'C:\\\\Users\\\\ymt30\\\\Desktop\\\\cy.jpeg'
image = get_file_content(image_path)
print(type(image))
print(image)
输出:
以上是关于python本地路径转bytes的主要内容,如果未能解决你的问题,请参考以下文章
android本地mipmap图片转url、绝对路径转URL