Loading...
Logo
Processing Forum
Hi guys, first post here. I'm trying to upload a gif into my project. I downloaded the library, imported it, and imported the gif. however, when i run this code, it says "NullPointerException" at line 9. I'm relatively new to programming so any help would be appreciated

Copy code
  1. import gifAnimation.*;
  2. Gif SonicRunGIF;


  3. void setup()
  4. {
  5.   size(500,500);
  6.   SonicRunGIF = new Gif(this, "SonicRunGIF.gif");
  7. }

  8. void draw()
  9. {
  10.   image(SonicRunGIF,0,0);
  11. }

Replies(3)

Is there really a file with named "SonicRunGIF.gif" in you data-folder? If not, that would throw exactly that error.
And just an advice, usually variable names should begin with lowercase-characters, and Class-names with capitals.
That helps to understand your code and to avoid mistakes.
i forgot to import the file, but now the gif doesnt animate
Did you call play() or loop() on the gif?
Have look into the "gifDisplay"-example, that came with the library.