перекинуть в изображение?
Декодируешь до байтов, затем рендеришь
Ну вот с этим проблемки у меня
https://base64.guru/converter/decode/image
Как импортировать base64 не знаешь?
https://docs.python.org/3/library/base64.html
Крч я затебя загуглил import base64 #change "YOURFILE" with the name of your original file with open("YOURFILE", "rb") as f: encoded = f.read() encoded = encoded.replace("data:image/svg+xml;base64,", "") decoded = base64.b64decode(encoded) #change "NEWFILE" with the name that you want to give your new svg with open("NEWFILE.svg", "wb") as f: f.write(decoded)
Мне надо было как svg сохранять, вот в чем дело было, спасибо)
Обсуждают сегодня