Displaying a JPG in MFC
C / C++ / MFC
4
Posts
4
Posters
0
Views
1
Watching
-
I would like to know how to display a JPG or high res BMP image on a MFC Dialog window.
-
I would like to know how to display a JPG or high res BMP image on a MFC Dialog window.
-
I would like to know how to display a JPG or high res BMP image on a MFC Dialog window.
Or use
OleLoadPicture()
Gurmeet
BTW, can Google help me search my lost pajamas?
My Articles: HTML Reader C++ Class Library, Numeric Edit Control
-
I would like to know how to display a JPG or high res BMP image on a MFC Dialog window.
You can use OleLoadPicturePath load the picture from a file, you'll get an IPicture then use the method Render to display it into a DC. Or, check Dr. Yovav Gad's article CPicture - The Yovav (Horror) PictureShow Fabian