We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to directly read in a base64 without saving a temporary file?
The text was updated successfully, but these errors were encountered:
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)
Sorry, something went wrong.
@detrin it will throw an error.
@stormcoral Can you provide details?
No branches or pull requests
Is it possible to directly read in a base64 without saving a temporary file?
The text was updated successfully, but these errors were encountered: