Maison  >  Questions et réponses  >  le corps du texte

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 Il y a quelques jours481

répondre à tous(2)je répondrai

  • ringa_lee

    ringa_lee2017-04-18 10:35:25

    N'ouvrez pas de fichiers non texte au format texte !

    Les fichiers PNG doivent être lus en utilisant des fichiers au format binaire :

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

    répondre
    0
  • 天蓬老师

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

    Essayez de l'ouvrir en mode 'rb'

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

    répondre
    0
  • Annulerrépondre