Rumah  >  Soal Jawab  >  teks badan

python - 请问png读取出来到编码是怎样的?

想了解一下图像实际储存的代码形式是怎样的?
试着暴力读取一下:

with open('/usr/src/pycharm-2017.1/bin/pycharm.png','r') as f:
    print(f.read())

结果出现了错误

Traceback (most recent call last):
  File "/home/noodle/PycharmProjects/untitled/test/picture_test.py", line 3, in <module>
    print(f.read())
  File "/usr/local/python34/lib/python3.4/codecs.py", line 319, in decode
    (result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x89 in position 0: invalid start byte
请输入代码

这是为啥呢?请问除了用别的库,有什么方法解决么?

天蓬老师天蓬老师2741 hari yang lalu482

membalas semua(2)saya akan balas

  • ringa_lee

    ringa_lee2017-04-18 10:35:25

    Jangan buka fail bukan teks dalam format fail teks!

    Fail PNG hendaklah dibaca menggunakan fail format binari:

    with open('#filename#.png','rb') as f:
        print(f.read())

    balas
    0
  • 天蓬老师

    天蓬老师2017-04-18 10:35:25

    Cuba buka dalam mod 'rb'

    with open('/usr/src/pycharm-2017.1/bin/pycharm.png','rb') as f:
        print(f.read())

    balas
    0
  • Batalbalas