tags:

views:

29

answers:

1

hi i like to load the qgif,qjpeg,qmng,qico,qsvg,qtiff as dynamic plug ins in Qt because i dont what to break the Qt LGPL license is in the docs its says only about statically linking . link text

A: 

I think you might be a bit confused, the link you provided shows what static plugins are available in Qt. All of those image formats are normally provided as dynamic plugins.

Do you mean you are trying to build a static Qt application but use the dynamic image formats? If so you are already on a fine line with the LGPL since if you are building statically you need to provide your object files.

Adam W
no , where are they as dynamic plugins? i do what to use them in dynamic compiled app not static , i understand they available only on the static version am i wrong ?
Yes you are wrong. See the section right above the one you linked to: http://doc.trolltech.com/4.6/plugins-howto.html#locating-plugins that's where the dynamic plugins are and what you need to do to deploy them.
Adam W
where are the plug ins (dll?) qgif,qjpeg,qmng,qico,qsvg,qtiff in Qt 4.6 installation ?
@user63898: In "`QTDIR/plugins/imageformats` (where QTDIR is the directory where Qt is installed)" just like the link I posted said. http://doc.trolltech.com/4.6/plugins-howto.html#locating-plugins
Adam W