pr79arc
June 12th, 2002, 08:11 AM
please give me the code to load bmp image in dos using c++
|
Click to See Complete Forum and Search --> : how to load bmp image in dos pr79arc June 12th, 2002, 08:11 AM please give me the code to load bmp image in dos using c++ JMS June 12th, 2002, 12:56 PM DOS is a character based command line os. Icons are bitmaps and won't ever ever be able to be displayed while the screen is in character mode. Ideas 1) Get yourself a copy of windows 3.1 or earlier which was written on top of DOS and you can use their graphic api's to load the bit map 2) You could switch the command interface in dos to graphics mode, ( note, you'll loose the ability to type in commands!!) and then load a modified bitmap translated from the icon to the screen I'm thinking neither solution is what you really want. What I think you want is probable to have icons appear on the same screen as your command prompt. Which isn't going to happen due to the properties of the character based display. codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |