How to extract specific GIF frame using blob input? #580
-
I know this can easily be achieved by modifying the filename slightly ( with Image(
blob=b'data' # how do i select a frame?
) as img:
... |
Beta Was this translation helpful? Give feedback.
Answered by
emcconville
Jul 12, 2022
Replies: 1 comment
-
Moving this to discussion as not a bug, but a Q&A. Try the following... with Image(blob=b'data', format='GIF[0]') as img:
pass |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mezbaul-h
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Moving this to discussion as not a bug, but a Q&A.
Try the following...