Frameworks for decoding image files [closed] - c++

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need some framework/library/codec pack for decoding image files of various formats (like DirectShow or libvlc for audio/video). I would prefer portable open source C/C++ project. What would you advise?

You could have a look at SDL_image, for instance.

Maybe you can try with OpenCv
http://opencv.willowgarage.com/wiki/
http://opencv.willowgarage.com/documentation/cpp/highgui_reading_and_writing_images_and_video.html

Related

How to create a simple GStreamer Source Plugin? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I was reading the GStreamer plugin guide and it had a chapter on plugin source but it was one paragraph long. Does anyone have any tips/tutorials on how to create a basic source plugin?
I was thinking about reading a source plugin in gstreamer but they are too complex. Any simple ones I could look at that does the basics?

C++ :Writing Header Files Such that it improves the efficiency of program [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Way to Create our own Header File as it should be included in our code so that code can use predefined statements....
This is a good tutorial to write header files. Hopefully this helps. http://www.learncpp.com/cpp-tutorial/19-header-files/

Function to retrieve the product version during install [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to retrieve the product version during the install time of a .msi in the source file of the .dll which is linked with the .msi. Is there a way to do this with C++/Visual C++.
Thanks.
The question is a bit difficult , what i understand is you want to do some validation , have a look at http://www.codeproject.com/Articles/31021/Getting-version-from-MSI-without-installing-it
Well, you could have had a look at the WIX-HowTo first, they extract the dll-version for error-generation ("your... dll is outdated...")
http://wix.sourceforge.net/manual-wix3/check_the_version_number.htm

HOW to understand custom drawn ? Which tools can I use? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to know the tools that beautiful UI programs using?
You're going to have to ask a better question. What platform are you targeting? What framework are you using? "Beautiful" is in the eye of the beholder.

opening file stored on internet via c++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
need a small program to learn basics on how to open a file stored on net for reading via c++.
One relatively easy way is to use libcurl: http://curl.haxx.se/