How to support GIF, JPEG, and other formats in QTE

Source: Internet
Author: User
1. When configuring QTE in/configure, you must add the following parameters:-QT-GIF-QT-libjpeg.
2. After the installation is complete, the installation directory contains dynamic library files such as libqgif. So and libqjpeg. So.
3. create the plug-in directory plugins/imageformats (for example,/usr/lib/plugins/imageformats) in a directory on the target board, and then set libqgif. so, libqjpeg. so and other files.
4. In the QT application, add the code qapplication: addlibrarypath ("/usr/lib/plugins") at the beginning of the main function ");
5. Done!

[Appendix]: A simple application reference
Create a qt4 empty project, add the main. cpp file, enter the following code in the main. cpp file, and compile and run the project to display the GIF animation.

# Include <qtcore>
# Include <qtgui>

Int main (INT argc, char * argv [])
{
Qapplication: addlibrarypath ("/usr/lib/plugins ");
Qapplication app (argc, argv );

Qlabel label;
Qmovie movie;
Movie. setfilename ("abc.gif ");
Label. setmovie (& movie );
Movie. Start ();
Label. Show ();

Return app.exe C ();
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.