的base64圖像在我的RTF文檔,我想從字符串中提取圖像: 字符串是這樣的:解碼從RTF
\pard\pard\qc{\*\shppict{\pict\pngblip\picw320\pich192\picwgoal0\pichgoal0
89504e470d0a1a0a0000000d4948445200000140000000c00802000000fa352d9100000e2949444[.....]6c4f0000000049454e44ae426082
}}
問題: 1)這是真的的base64?
2)如何使用下面的代碼進行解碼。
import base64
imgData = b"base64code00from007aove007string00bcox007idont007know007where007it007starts007and007ends"
with open("imageToSave.png", "wb") as fh:
fh.write(base64.decodestring(imgData))
全RTF文本(其時保存的.rtf顯示圖像),是在
http://hastebin.com/axabazaroc.tex
@ thesonyman101:這不是Base64圖像數據。 –
哦,那是不是。請問 – thesonyman101