TypeError: __init__() takes exactly 2 arguments (1 given)
Which had me thinking that I was not using the proper environment to display the image. So originally my Image provider was set to pygame but that didn't work, I got this error:
[DEBUG ] [ImagePIL ] Load <test_anim.gif>
Fatal Python error: (pygame parachute) Segmentation Fault
So I then set it to gif by including these two lines at the top of my code
import os
os.environ['KIVY_IMAGE'] = 'gif'
Doing that gave me a segmentation fault when I ran the program:
[DEBUG ] [ImageGIF ] Load <test_anim.gif>
Segmentation fault
After getting that error with the gif, I switched to PIL and created a zip of my images which almost worked. I am now getting an error that says: no images in zip <test_anim.zip> however I have images named test1.png, test2.png and test3.png. Do you have any experience with the proper naming convention and/or image type that should go into the zip file?
Thanks