からbase64で画像をデコードし、私は文字列から画像を抽出したい:私のRTF文書でRTF
\pard\pard\qc{\*\shppict{\pict\pngblip\picw320\pich192\picwgoal0\pichgoal0
89504e470d0a1a0a0000000d4948445200000140000000c00802000000fa352d9100000e2949444[.....]6c4f0000000049454e44ae426082
}}
質問: 文字列は、このようなものです 1)これは本当にbase64でいるのですか?
2)以下のコードを使用してデコードする方法。 (.RTF画像を示しているとして保存)
import base64
imgData = b"base64code00from007aove007string00bcox007idont007know007where007it007starts007and007ends"
with open("imageToSave.png", "wb") as fh:
fh.write(base64.decodestring(imgData))
フルRTFテキストがでている:
http://hastebin.com/axabazaroc.tex
@ thesonyman101:これはBase64画像データではありません。 –
ああ、そうじゃない。すみませんが – thesonyman101