Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. GIF image problem
Forum Updated to NodeBB v4.3 + New Features

GIF image problem

Scheduled Pinned Locked Moved Qt Creator and other tools
4 Posts 2 Posters 1.4k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    mvenkat061
    wrote on last edited by
    #1

    Hi,
    How to work with gif animated images.

    I am using below code
    QGraphicsScene scene;
    QLabel *gif_anim = new QLabel();
    QMovie *movie = new QMovie(image);
    gif_anim->setMovie(movie);
    movie->start();
    QGraphicsProxyWidget *proxy = scene.addWidget(gif_anim);

    but it is not working.

    Please help me..

    Thank you

    1 Reply Last reply
    0
    • IamSumitI Offline
      IamSumitI Offline
      IamSumit
      wrote on last edited by
      #2

      Hi try this.

      QMovie *movie = new QMovie(":Animations/icons/yourAnimatedIcon.gif");
      QLabel *yourLabel = new QLabel(this);
      yourLabel->setMovie(movie);
      movie->start();

      hope it helps

      Be Cute

      1 Reply Last reply
      0
      • M Offline
        M Offline
        mvenkat061
        wrote on last edited by
        #3

        Thank you for reply.

        But it is not working.
        I can see only static image.Its not animating.

        I am using fedora 20 and Qt creator 3.1.1 and Qt 5.2..

        Thank you

        1 Reply Last reply
        0
        • IamSumitI Offline
          IamSumitI Offline
          IamSumit
          wrote on last edited by
          #4

          Hi .

          i didn't check on fedora.

          But it is working on Windows properly .

          Be Cute

          1 Reply Last reply
          0

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved