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
which program i am able to build the Bytearray for the Image ?
Thx. Det
The text was updated successfully, but these errors were encountered:
Hi, what worked fine for me was sth like:
from PIL import Image im = Image.open('file.png', 'r') with open('binary.out','wb') as out: out.write(im.convert('1').tobytes()) out.close()
In case the resolution matches your Micropython code could then just use that to display the image:
with open("binary.out", "rb") as file: buf = bytearray(file.read()) file.close() e.display_frame(buf)
Sorry, something went wrong.
No branches or pull requests
which program i am able to build the Bytearray for the Image ?
Thx. Det
The text was updated successfully, but these errors were encountered: