How can we insert our jpg files in c++ ??is it possible or not !!! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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.😁

20th Dec 2016, 6:42 AM
Deepak
Deepak - avatar
1 Answer
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.
20th Dec 2016, 7:21 AM
Ettienne Gilbert
Ettienne Gilbert - avatar