Image.seek()
Searches for the given frame in this sequence file. If you are looking outside the sequence, the method throws an EOFError exception. When a sequence file is open, the library automatically searches for frame 0.
Note that in the current version of the library, most sequence formats only allow searching for the next frame.
Syntax: Image.seek (frame)
Parameters:
frame - Frame number, starting at 0.
Raises: EOFError - If the call attempts to seek beyond the end of the sequence.
Image used:
# import class images from the PIL package from PIL import Image # create a gif image object img = Image. open (r "C: UsersSystem-PcDesktop ime.gif " ) img1 = img.tell () print (img1) # using the seek () method img2 = img.seek (img.tell () + 1 ) img3 = img.tell () print (img3) img.show () |
table>
Exit :
0 1
Shop
Learn programming in R: courses
$
Best Python online courses for 2022
$
Best laptop for Fortnite
$
Best laptop for Excel
$
Best laptop for Solidworks
$
Best laptop for Roblox
$
Best computer for crypto mining
$
Best laptop for Sims 4
$
Latest questions
NUMPYNUMPY
psycopg2: insert multiple rows with one query
12 answers
NUMPYNUMPY
How to convert Nonetype to int or string?
12 answers
NUMPYNUMPY
How to specify multiple return types using type-hints
12 answers
NUMPYNUMPY
Javascript Error: IPython is not defined in JupyterLab
12 answers
Wiki
Python OpenCV | cv2.putText () method
numpy.arctan2 () in Python
Python | os.path.realpath () method
Python OpenCV | cv2.circle () method
Python OpenCV cv2.cvtColor () method
Python - Move item to the end of the list
time.perf_counter () function in Python
Check if one list is a subset of another in Python
Python os.path.join () method