Thread Closed

Graphics

 
Share Thread Thread Tools
Sep9-05, 12:36 AM   #1
 
Recognitions:
Gold Membership Gold Member

Graphics


Is there a way to create graphics in C++. or in some other language, and I can use the grphic file in the C++ source code?
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Ants and carnivorous plants conspire for mutualistic feeding
>> Forecast for Titan: Wild weather could be ahead
>> Researchers stitch defects into the world's thinnest semiconductor
Sep9-05, 12:41 AM   #2
 
Recognitions:
Gold Membership Gold Member
also, how could I put a code with another language in the middle of a C++ document?
Sep9-05, 01:47 AM   #3
 
If you're using Windows, you could use the GDI through the Windows API or through the MFC classes, or you could use DirectX or OpenGL for 3D high-speed graphics. You could also use any number of available libraries, SDL for example. In Linux, you're gonna have to go through the X libraries (not recommended). Probably you should use some toolkit, like the Qt libraries. For 3d graphics, you can use OpenGL, or OpenGL + SDL (thats what I use).
Also, I don't get what you mean by embedded another language into a C++ document. If you mean whether you can embed code from another language into a C++ source file, then no, unless you translate it to C++, because the compiler only compiles C/C++ and not any other language. However, most compilers do support some form of embedded assembly language. The MSVC compiler uses the "__asm" keyword I believe. In gcc/g++ it would be asm("...")
Sep9-05, 02:30 AM   #4
 

Graphics


you can embed matlab too apparently.
Sep9-05, 05:47 AM   #5
 
Recognitions:
Retired Staff Staff Emeritus
cefarix, your going a little overboard.

If you simply want to create and edit images then use this:

http://www.boutell.com/gd/
Sep9-05, 03:32 PM   #6
 
Quote by dduardo
cefarix, your going a little overboard.

If you simply want to create and edit images then use this:

http://www.boutell.com/gd/
Ah, sorry. I missed the part where he said "or any other language." I thought he wanted to do it via C++ only ...
Sep9-05, 03:52 PM   #7
 
Recognitions:
Retired Staff Staff Emeritus
You mean she. Also GD is written in C so it works with C++.
Sep10-05, 10:08 AM   #8
 
Why not do some really enjoyable stuff with graphics and play some games?
Try allegro
http://www.talula.demon.co.uk/allegro/

Its enjoyable and easy to play around with (well atleast i found it easy to play around it, so i may be generalising a bit too much here). There are lots of demos to help you around.

-- AI
Thread Closed
Thread Tools


Similar Threads for: Graphics
Thread Forum Replies
Graphics cards. Computing & Technology 3
Graphics with Onboard Intel Extreme Graphics 2 on ASUS P5PE VM Computing & Technology 8
New graphics card Computing & Technology 22
PCI graphics card? Computing & Technology 3
game graphics Computing & Technology 12