|
-
June 28th, 1999, 06:16 PM
#1
how to display jpeg files in windows program?
Hi,
I'm trying to open jpeg files in my program (visual c++ with MFC), how do I go about doing that? Any suggestions and tips greatly appreciated.
thanks!
-
June 28th, 1999, 07:22 PM
#2
Re: how to display jpeg files in windows program?
You would have to use a library or write your own code to read JPEG files. There's a link to a image library on CodeGuru.
As for opening them, use the CFileDialog class:
CFileDialog dlg(TRUE); // True means open
dlg.DoModal();
AfxMessageBox("You selected " + (CString)dlg.m_pszFileName);
-shellreef
-
June 28th, 1999, 08:13 PM
#3
Re: how to display jpeg files in windows program?
See library on www.jpeg.org It works!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|