Open stormcoral opened 3 months ago
No, I don't think that is possible in this package. Why don't you want to use a temporary file?
Do you think this would solve your issue?
import base64
import io
import jpegio
base64_string = '...'
image_bytes = base64.b64decode(base64_string)
image_buffer = io.BytesIO(image_bytes)
jpg = jpegio.read(image_buffer)
@detrin it will throw an error.
@detrin it will throw an error.
@stormcoral Can you provide details?
Is it possible to directly read in a base64 without saving a temporary file?