prograComp
October 23rd, 2006, 02:21 AM
Hello all,
I m doing some project on image processing. Can anybody tell me that how to bring the bitmap image on the output screen of turbo C. Is there any function for doing such stuff.
please reply
SuperKoko
October 23rd, 2006, 03:51 AM
Hello all,
I m doing some project on image processing. Can anybody tell me that how to bring the bitmap image on the output screen of turbo C. Is there any function for doing such stuff.
please reply
Turbo C is a very old 16 bits DOS compiler.
If possible, you should use a newer 32 bits compiler (Borland C++ 5.5 for instance).
Then, you'll be able to use the Win32 API.
If you really have to use Turbo C++, in that case, you can use BGI getimage/putimage and load the bitmap file with a special routine whose code may be available on the net. Color palettes conversions would have to be handled manually.