+ 1
How can we insert our jpg files in c++ ??is it possible or not !!!
i want to insert pics in a program that stores bio-data of workers.😁
1 ответ
0
Yes, you can, but your best bet is to use a graphics library.
The C++ language and the Std library does not have support for graphics primitives because graphics is platform specific.
Some C++ vendors bundle their own libraries along with the std library, and these include graphics support. For example Microsoft C++ comes with MFC, Embarcadero C++ Builder comes with VCL, etc.
There are also 3rd party libraries available that support graphics like wxWidgets, Qt and others.